git.delta.rocks / unique-network / refs/commits / 5ec8b824c3ad

difftreelog

chore add temporary nft/rft weights

Daniel Shiposha2023-09-25parent: #d63678e.patch.diff
in: master

2 files changed

modifiedpallets/nonfungible/src/weights.rsdiffbeforeafterboth
before · pallets/nonfungible/src/weights.rs
1// Template adopted from https://github.com/paritytech/substrate/blob/master/.maintain/frame-weight-template.hbs23//! Autogenerated weights for pallet_nonfungible4//!5//! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev6//! DATE: 2023-04-20, STEPS: `50`, REPEAT: `80`, LOW RANGE: `[]`, HIGH RANGE: `[]`7//! WORST CASE MAP SIZE: `1000000`8//! HOSTNAME: `bench-host`, CPU: `Intel(R) Core(TM) i7-8700 CPU @ 3.20GHz`9//! EXECUTION: None, WASM-EXECUTION: Compiled, CHAIN: None, DB CACHE: 10241011// Executed Command:12// target/release/unique-collator13// benchmark14// pallet15// --pallet16// pallet-nonfungible17// --wasm-execution18// compiled19// --extrinsic20// *21// --template=.maintain/frame-weight-template.hbs22// --steps=5023// --repeat=8024// --heap-pages=409625// --output=./pallets/nonfungible/src/weights.rs2627#![cfg_attr(rustfmt, rustfmt_skip)]28#![allow(unused_parens)]29#![allow(unused_imports)]3031use frame_support::{traits::Get, weights::{Weight, constants::RocksDbWeight}};32use sp_std::marker::PhantomData;3334/// Weight functions needed for pallet_nonfungible.35pub trait WeightInfo {36	fn create_item() -> Weight;37	fn create_multiple_items(b: u32, ) -> Weight;38	fn create_multiple_items_ex(b: u32, ) -> Weight;39	fn burn_item() -> Weight;40	fn burn_recursively_self_raw() -> Weight;41	fn burn_recursively_breadth_plus_self_plus_self_per_each_raw(b: u32, ) -> Weight;42	fn transfer_raw() -> Weight;43	fn approve() -> Weight;44	fn approve_from() -> Weight;45	fn check_allowed_raw() -> Weight;46	fn burn_from() -> Weight;47	fn set_token_property_permissions(b: u32, ) -> Weight;48	fn set_token_properties(b: u32, ) -> Weight;49	fn delete_token_properties(b: u32, ) -> Weight;50	fn token_owner() -> Weight;51	fn set_allowance_for_all() -> Weight;52	fn allowance_for_all() -> Weight;53	fn repair_item() -> Weight;54}5556/// Weights for pallet_nonfungible using the Substrate node and recommended hardware.57pub struct SubstrateWeight<T>(PhantomData<T>);58impl<T: frame_system::Config> WeightInfo for SubstrateWeight<T> {59	/// Storage: Nonfungible TokensMinted (r:1 w:1)60	/// Proof: Nonfungible TokensMinted (max_values: None, max_size: Some(16), added: 2491, mode: MaxEncodedLen)61	/// Storage: Nonfungible AccountBalance (r:1 w:1)62	/// Proof: Nonfungible AccountBalance (max_values: None, max_size: Some(65), added: 2540, mode: MaxEncodedLen)63	/// Storage: Nonfungible TokenProperties (r:1 w:1)64	/// Proof: Nonfungible TokenProperties (max_values: None, max_size: Some(32804), added: 35279, mode: MaxEncodedLen)65	/// Storage: Common CollectionPropertyPermissions (r:1 w:0)66	/// Proof: Common CollectionPropertyPermissions (max_values: None, max_size: Some(16726), added: 19201, mode: MaxEncodedLen)67	/// Storage: Nonfungible TokenData (r:0 w:1)68	/// Proof: Nonfungible TokenData (max_values: None, max_size: Some(57), added: 2532, mode: MaxEncodedLen)69	/// Storage: Nonfungible Owned (r:0 w:1)70	/// Proof: Nonfungible Owned (max_values: None, max_size: Some(74), added: 2549, mode: MaxEncodedLen)71	fn create_item() -> Weight {72		// Proof Size summary in bytes:73		//  Measured:  `390`74		//  Estimated: `63471`75		// Minimum execution time: 25_892_000 picoseconds.76		Weight::from_parts(26_424_000, 63471)77			.saturating_add(T::DbWeight::get().reads(4_u64))78			.saturating_add(T::DbWeight::get().writes(5_u64))79	}80	/// Storage: Nonfungible TokensMinted (r:1 w:1)81	/// Proof: Nonfungible TokensMinted (max_values: None, max_size: Some(16), added: 2491, mode: MaxEncodedLen)82	/// Storage: Nonfungible AccountBalance (r:1 w:1)83	/// Proof: Nonfungible AccountBalance (max_values: None, max_size: Some(65), added: 2540, mode: MaxEncodedLen)84	/// Storage: Nonfungible TokenProperties (r:200 w:200)85	/// Proof: Nonfungible TokenProperties (max_values: None, max_size: Some(32804), added: 35279, mode: MaxEncodedLen)86	/// Storage: Common CollectionPropertyPermissions (r:1 w:0)87	/// Proof: Common CollectionPropertyPermissions (max_values: None, max_size: Some(16726), added: 19201, mode: MaxEncodedLen)88	/// Storage: Nonfungible TokenData (r:0 w:200)89	/// Proof: Nonfungible TokenData (max_values: None, max_size: Some(57), added: 2532, mode: MaxEncodedLen)90	/// Storage: Nonfungible Owned (r:0 w:200)91	/// Proof: Nonfungible Owned (max_values: None, max_size: Some(74), added: 2549, mode: MaxEncodedLen)92	/// The range of component `b` is `[0, 200]`.93	fn create_multiple_items(b: u32, ) -> Weight {94		// Proof Size summary in bytes:95		//  Measured:  `390`96		//  Estimated: `28192 + b * (35279 ±0)`97		// Minimum execution time: 4_612_000 picoseconds.98		Weight::from_parts(6_399_460, 28192)99			// Standard Error: 5_119100			.saturating_add(Weight::from_parts(7_230_389, 0).saturating_mul(b.into()))101			.saturating_add(T::DbWeight::get().reads(3_u64))102			.saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(b.into())))103			.saturating_add(T::DbWeight::get().writes(2_u64))104			.saturating_add(T::DbWeight::get().writes((3_u64).saturating_mul(b.into())))105			.saturating_add(Weight::from_parts(0, 35279).saturating_mul(b.into()))106	}107	/// Storage: Nonfungible TokensMinted (r:1 w:1)108	/// Proof: Nonfungible TokensMinted (max_values: None, max_size: Some(16), added: 2491, mode: MaxEncodedLen)109	/// Storage: Nonfungible AccountBalance (r:200 w:200)110	/// Proof: Nonfungible AccountBalance (max_values: None, max_size: Some(65), added: 2540, mode: MaxEncodedLen)111	/// Storage: Nonfungible TokenProperties (r:200 w:200)112	/// Proof: Nonfungible TokenProperties (max_values: None, max_size: Some(32804), added: 35279, mode: MaxEncodedLen)113	/// Storage: Common CollectionPropertyPermissions (r:1 w:0)114	/// Proof: Common CollectionPropertyPermissions (max_values: None, max_size: Some(16726), added: 19201, mode: MaxEncodedLen)115	/// Storage: Nonfungible TokenData (r:0 w:200)116	/// Proof: Nonfungible TokenData (max_values: None, max_size: Some(57), added: 2532, mode: MaxEncodedLen)117	/// Storage: Nonfungible Owned (r:0 w:200)118	/// Proof: Nonfungible Owned (max_values: None, max_size: Some(74), added: 2549, mode: MaxEncodedLen)119	/// The range of component `b` is `[0, 200]`.120	fn create_multiple_items_ex(b: u32, ) -> Weight {121		// Proof Size summary in bytes:122		//  Measured:  `390`123		//  Estimated: `25652 + b * (37819 ±0)`124		// Minimum execution time: 4_538_000 picoseconds.125		Weight::from_parts(4_686_000, 25652)126			// Standard Error: 3_518127			.saturating_add(Weight::from_parts(8_905_771, 0).saturating_mul(b.into()))128			.saturating_add(T::DbWeight::get().reads(2_u64))129			.saturating_add(T::DbWeight::get().reads((2_u64).saturating_mul(b.into())))130			.saturating_add(T::DbWeight::get().writes(1_u64))131			.saturating_add(T::DbWeight::get().writes((4_u64).saturating_mul(b.into())))132			.saturating_add(Weight::from_parts(0, 37819).saturating_mul(b.into()))133	}134	/// Storage: Nonfungible TokenData (r:1 w:1)135	/// Proof: Nonfungible TokenData (max_values: None, max_size: Some(57), added: 2532, mode: MaxEncodedLen)136	/// Storage: Nonfungible TokenChildren (r:1 w:0)137	/// Proof: Nonfungible TokenChildren (max_values: None, max_size: Some(41), added: 2516, mode: MaxEncodedLen)138	/// Storage: Nonfungible TokensBurnt (r:1 w:1)139	/// Proof: Nonfungible TokensBurnt (max_values: None, max_size: Some(16), added: 2491, mode: MaxEncodedLen)140	/// Storage: Nonfungible AccountBalance (r:1 w:1)141	/// Proof: Nonfungible AccountBalance (max_values: None, max_size: Some(65), added: 2540, mode: MaxEncodedLen)142	/// Storage: Nonfungible Allowance (r:1 w:0)143	/// Proof: Nonfungible Allowance (max_values: None, max_size: Some(57), added: 2532, mode: MaxEncodedLen)144	/// Storage: Nonfungible Owned (r:0 w:1)145	/// Proof: Nonfungible Owned (max_values: None, max_size: Some(74), added: 2549, mode: MaxEncodedLen)146	/// Storage: Nonfungible TokenProperties (r:0 w:1)147	/// Proof: Nonfungible TokenProperties (max_values: None, max_size: Some(32804), added: 35279, mode: MaxEncodedLen)148	fn burn_item() -> Weight {149		// Proof Size summary in bytes:150		//  Measured:  `380`151		//  Estimated: `17561`152		// Minimum execution time: 24_230_000 picoseconds.153		Weight::from_parts(24_672_000, 17561)154			.saturating_add(T::DbWeight::get().reads(5_u64))155			.saturating_add(T::DbWeight::get().writes(5_u64))156	}157	/// Storage: Nonfungible TokenChildren (r:1 w:0)158	/// Proof: Nonfungible TokenChildren (max_values: None, max_size: Some(41), added: 2516, mode: MaxEncodedLen)159	/// Storage: Nonfungible TokenData (r:1 w:1)160	/// Proof: Nonfungible TokenData (max_values: None, max_size: Some(57), added: 2532, mode: MaxEncodedLen)161	/// Storage: Nonfungible TokensBurnt (r:1 w:1)162	/// Proof: Nonfungible TokensBurnt (max_values: None, max_size: Some(16), added: 2491, mode: MaxEncodedLen)163	/// Storage: Nonfungible AccountBalance (r:1 w:1)164	/// Proof: Nonfungible AccountBalance (max_values: None, max_size: Some(65), added: 2540, mode: MaxEncodedLen)165	/// Storage: Nonfungible Allowance (r:1 w:0)166	/// Proof: Nonfungible Allowance (max_values: None, max_size: Some(57), added: 2532, mode: MaxEncodedLen)167	/// Storage: Nonfungible Owned (r:0 w:1)168	/// Proof: Nonfungible Owned (max_values: None, max_size: Some(74), added: 2549, mode: MaxEncodedLen)169	/// Storage: Nonfungible TokenProperties (r:0 w:1)170	/// Proof: Nonfungible TokenProperties (max_values: None, max_size: Some(32804), added: 35279, mode: MaxEncodedLen)171	fn burn_recursively_self_raw() -> Weight {172		// Proof Size summary in bytes:173		//  Measured:  `380`174		//  Estimated: `17561`175		// Minimum execution time: 30_521_000 picoseconds.176		Weight::from_parts(31_241_000, 17561)177			.saturating_add(T::DbWeight::get().reads(5_u64))178			.saturating_add(T::DbWeight::get().writes(5_u64))179	}180	/// Storage: Nonfungible TokenChildren (r:401 w:200)181	/// Proof: Nonfungible TokenChildren (max_values: None, max_size: Some(41), added: 2516, mode: MaxEncodedLen)182	/// Storage: Common CollectionById (r:1 w:0)183	/// Proof: Common CollectionById (max_values: None, max_size: Some(860), added: 3335, mode: MaxEncodedLen)184	/// Storage: Nonfungible TokenData (r:201 w:201)185	/// Proof: Nonfungible TokenData (max_values: None, max_size: Some(57), added: 2532, mode: MaxEncodedLen)186	/// Storage: Nonfungible TokensBurnt (r:1 w:1)187	/// Proof: Nonfungible TokensBurnt (max_values: None, max_size: Some(16), added: 2491, mode: MaxEncodedLen)188	/// Storage: Nonfungible AccountBalance (r:2 w:2)189	/// Proof: Nonfungible AccountBalance (max_values: None, max_size: Some(65), added: 2540, mode: MaxEncodedLen)190	/// Storage: Nonfungible Allowance (r:201 w:0)191	/// Proof: Nonfungible Allowance (max_values: None, max_size: Some(57), added: 2532, mode: MaxEncodedLen)192	/// Storage: Nonfungible Owned (r:0 w:201)193	/// Proof: Nonfungible Owned (max_values: None, max_size: Some(74), added: 2549, mode: MaxEncodedLen)194	/// Storage: Nonfungible TokenProperties (r:0 w:201)195	/// Proof: Nonfungible TokenProperties (max_values: None, max_size: Some(32804), added: 35279, mode: MaxEncodedLen)196	/// The range of component `b` is `[0, 200]`.197	fn burn_recursively_breadth_plus_self_plus_self_per_each_raw(b: u32, ) -> Weight {198		// Proof Size summary in bytes:199		//  Measured:  `1467 + b * (58 ±0)`200		//  Estimated: `24230 + b * (10097 ±0)`201		// Minimum execution time: 31_734_000 picoseconds.202		Weight::from_parts(32_162_000, 24230)203			// Standard Error: 210_514204			.saturating_add(Weight::from_parts(71_382_804, 0).saturating_mul(b.into()))205			.saturating_add(T::DbWeight::get().reads(7_u64))206			.saturating_add(T::DbWeight::get().reads((4_u64).saturating_mul(b.into())))207			.saturating_add(T::DbWeight::get().writes(6_u64))208			.saturating_add(T::DbWeight::get().writes((4_u64).saturating_mul(b.into())))209			.saturating_add(Weight::from_parts(0, 10097).saturating_mul(b.into()))210	}211	/// Storage: Nonfungible TokenData (r:1 w:1)212	/// Proof: Nonfungible TokenData (max_values: None, max_size: Some(57), added: 2532, mode: MaxEncodedLen)213	/// Storage: Nonfungible AccountBalance (r:2 w:2)214	/// Proof: Nonfungible AccountBalance (max_values: None, max_size: Some(65), added: 2540, mode: MaxEncodedLen)215	/// Storage: Nonfungible Allowance (r:1 w:0)216	/// Proof: Nonfungible Allowance (max_values: None, max_size: Some(57), added: 2532, mode: MaxEncodedLen)217	/// Storage: Nonfungible Owned (r:0 w:2)218	/// Proof: Nonfungible Owned (max_values: None, max_size: Some(74), added: 2549, mode: MaxEncodedLen)219	fn transfer_raw() -> Weight {220		// Proof Size summary in bytes:221		//  Measured:  `380`222		//  Estimated: `13114`223		// Minimum execution time: 18_305_000 picoseconds.224		Weight::from_parts(18_859_000, 13114)225			.saturating_add(T::DbWeight::get().reads(4_u64))226			.saturating_add(T::DbWeight::get().writes(5_u64))227	}228	/// Storage: Nonfungible TokenData (r:1 w:0)229	/// Proof: Nonfungible TokenData (max_values: None, max_size: Some(57), added: 2532, mode: MaxEncodedLen)230	/// Storage: Nonfungible Allowance (r:1 w:1)231	/// Proof: Nonfungible Allowance (max_values: None, max_size: Some(57), added: 2532, mode: MaxEncodedLen)232	fn approve() -> Weight {233		// Proof Size summary in bytes:234		//  Measured:  `326`235		//  Estimated: `7044`236		// Minimum execution time: 10_977_000 picoseconds.237		Weight::from_parts(11_184_000, 7044)238			.saturating_add(T::DbWeight::get().reads(2_u64))239			.saturating_add(T::DbWeight::get().writes(1_u64))240	}241	/// Storage: Nonfungible TokenData (r:1 w:0)242	/// Proof: Nonfungible TokenData (max_values: None, max_size: Some(57), added: 2532, mode: MaxEncodedLen)243	/// Storage: Nonfungible Allowance (r:1 w:1)244	/// Proof: Nonfungible Allowance (max_values: None, max_size: Some(57), added: 2532, mode: MaxEncodedLen)245	fn approve_from() -> Weight {246		// Proof Size summary in bytes:247		//  Measured:  `313`248		//  Estimated: `7044`249		// Minimum execution time: 11_456_000 picoseconds.250		Weight::from_parts(11_731_000, 7044)251			.saturating_add(T::DbWeight::get().reads(2_u64))252			.saturating_add(T::DbWeight::get().writes(1_u64))253	}254	/// Storage: Nonfungible Allowance (r:1 w:0)255	/// Proof: Nonfungible Allowance (max_values: None, max_size: Some(57), added: 2532, mode: MaxEncodedLen)256	fn check_allowed_raw() -> Weight {257		// Proof Size summary in bytes:258		//  Measured:  `362`259		//  Estimated: `3522`260		// Minimum execution time: 5_771_000 picoseconds.261		Weight::from_parts(5_972_000, 3522)262			.saturating_add(T::DbWeight::get().reads(1_u64))263	}264	/// Storage: Nonfungible Allowance (r:1 w:1)265	/// Proof: Nonfungible Allowance (max_values: None, max_size: Some(57), added: 2532, mode: MaxEncodedLen)266	/// Storage: Nonfungible TokenData (r:1 w:1)267	/// Proof: Nonfungible TokenData (max_values: None, max_size: Some(57), added: 2532, mode: MaxEncodedLen)268	/// Storage: Nonfungible TokenChildren (r:1 w:0)269	/// Proof: Nonfungible TokenChildren (max_values: None, max_size: Some(41), added: 2516, mode: MaxEncodedLen)270	/// Storage: Nonfungible TokensBurnt (r:1 w:1)271	/// Proof: Nonfungible TokensBurnt (max_values: None, max_size: Some(16), added: 2491, mode: MaxEncodedLen)272	/// Storage: Nonfungible AccountBalance (r:1 w:1)273	/// Proof: Nonfungible AccountBalance (max_values: None, max_size: Some(65), added: 2540, mode: MaxEncodedLen)274	/// Storage: Nonfungible Owned (r:0 w:1)275	/// Proof: Nonfungible Owned (max_values: None, max_size: Some(74), added: 2549, mode: MaxEncodedLen)276	/// Storage: Nonfungible TokenProperties (r:0 w:1)277	/// Proof: Nonfungible TokenProperties (max_values: None, max_size: Some(32804), added: 35279, mode: MaxEncodedLen)278	fn burn_from() -> Weight {279		// Proof Size summary in bytes:280		//  Measured:  `463`281		//  Estimated: `17561`282		// Minimum execution time: 30_633_000 picoseconds.283		Weight::from_parts(31_136_000, 17561)284			.saturating_add(T::DbWeight::get().reads(5_u64))285			.saturating_add(T::DbWeight::get().writes(6_u64))286	}287	/// Storage: Common CollectionPropertyPermissions (r:1 w:1)288	/// Proof: Common CollectionPropertyPermissions (max_values: None, max_size: Some(16726), added: 19201, mode: MaxEncodedLen)289	/// The range of component `b` is `[0, 64]`.290	fn set_token_property_permissions(b: u32, ) -> Weight {291		// Proof Size summary in bytes:292		//  Measured:  `281`293		//  Estimated: `20191`294		// Minimum execution time: 2_300_000 picoseconds.295		Weight::from_parts(2_382_000, 20191)296			// Standard Error: 45_076297			.saturating_add(Weight::from_parts(12_000_777, 0).saturating_mul(b.into()))298			.saturating_add(T::DbWeight::get().reads(1_u64))299			.saturating_add(T::DbWeight::get().writes(1_u64))300	}301	/// Storage: Nonfungible TokenProperties (r:1 w:1)302	/// Proof: Nonfungible TokenProperties (max_values: None, max_size: Some(32804), added: 35279, mode: MaxEncodedLen)303	/// Storage: Common CollectionPropertyPermissions (r:1 w:0)304	/// Proof: Common CollectionPropertyPermissions (max_values: None, max_size: Some(16726), added: 19201, mode: MaxEncodedLen)305	/// The range of component `b` is `[0, 64]`.306	fn set_token_properties(b: u32, ) -> Weight {307		// Proof Size summary in bytes:308		//  Measured:  `584 + b * (261 ±0)`309		//  Estimated: `56460`310		// Minimum execution time: 12_422_000 picoseconds.311		Weight::from_parts(5_523_689, 56460)312			// Standard Error: 74_137313			.saturating_add(Weight::from_parts(6_320_501, 0).saturating_mul(b.into()))314			.saturating_add(T::DbWeight::get().reads(2_u64))315			.saturating_add(T::DbWeight::get().writes(1_u64))316	}317	/// Storage: Nonfungible TokenProperties (r:1 w:1)318	/// Proof: Nonfungible TokenProperties (max_values: None, max_size: Some(32804), added: 35279, mode: MaxEncodedLen)319	/// Storage: Common CollectionPropertyPermissions (r:1 w:0)320	/// Proof: Common CollectionPropertyPermissions (max_values: None, max_size: Some(16726), added: 19201, mode: MaxEncodedLen)321	/// The range of component `b` is `[0, 64]`.322	fn delete_token_properties(b: u32, ) -> Weight {323		// Proof Size summary in bytes:324		//  Measured:  `589 + b * (33291 ±0)`325		//  Estimated: `56460`326		// Minimum execution time: 12_006_000 picoseconds.327		Weight::from_parts(12_216_000, 56460)328			// Standard Error: 83_431329			.saturating_add(Weight::from_parts(24_556_999, 0).saturating_mul(b.into()))330			.saturating_add(T::DbWeight::get().reads(2_u64))331			.saturating_add(T::DbWeight::get().writes(1_u64))332	}333	/// Storage: Nonfungible TokenData (r:1 w:0)334	/// Proof: Nonfungible TokenData (max_values: None, max_size: Some(57), added: 2532, mode: MaxEncodedLen)335	fn token_owner() -> Weight {336		// Proof Size summary in bytes:337		//  Measured:  `326`338		//  Estimated: `3522`339		// Minimum execution time: 4_827_000 picoseconds.340		Weight::from_parts(4_984_000, 3522)341			.saturating_add(T::DbWeight::get().reads(1_u64))342	}343	/// Storage: Nonfungible CollectionAllowance (r:0 w:1)344	/// Proof: Nonfungible CollectionAllowance (max_values: None, max_size: Some(111), added: 2586, mode: MaxEncodedLen)345	fn set_allowance_for_all() -> Weight {346		// Proof Size summary in bytes:347		//  Measured:  `0`348		//  Estimated: `0`349		// Minimum execution time: 6_151_000 picoseconds.350		Weight::from_parts(6_394_000, 0)351			.saturating_add(T::DbWeight::get().writes(1_u64))352	}353	/// Storage: Nonfungible CollectionAllowance (r:1 w:0)354	/// Proof: Nonfungible CollectionAllowance (max_values: None, max_size: Some(111), added: 2586, mode: MaxEncodedLen)355	fn allowance_for_all() -> Weight {356		// Proof Size summary in bytes:357		//  Measured:  `109`358		//  Estimated: `3576`359		// Minimum execution time: 3_791_000 picoseconds.360		Weight::from_parts(3_950_000, 3576)361			.saturating_add(T::DbWeight::get().reads(1_u64))362	}363	/// Storage: Nonfungible TokenProperties (r:1 w:1)364	/// Proof: Nonfungible TokenProperties (max_values: None, max_size: Some(32804), added: 35279, mode: MaxEncodedLen)365	fn repair_item() -> Weight {366		// Proof Size summary in bytes:367		//  Measured:  `300`368		//  Estimated: `36269`369		// Minimum execution time: 5_364_000 picoseconds.370		Weight::from_parts(5_539_000, 36269)371			.saturating_add(T::DbWeight::get().reads(1_u64))372			.saturating_add(T::DbWeight::get().writes(1_u64))373	}374}375376// For backwards compatibility and tests377impl WeightInfo for () {378	/// Storage: Nonfungible TokensMinted (r:1 w:1)379	/// Proof: Nonfungible TokensMinted (max_values: None, max_size: Some(16), added: 2491, mode: MaxEncodedLen)380	/// Storage: Nonfungible AccountBalance (r:1 w:1)381	/// Proof: Nonfungible AccountBalance (max_values: None, max_size: Some(65), added: 2540, mode: MaxEncodedLen)382	/// Storage: Nonfungible TokenProperties (r:1 w:1)383	/// Proof: Nonfungible TokenProperties (max_values: None, max_size: Some(32804), added: 35279, mode: MaxEncodedLen)384	/// Storage: Common CollectionPropertyPermissions (r:1 w:0)385	/// Proof: Common CollectionPropertyPermissions (max_values: None, max_size: Some(16726), added: 19201, mode: MaxEncodedLen)386	/// Storage: Nonfungible TokenData (r:0 w:1)387	/// Proof: Nonfungible TokenData (max_values: None, max_size: Some(57), added: 2532, mode: MaxEncodedLen)388	/// Storage: Nonfungible Owned (r:0 w:1)389	/// Proof: Nonfungible Owned (max_values: None, max_size: Some(74), added: 2549, mode: MaxEncodedLen)390	fn create_item() -> Weight {391		// Proof Size summary in bytes:392		//  Measured:  `390`393		//  Estimated: `63471`394		// Minimum execution time: 25_892_000 picoseconds.395		Weight::from_parts(26_424_000, 63471)396			.saturating_add(RocksDbWeight::get().reads(4_u64))397			.saturating_add(RocksDbWeight::get().writes(5_u64))398	}399	/// Storage: Nonfungible TokensMinted (r:1 w:1)400	/// Proof: Nonfungible TokensMinted (max_values: None, max_size: Some(16), added: 2491, mode: MaxEncodedLen)401	/// Storage: Nonfungible AccountBalance (r:1 w:1)402	/// Proof: Nonfungible AccountBalance (max_values: None, max_size: Some(65), added: 2540, mode: MaxEncodedLen)403	/// Storage: Nonfungible TokenProperties (r:200 w:200)404	/// Proof: Nonfungible TokenProperties (max_values: None, max_size: Some(32804), added: 35279, mode: MaxEncodedLen)405	/// Storage: Common CollectionPropertyPermissions (r:1 w:0)406	/// Proof: Common CollectionPropertyPermissions (max_values: None, max_size: Some(16726), added: 19201, mode: MaxEncodedLen)407	/// Storage: Nonfungible TokenData (r:0 w:200)408	/// Proof: Nonfungible TokenData (max_values: None, max_size: Some(57), added: 2532, mode: MaxEncodedLen)409	/// Storage: Nonfungible Owned (r:0 w:200)410	/// Proof: Nonfungible Owned (max_values: None, max_size: Some(74), added: 2549, mode: MaxEncodedLen)411	/// The range of component `b` is `[0, 200]`.412	fn create_multiple_items(b: u32, ) -> Weight {413		// Proof Size summary in bytes:414		//  Measured:  `390`415		//  Estimated: `28192 + b * (35279 ±0)`416		// Minimum execution time: 4_612_000 picoseconds.417		Weight::from_parts(6_399_460, 28192)418			// Standard Error: 5_119419			.saturating_add(Weight::from_parts(7_230_389, 0).saturating_mul(b.into()))420			.saturating_add(RocksDbWeight::get().reads(3_u64))421			.saturating_add(RocksDbWeight::get().reads((1_u64).saturating_mul(b.into())))422			.saturating_add(RocksDbWeight::get().writes(2_u64))423			.saturating_add(RocksDbWeight::get().writes((3_u64).saturating_mul(b.into())))424			.saturating_add(Weight::from_parts(0, 35279).saturating_mul(b.into()))425	}426	/// Storage: Nonfungible TokensMinted (r:1 w:1)427	/// Proof: Nonfungible TokensMinted (max_values: None, max_size: Some(16), added: 2491, mode: MaxEncodedLen)428	/// Storage: Nonfungible AccountBalance (r:200 w:200)429	/// Proof: Nonfungible AccountBalance (max_values: None, max_size: Some(65), added: 2540, mode: MaxEncodedLen)430	/// Storage: Nonfungible TokenProperties (r:200 w:200)431	/// Proof: Nonfungible TokenProperties (max_values: None, max_size: Some(32804), added: 35279, mode: MaxEncodedLen)432	/// Storage: Common CollectionPropertyPermissions (r:1 w:0)433	/// Proof: Common CollectionPropertyPermissions (max_values: None, max_size: Some(16726), added: 19201, mode: MaxEncodedLen)434	/// Storage: Nonfungible TokenData (r:0 w:200)435	/// Proof: Nonfungible TokenData (max_values: None, max_size: Some(57), added: 2532, mode: MaxEncodedLen)436	/// Storage: Nonfungible Owned (r:0 w:200)437	/// Proof: Nonfungible Owned (max_values: None, max_size: Some(74), added: 2549, mode: MaxEncodedLen)438	/// The range of component `b` is `[0, 200]`.439	fn create_multiple_items_ex(b: u32, ) -> Weight {440		// Proof Size summary in bytes:441		//  Measured:  `390`442		//  Estimated: `25652 + b * (37819 ±0)`443		// Minimum execution time: 4_538_000 picoseconds.444		Weight::from_parts(4_686_000, 25652)445			// Standard Error: 3_518446			.saturating_add(Weight::from_parts(8_905_771, 0).saturating_mul(b.into()))447			.saturating_add(RocksDbWeight::get().reads(2_u64))448			.saturating_add(RocksDbWeight::get().reads((2_u64).saturating_mul(b.into())))449			.saturating_add(RocksDbWeight::get().writes(1_u64))450			.saturating_add(RocksDbWeight::get().writes((4_u64).saturating_mul(b.into())))451			.saturating_add(Weight::from_parts(0, 37819).saturating_mul(b.into()))452	}453	/// Storage: Nonfungible TokenData (r:1 w:1)454	/// Proof: Nonfungible TokenData (max_values: None, max_size: Some(57), added: 2532, mode: MaxEncodedLen)455	/// Storage: Nonfungible TokenChildren (r:1 w:0)456	/// Proof: Nonfungible TokenChildren (max_values: None, max_size: Some(41), added: 2516, mode: MaxEncodedLen)457	/// Storage: Nonfungible TokensBurnt (r:1 w:1)458	/// Proof: Nonfungible TokensBurnt (max_values: None, max_size: Some(16), added: 2491, mode: MaxEncodedLen)459	/// Storage: Nonfungible AccountBalance (r:1 w:1)460	/// Proof: Nonfungible AccountBalance (max_values: None, max_size: Some(65), added: 2540, mode: MaxEncodedLen)461	/// Storage: Nonfungible Allowance (r:1 w:0)462	/// Proof: Nonfungible Allowance (max_values: None, max_size: Some(57), added: 2532, mode: MaxEncodedLen)463	/// Storage: Nonfungible Owned (r:0 w:1)464	/// Proof: Nonfungible Owned (max_values: None, max_size: Some(74), added: 2549, mode: MaxEncodedLen)465	/// Storage: Nonfungible TokenProperties (r:0 w:1)466	/// Proof: Nonfungible TokenProperties (max_values: None, max_size: Some(32804), added: 35279, mode: MaxEncodedLen)467	fn burn_item() -> Weight {468		// Proof Size summary in bytes:469		//  Measured:  `380`470		//  Estimated: `17561`471		// Minimum execution time: 24_230_000 picoseconds.472		Weight::from_parts(24_672_000, 17561)473			.saturating_add(RocksDbWeight::get().reads(5_u64))474			.saturating_add(RocksDbWeight::get().writes(5_u64))475	}476	/// Storage: Nonfungible TokenChildren (r:1 w:0)477	/// Proof: Nonfungible TokenChildren (max_values: None, max_size: Some(41), added: 2516, mode: MaxEncodedLen)478	/// Storage: Nonfungible TokenData (r:1 w:1)479	/// Proof: Nonfungible TokenData (max_values: None, max_size: Some(57), added: 2532, mode: MaxEncodedLen)480	/// Storage: Nonfungible TokensBurnt (r:1 w:1)481	/// Proof: Nonfungible TokensBurnt (max_values: None, max_size: Some(16), added: 2491, mode: MaxEncodedLen)482	/// Storage: Nonfungible AccountBalance (r:1 w:1)483	/// Proof: Nonfungible AccountBalance (max_values: None, max_size: Some(65), added: 2540, mode: MaxEncodedLen)484	/// Storage: Nonfungible Allowance (r:1 w:0)485	/// Proof: Nonfungible Allowance (max_values: None, max_size: Some(57), added: 2532, mode: MaxEncodedLen)486	/// Storage: Nonfungible Owned (r:0 w:1)487	/// Proof: Nonfungible Owned (max_values: None, max_size: Some(74), added: 2549, mode: MaxEncodedLen)488	/// Storage: Nonfungible TokenProperties (r:0 w:1)489	/// Proof: Nonfungible TokenProperties (max_values: None, max_size: Some(32804), added: 35279, mode: MaxEncodedLen)490	fn burn_recursively_self_raw() -> Weight {491		// Proof Size summary in bytes:492		//  Measured:  `380`493		//  Estimated: `17561`494		// Minimum execution time: 30_521_000 picoseconds.495		Weight::from_parts(31_241_000, 17561)496			.saturating_add(RocksDbWeight::get().reads(5_u64))497			.saturating_add(RocksDbWeight::get().writes(5_u64))498	}499	/// Storage: Nonfungible TokenChildren (r:401 w:200)500	/// Proof: Nonfungible TokenChildren (max_values: None, max_size: Some(41), added: 2516, mode: MaxEncodedLen)501	/// Storage: Common CollectionById (r:1 w:0)502	/// Proof: Common CollectionById (max_values: None, max_size: Some(860), added: 3335, mode: MaxEncodedLen)503	/// Storage: Nonfungible TokenData (r:201 w:201)504	/// Proof: Nonfungible TokenData (max_values: None, max_size: Some(57), added: 2532, mode: MaxEncodedLen)505	/// Storage: Nonfungible TokensBurnt (r:1 w:1)506	/// Proof: Nonfungible TokensBurnt (max_values: None, max_size: Some(16), added: 2491, mode: MaxEncodedLen)507	/// Storage: Nonfungible AccountBalance (r:2 w:2)508	/// Proof: Nonfungible AccountBalance (max_values: None, max_size: Some(65), added: 2540, mode: MaxEncodedLen)509	/// Storage: Nonfungible Allowance (r:201 w:0)510	/// Proof: Nonfungible Allowance (max_values: None, max_size: Some(57), added: 2532, mode: MaxEncodedLen)511	/// Storage: Nonfungible Owned (r:0 w:201)512	/// Proof: Nonfungible Owned (max_values: None, max_size: Some(74), added: 2549, mode: MaxEncodedLen)513	/// Storage: Nonfungible TokenProperties (r:0 w:201)514	/// Proof: Nonfungible TokenProperties (max_values: None, max_size: Some(32804), added: 35279, mode: MaxEncodedLen)515	/// The range of component `b` is `[0, 200]`.516	fn burn_recursively_breadth_plus_self_plus_self_per_each_raw(b: u32, ) -> Weight {517		// Proof Size summary in bytes:518		//  Measured:  `1467 + b * (58 ±0)`519		//  Estimated: `24230 + b * (10097 ±0)`520		// Minimum execution time: 31_734_000 picoseconds.521		Weight::from_parts(32_162_000, 24230)522			// Standard Error: 210_514523			.saturating_add(Weight::from_parts(71_382_804, 0).saturating_mul(b.into()))524			.saturating_add(RocksDbWeight::get().reads(7_u64))525			.saturating_add(RocksDbWeight::get().reads((4_u64).saturating_mul(b.into())))526			.saturating_add(RocksDbWeight::get().writes(6_u64))527			.saturating_add(RocksDbWeight::get().writes((4_u64).saturating_mul(b.into())))528			.saturating_add(Weight::from_parts(0, 10097).saturating_mul(b.into()))529	}530	/// Storage: Nonfungible TokenData (r:1 w:1)531	/// Proof: Nonfungible TokenData (max_values: None, max_size: Some(57), added: 2532, mode: MaxEncodedLen)532	/// Storage: Nonfungible AccountBalance (r:2 w:2)533	/// Proof: Nonfungible AccountBalance (max_values: None, max_size: Some(65), added: 2540, mode: MaxEncodedLen)534	/// Storage: Nonfungible Allowance (r:1 w:0)535	/// Proof: Nonfungible Allowance (max_values: None, max_size: Some(57), added: 2532, mode: MaxEncodedLen)536	/// Storage: Nonfungible Owned (r:0 w:2)537	/// Proof: Nonfungible Owned (max_values: None, max_size: Some(74), added: 2549, mode: MaxEncodedLen)538	fn transfer_raw() -> Weight {539		// Proof Size summary in bytes:540		//  Measured:  `380`541		//  Estimated: `13114`542		// Minimum execution time: 18_305_000 picoseconds.543		Weight::from_parts(18_859_000, 13114)544			.saturating_add(RocksDbWeight::get().reads(4_u64))545			.saturating_add(RocksDbWeight::get().writes(5_u64))546	}547	/// Storage: Nonfungible TokenData (r:1 w:0)548	/// Proof: Nonfungible TokenData (max_values: None, max_size: Some(57), added: 2532, mode: MaxEncodedLen)549	/// Storage: Nonfungible Allowance (r:1 w:1)550	/// Proof: Nonfungible Allowance (max_values: None, max_size: Some(57), added: 2532, mode: MaxEncodedLen)551	fn approve() -> Weight {552		// Proof Size summary in bytes:553		//  Measured:  `326`554		//  Estimated: `7044`555		// Minimum execution time: 10_977_000 picoseconds.556		Weight::from_parts(11_184_000, 7044)557			.saturating_add(RocksDbWeight::get().reads(2_u64))558			.saturating_add(RocksDbWeight::get().writes(1_u64))559	}560	/// Storage: Nonfungible TokenData (r:1 w:0)561	/// Proof: Nonfungible TokenData (max_values: None, max_size: Some(57), added: 2532, mode: MaxEncodedLen)562	/// Storage: Nonfungible Allowance (r:1 w:1)563	/// Proof: Nonfungible Allowance (max_values: None, max_size: Some(57), added: 2532, mode: MaxEncodedLen)564	fn approve_from() -> Weight {565		// Proof Size summary in bytes:566		//  Measured:  `313`567		//  Estimated: `7044`568		// Minimum execution time: 11_456_000 picoseconds.569		Weight::from_parts(11_731_000, 7044)570			.saturating_add(RocksDbWeight::get().reads(2_u64))571			.saturating_add(RocksDbWeight::get().writes(1_u64))572	}573	/// Storage: Nonfungible Allowance (r:1 w:0)574	/// Proof: Nonfungible Allowance (max_values: None, max_size: Some(57), added: 2532, mode: MaxEncodedLen)575	fn check_allowed_raw() -> Weight {576		// Proof Size summary in bytes:577		//  Measured:  `362`578		//  Estimated: `3522`579		// Minimum execution time: 5_771_000 picoseconds.580		Weight::from_parts(5_972_000, 3522)581			.saturating_add(RocksDbWeight::get().reads(1_u64))582	}583	/// Storage: Nonfungible Allowance (r:1 w:1)584	/// Proof: Nonfungible Allowance (max_values: None, max_size: Some(57), added: 2532, mode: MaxEncodedLen)585	/// Storage: Nonfungible TokenData (r:1 w:1)586	/// Proof: Nonfungible TokenData (max_values: None, max_size: Some(57), added: 2532, mode: MaxEncodedLen)587	/// Storage: Nonfungible TokenChildren (r:1 w:0)588	/// Proof: Nonfungible TokenChildren (max_values: None, max_size: Some(41), added: 2516, mode: MaxEncodedLen)589	/// Storage: Nonfungible TokensBurnt (r:1 w:1)590	/// Proof: Nonfungible TokensBurnt (max_values: None, max_size: Some(16), added: 2491, mode: MaxEncodedLen)591	/// Storage: Nonfungible AccountBalance (r:1 w:1)592	/// Proof: Nonfungible AccountBalance (max_values: None, max_size: Some(65), added: 2540, mode: MaxEncodedLen)593	/// Storage: Nonfungible Owned (r:0 w:1)594	/// Proof: Nonfungible Owned (max_values: None, max_size: Some(74), added: 2549, mode: MaxEncodedLen)595	/// Storage: Nonfungible TokenProperties (r:0 w:1)596	/// Proof: Nonfungible TokenProperties (max_values: None, max_size: Some(32804), added: 35279, mode: MaxEncodedLen)597	fn burn_from() -> Weight {598		// Proof Size summary in bytes:599		//  Measured:  `463`600		//  Estimated: `17561`601		// Minimum execution time: 30_633_000 picoseconds.602		Weight::from_parts(31_136_000, 17561)603			.saturating_add(RocksDbWeight::get().reads(5_u64))604			.saturating_add(RocksDbWeight::get().writes(6_u64))605	}606	/// Storage: Common CollectionPropertyPermissions (r:1 w:1)607	/// Proof: Common CollectionPropertyPermissions (max_values: None, max_size: Some(16726), added: 19201, mode: MaxEncodedLen)608	/// The range of component `b` is `[0, 64]`.609	fn set_token_property_permissions(b: u32, ) -> Weight {610		// Proof Size summary in bytes:611		//  Measured:  `281`612		//  Estimated: `20191`613		// Minimum execution time: 2_300_000 picoseconds.614		Weight::from_parts(2_382_000, 20191)615			// Standard Error: 45_076616			.saturating_add(Weight::from_parts(12_000_777, 0).saturating_mul(b.into()))617			.saturating_add(RocksDbWeight::get().reads(1_u64))618			.saturating_add(RocksDbWeight::get().writes(1_u64))619	}620	/// Storage: Nonfungible TokenProperties (r:1 w:1)621	/// Proof: Nonfungible TokenProperties (max_values: None, max_size: Some(32804), added: 35279, mode: MaxEncodedLen)622	/// Storage: Common CollectionPropertyPermissions (r:1 w:0)623	/// Proof: Common CollectionPropertyPermissions (max_values: None, max_size: Some(16726), added: 19201, mode: MaxEncodedLen)624	/// The range of component `b` is `[0, 64]`.625	fn set_token_properties(b: u32, ) -> Weight {626		// Proof Size summary in bytes:627		//  Measured:  `584 + b * (261 ±0)`628		//  Estimated: `56460`629		// Minimum execution time: 12_422_000 picoseconds.630		Weight::from_parts(5_523_689, 56460)631			// Standard Error: 74_137632			.saturating_add(Weight::from_parts(6_320_501, 0).saturating_mul(b.into()))633			.saturating_add(RocksDbWeight::get().reads(2_u64))634			.saturating_add(RocksDbWeight::get().writes(1_u64))635	}636	/// Storage: Nonfungible TokenProperties (r:1 w:1)637	/// Proof: Nonfungible TokenProperties (max_values: None, max_size: Some(32804), added: 35279, mode: MaxEncodedLen)638	/// Storage: Common CollectionPropertyPermissions (r:1 w:0)639	/// Proof: Common CollectionPropertyPermissions (max_values: None, max_size: Some(16726), added: 19201, mode: MaxEncodedLen)640	/// The range of component `b` is `[0, 64]`.641	fn delete_token_properties(b: u32, ) -> Weight {642		// Proof Size summary in bytes:643		//  Measured:  `589 + b * (33291 ±0)`644		//  Estimated: `56460`645		// Minimum execution time: 12_006_000 picoseconds.646		Weight::from_parts(12_216_000, 56460)647			// Standard Error: 83_431648			.saturating_add(Weight::from_parts(24_556_999, 0).saturating_mul(b.into()))649			.saturating_add(RocksDbWeight::get().reads(2_u64))650			.saturating_add(RocksDbWeight::get().writes(1_u64))651	}652	/// Storage: Nonfungible TokenData (r:1 w:0)653	/// Proof: Nonfungible TokenData (max_values: None, max_size: Some(57), added: 2532, mode: MaxEncodedLen)654	fn token_owner() -> Weight {655		// Proof Size summary in bytes:656		//  Measured:  `326`657		//  Estimated: `3522`658		// Minimum execution time: 4_827_000 picoseconds.659		Weight::from_parts(4_984_000, 3522)660			.saturating_add(RocksDbWeight::get().reads(1_u64))661	}662	/// Storage: Nonfungible CollectionAllowance (r:0 w:1)663	/// Proof: Nonfungible CollectionAllowance (max_values: None, max_size: Some(111), added: 2586, mode: MaxEncodedLen)664	fn set_allowance_for_all() -> Weight {665		// Proof Size summary in bytes:666		//  Measured:  `0`667		//  Estimated: `0`668		// Minimum execution time: 6_151_000 picoseconds.669		Weight::from_parts(6_394_000, 0)670			.saturating_add(RocksDbWeight::get().writes(1_u64))671	}672	/// Storage: Nonfungible CollectionAllowance (r:1 w:0)673	/// Proof: Nonfungible CollectionAllowance (max_values: None, max_size: Some(111), added: 2586, mode: MaxEncodedLen)674	fn allowance_for_all() -> Weight {675		// Proof Size summary in bytes:676		//  Measured:  `109`677		//  Estimated: `3576`678		// Minimum execution time: 3_791_000 picoseconds.679		Weight::from_parts(3_950_000, 3576)680			.saturating_add(RocksDbWeight::get().reads(1_u64))681	}682	/// Storage: Nonfungible TokenProperties (r:1 w:1)683	/// Proof: Nonfungible TokenProperties (max_values: None, max_size: Some(32804), added: 35279, mode: MaxEncodedLen)684	fn repair_item() -> Weight {685		// Proof Size summary in bytes:686		//  Measured:  `300`687		//  Estimated: `36269`688		// Minimum execution time: 5_364_000 picoseconds.689		Weight::from_parts(5_539_000, 36269)690			.saturating_add(RocksDbWeight::get().reads(1_u64))691			.saturating_add(RocksDbWeight::get().writes(1_u64))692	}693}694
after · pallets/nonfungible/src/weights.rs
1// Template adopted from https://github.com/paritytech/substrate/blob/master/.maintain/frame-weight-template.hbs23//! Autogenerated weights for pallet_nonfungible4//!5//! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev6//! DATE: 2023-09-25, STEPS: `50`, REPEAT: `80`, LOW RANGE: `[]`, HIGH RANGE: `[]`7//! WORST CASE MAP SIZE: `1000000`8//! HOSTNAME: `hearthstone`, CPU: `AMD Ryzen 9 7950X3D 16-Core Processor`9//! EXECUTION: None, WASM-EXECUTION: Compiled, CHAIN: None, DB CACHE: 10241011// Executed Command:12// target/release/unique-collator13// benchmark14// pallet15// --pallet16// pallet-nonfungible17// --wasm-execution18// compiled19// --extrinsic20// *21// --template=.maintain/frame-weight-template.hbs22// --steps=5023// --repeat=8024// --heap-pages=409625// --output=./pallets/nonfungible/src/weights.rs2627#![cfg_attr(rustfmt, rustfmt_skip)]28#![allow(unused_parens)]29#![allow(unused_imports)]3031use frame_support::{traits::Get, weights::{Weight, constants::RocksDbWeight}};32use sp_std::marker::PhantomData;3334/// Weight functions needed for pallet_nonfungible.35pub trait WeightInfo {36	fn create_item() -> Weight;37	fn create_multiple_items(b: u32, ) -> Weight;38	fn create_multiple_items_ex(b: u32, ) -> Weight;39	fn burn_item() -> Weight;40	fn burn_recursively_self_raw() -> Weight;41	fn burn_recursively_breadth_plus_self_plus_self_per_each_raw(b: u32, ) -> Weight;42	fn transfer_raw() -> Weight;43	fn approve() -> Weight;44	fn approve_from() -> Weight;45	fn check_allowed_raw() -> Weight;46	fn burn_from() -> Weight;47	fn set_token_property_permissions(b: u32, ) -> Weight;48	fn set_token_properties(b: u32, ) -> Weight;49	fn reset_token_properties(b: u32, ) -> Weight;50	fn delete_token_properties(b: u32, ) -> Weight;51	fn token_owner() -> Weight;52	fn set_allowance_for_all() -> Weight;53	fn allowance_for_all() -> Weight;54	fn repair_item() -> Weight;55}5657/// Weights for pallet_nonfungible using the Substrate node and recommended hardware.58pub struct SubstrateWeight<T>(PhantomData<T>);59impl<T: frame_system::Config> WeightInfo for SubstrateWeight<T> {60	/// Storage: Nonfungible TokensMinted (r:1 w:1)61	/// Proof: Nonfungible TokensMinted (max_values: None, max_size: Some(16), added: 2491, mode: MaxEncodedLen)62	/// Storage: Nonfungible AccountBalance (r:1 w:1)63	/// Proof: Nonfungible AccountBalance (max_values: None, max_size: Some(65), added: 2540, mode: MaxEncodedLen)64	/// Storage: Common CollectionPropertyPermissions (r:1 w:0)65	/// Proof: Common CollectionPropertyPermissions (max_values: None, max_size: Some(16726), added: 19201, mode: MaxEncodedLen)66	/// Storage: Nonfungible TokenData (r:0 w:1)67	/// Proof: Nonfungible TokenData (max_values: None, max_size: Some(57), added: 2532, mode: MaxEncodedLen)68	/// Storage: Nonfungible Owned (r:0 w:1)69	/// Proof: Nonfungible Owned (max_values: None, max_size: Some(74), added: 2549, mode: MaxEncodedLen)70	fn create_item() -> Weight {71		// Proof Size summary in bytes:72		//  Measured:  `456`73		//  Estimated: `20191`74		// Minimum execution time: 10_660_000 picoseconds.75		Weight::from_parts(10_960_000, 20191)76			.saturating_add(T::DbWeight::get().reads(3_u64))77			.saturating_add(T::DbWeight::get().writes(4_u64))78	}79	/// Storage: Nonfungible TokensMinted (r:1 w:1)80	/// Proof: Nonfungible TokensMinted (max_values: None, max_size: Some(16), added: 2491, mode: MaxEncodedLen)81	/// Storage: Nonfungible AccountBalance (r:1 w:1)82	/// Proof: Nonfungible AccountBalance (max_values: None, max_size: Some(65), added: 2540, mode: MaxEncodedLen)83	/// Storage: Common CollectionPropertyPermissions (r:1 w:0)84	/// Proof: Common CollectionPropertyPermissions (max_values: None, max_size: Some(16726), added: 19201, mode: MaxEncodedLen)85	/// Storage: Nonfungible TokenData (r:0 w:200)86	/// Proof: Nonfungible TokenData (max_values: None, max_size: Some(57), added: 2532, mode: MaxEncodedLen)87	/// Storage: Nonfungible Owned (r:0 w:200)88	/// Proof: Nonfungible Owned (max_values: None, max_size: Some(74), added: 2549, mode: MaxEncodedLen)89	/// The range of component `b` is `[0, 200]`.90	fn create_multiple_items(b: u32, ) -> Weight {91		// Proof Size summary in bytes:92		//  Measured:  `456`93		//  Estimated: `20191`94		// Minimum execution time: 2_200_000 picoseconds.95		Weight::from_parts(612_529, 20191)96			// Standard Error: 73797			.saturating_add(Weight::from_parts(3_807_625, 0).saturating_mul(b.into()))98			.saturating_add(T::DbWeight::get().reads(3_u64))99			.saturating_add(T::DbWeight::get().writes(2_u64))100			.saturating_add(T::DbWeight::get().writes((2_u64).saturating_mul(b.into())))101	}102	/// Storage: Nonfungible TokensMinted (r:1 w:1)103	/// Proof: Nonfungible TokensMinted (max_values: None, max_size: Some(16), added: 2491, mode: MaxEncodedLen)104	/// Storage: Nonfungible AccountBalance (r:200 w:200)105	/// Proof: Nonfungible AccountBalance (max_values: None, max_size: Some(65), added: 2540, mode: MaxEncodedLen)106	/// Storage: Common CollectionPropertyPermissions (r:1 w:0)107	/// Proof: Common CollectionPropertyPermissions (max_values: None, max_size: Some(16726), added: 19201, mode: MaxEncodedLen)108	/// Storage: Nonfungible TokenData (r:0 w:200)109	/// Proof: Nonfungible TokenData (max_values: None, max_size: Some(57), added: 2532, mode: MaxEncodedLen)110	/// Storage: Nonfungible Owned (r:0 w:200)111	/// Proof: Nonfungible Owned (max_values: None, max_size: Some(74), added: 2549, mode: MaxEncodedLen)112	/// The range of component `b` is `[0, 200]`.113	fn create_multiple_items_ex(b: u32, ) -> Weight {114		// Proof Size summary in bytes:115		//  Measured:  `456`116		//  Estimated: `20191 + b * (2540 ±0)`117		// Minimum execution time: 2_190_000 picoseconds.118		Weight::from_parts(2_280_000, 20191)119			// Standard Error: 1_011120			.saturating_add(Weight::from_parts(4_931_681, 0).saturating_mul(b.into()))121			.saturating_add(T::DbWeight::get().reads(2_u64))122			.saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(b.into())))123			.saturating_add(T::DbWeight::get().writes(1_u64))124			.saturating_add(T::DbWeight::get().writes((3_u64).saturating_mul(b.into())))125			.saturating_add(Weight::from_parts(0, 2540).saturating_mul(b.into()))126	}127	/// Storage: Nonfungible TokenData (r:1 w:1)128	/// Proof: Nonfungible TokenData (max_values: None, max_size: Some(57), added: 2532, mode: MaxEncodedLen)129	/// Storage: Nonfungible TokenChildren (r:1 w:0)130	/// Proof: Nonfungible TokenChildren (max_values: None, max_size: Some(41), added: 2516, mode: MaxEncodedLen)131	/// Storage: Nonfungible TokensBurnt (r:1 w:1)132	/// Proof: Nonfungible TokensBurnt (max_values: None, max_size: Some(16), added: 2491, mode: MaxEncodedLen)133	/// Storage: Nonfungible AccountBalance (r:1 w:1)134	/// Proof: Nonfungible AccountBalance (max_values: None, max_size: Some(65), added: 2540, mode: MaxEncodedLen)135	/// Storage: Nonfungible Allowance (r:1 w:0)136	/// Proof: Nonfungible Allowance (max_values: None, max_size: Some(57), added: 2532, mode: MaxEncodedLen)137	/// Storage: Nonfungible Owned (r:0 w:1)138	/// Proof: Nonfungible Owned (max_values: None, max_size: Some(74), added: 2549, mode: MaxEncodedLen)139	/// Storage: Nonfungible TokenProperties (r:0 w:1)140	/// Proof: Nonfungible TokenProperties (max_values: None, max_size: Some(32804), added: 35279, mode: MaxEncodedLen)141	fn burn_item() -> Weight {142		// Proof Size summary in bytes:143		//  Measured:  `380`144		//  Estimated: `3530`145		// Minimum execution time: 13_470_000 picoseconds.146		Weight::from_parts(13_840_000, 3530)147			.saturating_add(T::DbWeight::get().reads(5_u64))148			.saturating_add(T::DbWeight::get().writes(5_u64))149	}150	/// Storage: Nonfungible TokenChildren (r:1 w:0)151	/// Proof: Nonfungible TokenChildren (max_values: None, max_size: Some(41), added: 2516, mode: MaxEncodedLen)152	/// Storage: Nonfungible TokenData (r:1 w:1)153	/// Proof: Nonfungible TokenData (max_values: None, max_size: Some(57), added: 2532, mode: MaxEncodedLen)154	/// Storage: Nonfungible TokensBurnt (r:1 w:1)155	/// Proof: Nonfungible TokensBurnt (max_values: None, max_size: Some(16), added: 2491, mode: MaxEncodedLen)156	/// Storage: Nonfungible AccountBalance (r:1 w:1)157	/// Proof: Nonfungible AccountBalance (max_values: None, max_size: Some(65), added: 2540, mode: MaxEncodedLen)158	/// Storage: Nonfungible Allowance (r:1 w:0)159	/// Proof: Nonfungible Allowance (max_values: None, max_size: Some(57), added: 2532, mode: MaxEncodedLen)160	/// Storage: Nonfungible Owned (r:0 w:1)161	/// Proof: Nonfungible Owned (max_values: None, max_size: Some(74), added: 2549, mode: MaxEncodedLen)162	/// Storage: Nonfungible TokenProperties (r:0 w:1)163	/// Proof: Nonfungible TokenProperties (max_values: None, max_size: Some(32804), added: 35279, mode: MaxEncodedLen)164	fn burn_recursively_self_raw() -> Weight {165		// Proof Size summary in bytes:166		//  Measured:  `380`167		//  Estimated: `3530`168		// Minimum execution time: 16_940_000 picoseconds.169		Weight::from_parts(17_340_000, 3530)170			.saturating_add(T::DbWeight::get().reads(5_u64))171			.saturating_add(T::DbWeight::get().writes(5_u64))172	}173	/// Storage: Nonfungible TokenChildren (r:401 w:200)174	/// Proof: Nonfungible TokenChildren (max_values: None, max_size: Some(41), added: 2516, mode: MaxEncodedLen)175	/// Storage: Common CollectionById (r:1 w:0)176	/// Proof: Common CollectionById (max_values: None, max_size: Some(860), added: 3335, mode: MaxEncodedLen)177	/// Storage: Nonfungible TokenData (r:201 w:201)178	/// Proof: Nonfungible TokenData (max_values: None, max_size: Some(57), added: 2532, mode: MaxEncodedLen)179	/// Storage: Nonfungible TokensBurnt (r:1 w:1)180	/// Proof: Nonfungible TokensBurnt (max_values: None, max_size: Some(16), added: 2491, mode: MaxEncodedLen)181	/// Storage: Nonfungible AccountBalance (r:2 w:2)182	/// Proof: Nonfungible AccountBalance (max_values: None, max_size: Some(65), added: 2540, mode: MaxEncodedLen)183	/// Storage: Nonfungible Allowance (r:201 w:0)184	/// Proof: Nonfungible Allowance (max_values: None, max_size: Some(57), added: 2532, mode: MaxEncodedLen)185	/// Storage: Nonfungible Owned (r:0 w:201)186	/// Proof: Nonfungible Owned (max_values: None, max_size: Some(74), added: 2549, mode: MaxEncodedLen)187	/// Storage: Nonfungible TokenProperties (r:0 w:201)188	/// Proof: Nonfungible TokenProperties (max_values: None, max_size: Some(32804), added: 35279, mode: MaxEncodedLen)189	/// The range of component `b` is `[0, 200]`.190	fn burn_recursively_breadth_plus_self_plus_self_per_each_raw(b: u32, ) -> Weight {191		// Proof Size summary in bytes:192		//  Measured:  `1500 + b * (58 ±0)`193		//  Estimated: `5874 + b * (5032 ±0)`194		// Minimum execution time: 16_910_000 picoseconds.195		Weight::from_parts(17_170_000, 5874)196			// Standard Error: 102_760197			.saturating_add(Weight::from_parts(45_644_966, 0).saturating_mul(b.into()))198			.saturating_add(T::DbWeight::get().reads(7_u64))199			.saturating_add(T::DbWeight::get().reads((4_u64).saturating_mul(b.into())))200			.saturating_add(T::DbWeight::get().writes(6_u64))201			.saturating_add(T::DbWeight::get().writes((4_u64).saturating_mul(b.into())))202			.saturating_add(Weight::from_parts(0, 5032).saturating_mul(b.into()))203	}204	/// Storage: Nonfungible TokenData (r:1 w:1)205	/// Proof: Nonfungible TokenData (max_values: None, max_size: Some(57), added: 2532, mode: MaxEncodedLen)206	/// Storage: Nonfungible AccountBalance (r:2 w:2)207	/// Proof: Nonfungible AccountBalance (max_values: None, max_size: Some(65), added: 2540, mode: MaxEncodedLen)208	/// Storage: Nonfungible Allowance (r:1 w:0)209	/// Proof: Nonfungible Allowance (max_values: None, max_size: Some(57), added: 2532, mode: MaxEncodedLen)210	/// Storage: Nonfungible Owned (r:0 w:2)211	/// Proof: Nonfungible Owned (max_values: None, max_size: Some(74), added: 2549, mode: MaxEncodedLen)212	fn transfer_raw() -> Weight {213		// Proof Size summary in bytes:214		//  Measured:  `380`215		//  Estimated: `6070`216		// Minimum execution time: 9_420_000 picoseconds.217		Weight::from_parts(9_710_000, 6070)218			.saturating_add(T::DbWeight::get().reads(4_u64))219			.saturating_add(T::DbWeight::get().writes(5_u64))220	}221	/// Storage: Nonfungible TokenData (r:1 w:0)222	/// Proof: Nonfungible TokenData (max_values: None, max_size: Some(57), added: 2532, mode: MaxEncodedLen)223	/// Storage: Nonfungible Allowance (r:1 w:1)224	/// Proof: Nonfungible Allowance (max_values: None, max_size: Some(57), added: 2532, mode: MaxEncodedLen)225	fn approve() -> Weight {226		// Proof Size summary in bytes:227		//  Measured:  `326`228		//  Estimated: `3522`229		// Minimum execution time: 5_400_000 picoseconds.230		Weight::from_parts(5_640_000, 3522)231			.saturating_add(T::DbWeight::get().reads(2_u64))232			.saturating_add(T::DbWeight::get().writes(1_u64))233	}234	/// Storage: Nonfungible TokenData (r:1 w:0)235	/// Proof: Nonfungible TokenData (max_values: None, max_size: Some(57), added: 2532, mode: MaxEncodedLen)236	/// Storage: Nonfungible Allowance (r:1 w:1)237	/// Proof: Nonfungible Allowance (max_values: None, max_size: Some(57), added: 2532, mode: MaxEncodedLen)238	fn approve_from() -> Weight {239		// Proof Size summary in bytes:240		//  Measured:  `313`241		//  Estimated: `3522`242		// Minimum execution time: 5_390_000 picoseconds.243		Weight::from_parts(5_610_000, 3522)244			.saturating_add(T::DbWeight::get().reads(2_u64))245			.saturating_add(T::DbWeight::get().writes(1_u64))246	}247	/// Storage: Nonfungible Allowance (r:1 w:0)248	/// Proof: Nonfungible Allowance (max_values: None, max_size: Some(57), added: 2532, mode: MaxEncodedLen)249	fn check_allowed_raw() -> Weight {250		// Proof Size summary in bytes:251		//  Measured:  `362`252		//  Estimated: `3522`253		// Minimum execution time: 2_970_000 picoseconds.254		Weight::from_parts(3_170_000, 3522)255			.saturating_add(T::DbWeight::get().reads(1_u64))256	}257	/// Storage: Nonfungible Allowance (r:1 w:1)258	/// Proof: Nonfungible Allowance (max_values: None, max_size: Some(57), added: 2532, mode: MaxEncodedLen)259	/// Storage: Nonfungible TokenData (r:1 w:1)260	/// Proof: Nonfungible TokenData (max_values: None, max_size: Some(57), added: 2532, mode: MaxEncodedLen)261	/// Storage: Nonfungible TokenChildren (r:1 w:0)262	/// Proof: Nonfungible TokenChildren (max_values: None, max_size: Some(41), added: 2516, mode: MaxEncodedLen)263	/// Storage: Nonfungible TokensBurnt (r:1 w:1)264	/// Proof: Nonfungible TokensBurnt (max_values: None, max_size: Some(16), added: 2491, mode: MaxEncodedLen)265	/// Storage: Nonfungible AccountBalance (r:1 w:1)266	/// Proof: Nonfungible AccountBalance (max_values: None, max_size: Some(65), added: 2540, mode: MaxEncodedLen)267	/// Storage: Nonfungible Owned (r:0 w:1)268	/// Proof: Nonfungible Owned (max_values: None, max_size: Some(74), added: 2549, mode: MaxEncodedLen)269	/// Storage: Nonfungible TokenProperties (r:0 w:1)270	/// Proof: Nonfungible TokenProperties (max_values: None, max_size: Some(32804), added: 35279, mode: MaxEncodedLen)271	fn burn_from() -> Weight {272		// Proof Size summary in bytes:273		//  Measured:  `463`274		//  Estimated: `3530`275		// Minimum execution time: 15_400_000 picoseconds.276		Weight::from_parts(15_850_000, 3530)277			.saturating_add(T::DbWeight::get().reads(5_u64))278			.saturating_add(T::DbWeight::get().writes(6_u64))279	}280	/// Storage: Common CollectionPropertyPermissions (r:1 w:1)281	/// Proof: Common CollectionPropertyPermissions (max_values: None, max_size: Some(16726), added: 19201, mode: MaxEncodedLen)282	/// The range of component `b` is `[0, 64]`.283	fn set_token_property_permissions(b: u32, ) -> Weight {284		// Proof Size summary in bytes:285		//  Measured:  `314`286		//  Estimated: `20191`287		// Minimum execution time: 780_000 picoseconds.288		Weight::from_parts(830_000, 20191)289			// Standard Error: 35_354290			.saturating_add(Weight::from_parts(8_422_695, 0).saturating_mul(b.into()))291			.saturating_add(T::DbWeight::get().reads(1_u64))292			.saturating_add(T::DbWeight::get().writes(1_u64))293	}294	/// Storage: Nonfungible TokenProperties (r:1 w:1)295	/// Proof: Nonfungible TokenProperties (max_values: None, max_size: Some(32804), added: 35279, mode: MaxEncodedLen)296	/// Storage: Common CollectionPropertyPermissions (r:1 w:0)297	/// Proof: Common CollectionPropertyPermissions (max_values: None, max_size: Some(16726), added: 19201, mode: MaxEncodedLen)298	/// Storage: Nonfungible TokenData (r:1 w:0)299	/// Proof: Nonfungible TokenData (max_values: None, max_size: Some(57), added: 2532, mode: MaxEncodedLen)300	/// The range of component `b` is `[0, 64]`.301	fn set_token_properties(b: u32, ) -> Weight {302		// Proof Size summary in bytes:303		//  Measured:  `640 + b * (261 ±0)`304		//  Estimated: `36269`305		// Minimum execution time: 5_530_000 picoseconds.306		Weight::from_parts(10_829_898, 36269)307			// Standard Error: 5_106308			.saturating_add(Weight::from_parts(2_601_900, 0).saturating_mul(b.into()))309			.saturating_add(T::DbWeight::get().reads(3_u64))310			.saturating_add(T::DbWeight::get().writes(1_u64))311	}312	/// Storage: Common CollectionPropertyPermissions (r:1 w:0)313	/// Proof: Common CollectionPropertyPermissions (max_values: None, max_size: Some(16726), added: 19201, mode: MaxEncodedLen)314	/// Storage: Nonfungible TokenProperties (r:0 w:1)315	/// Proof: Nonfungible TokenProperties (max_values: None, max_size: Some(32804), added: 35279, mode: MaxEncodedLen)316	/// The range of component `b` is `[0, 64]`.317	fn reset_token_properties(b: u32, ) -> Weight {318		// Proof Size summary in bytes:319		//  Measured:  `317 + b * (261 ±0)`320		//  Estimated: `20191`321		// Minimum execution time: 3_690_000 picoseconds.322		Weight::from_parts(9_633_879, 20191)323			// Standard Error: 6_573324			.saturating_add(Weight::from_parts(2_694_801, 0).saturating_mul(b.into()))325			.saturating_add(T::DbWeight::get().reads(1_u64))326			.saturating_add(T::DbWeight::get().writes(1_u64))327	}328	/// Storage: Nonfungible TokenProperties (r:1 w:1)329	/// Proof: Nonfungible TokenProperties (max_values: None, max_size: Some(32804), added: 35279, mode: MaxEncodedLen)330	/// Storage: Common CollectionPropertyPermissions (r:1 w:0)331	/// Proof: Common CollectionPropertyPermissions (max_values: None, max_size: Some(16726), added: 19201, mode: MaxEncodedLen)332	/// Storage: Nonfungible TokenData (r:1 w:0)333	/// Proof: Nonfungible TokenData (max_values: None, max_size: Some(57), added: 2532, mode: MaxEncodedLen)334	/// The range of component `b` is `[0, 64]`.335	fn delete_token_properties(b: u32, ) -> Weight {336		// Proof Size summary in bytes:337		//  Measured:  `699 + b * (33291 ±0)`338		//  Estimated: `36269`339		// Minimum execution time: 5_860_000 picoseconds.340		Weight::from_parts(6_000_000, 36269)341			// Standard Error: 26_204342			.saturating_add(Weight::from_parts(9_601_645, 0).saturating_mul(b.into()))343			.saturating_add(T::DbWeight::get().reads(3_u64))344			.saturating_add(T::DbWeight::get().writes(1_u64))345	}346	/// Storage: Nonfungible TokenData (r:1 w:0)347	/// Proof: Nonfungible TokenData (max_values: None, max_size: Some(57), added: 2532, mode: MaxEncodedLen)348	fn token_owner() -> Weight {349		// Proof Size summary in bytes:350		//  Measured:  `326`351		//  Estimated: `3522`352		// Minimum execution time: 2_930_000 picoseconds.353		Weight::from_parts(3_060_000, 3522)354			.saturating_add(T::DbWeight::get().reads(1_u64))355	}356	/// Storage: Nonfungible CollectionAllowance (r:0 w:1)357	/// Proof: Nonfungible CollectionAllowance (max_values: None, max_size: Some(111), added: 2586, mode: MaxEncodedLen)358	fn set_allowance_for_all() -> Weight {359		// Proof Size summary in bytes:360		//  Measured:  `0`361		//  Estimated: `0`362		// Minimum execution time: 2_680_000 picoseconds.363		Weight::from_parts(2_780_000, 0)364			.saturating_add(T::DbWeight::get().writes(1_u64))365	}366	/// Storage: Nonfungible CollectionAllowance (r:1 w:0)367	/// Proof: Nonfungible CollectionAllowance (max_values: None, max_size: Some(111), added: 2586, mode: MaxEncodedLen)368	fn allowance_for_all() -> Weight {369		// Proof Size summary in bytes:370		//  Measured:  `142`371		//  Estimated: `3576`372		// Minimum execution time: 2_000_000 picoseconds.373		Weight::from_parts(2_110_000, 3576)374			.saturating_add(T::DbWeight::get().reads(1_u64))375	}376	/// Storage: Nonfungible TokenProperties (r:1 w:1)377	/// Proof: Nonfungible TokenProperties (max_values: None, max_size: Some(32804), added: 35279, mode: MaxEncodedLen)378	fn repair_item() -> Weight {379		// Proof Size summary in bytes:380		//  Measured:  `279`381		//  Estimated: `36269`382		// Minimum execution time: 2_200_000 picoseconds.383		Weight::from_parts(2_340_000, 36269)384			.saturating_add(T::DbWeight::get().reads(1_u64))385			.saturating_add(T::DbWeight::get().writes(1_u64))386	}387}388389// For backwards compatibility and tests390impl WeightInfo for () {391	/// Storage: Nonfungible TokensMinted (r:1 w:1)392	/// Proof: Nonfungible TokensMinted (max_values: None, max_size: Some(16), added: 2491, mode: MaxEncodedLen)393	/// Storage: Nonfungible AccountBalance (r:1 w:1)394	/// Proof: Nonfungible AccountBalance (max_values: None, max_size: Some(65), added: 2540, mode: MaxEncodedLen)395	/// Storage: Common CollectionPropertyPermissions (r:1 w:0)396	/// Proof: Common CollectionPropertyPermissions (max_values: None, max_size: Some(16726), added: 19201, mode: MaxEncodedLen)397	/// Storage: Nonfungible TokenData (r:0 w:1)398	/// Proof: Nonfungible TokenData (max_values: None, max_size: Some(57), added: 2532, mode: MaxEncodedLen)399	/// Storage: Nonfungible Owned (r:0 w:1)400	/// Proof: Nonfungible Owned (max_values: None, max_size: Some(74), added: 2549, mode: MaxEncodedLen)401	fn create_item() -> Weight {402		// Proof Size summary in bytes:403		//  Measured:  `456`404		//  Estimated: `20191`405		// Minimum execution time: 10_660_000 picoseconds.406		Weight::from_parts(10_960_000, 20191)407			.saturating_add(RocksDbWeight::get().reads(3_u64))408			.saturating_add(RocksDbWeight::get().writes(4_u64))409	}410	/// Storage: Nonfungible TokensMinted (r:1 w:1)411	/// Proof: Nonfungible TokensMinted (max_values: None, max_size: Some(16), added: 2491, mode: MaxEncodedLen)412	/// Storage: Nonfungible AccountBalance (r:1 w:1)413	/// Proof: Nonfungible AccountBalance (max_values: None, max_size: Some(65), added: 2540, mode: MaxEncodedLen)414	/// Storage: Common CollectionPropertyPermissions (r:1 w:0)415	/// Proof: Common CollectionPropertyPermissions (max_values: None, max_size: Some(16726), added: 19201, mode: MaxEncodedLen)416	/// Storage: Nonfungible TokenData (r:0 w:200)417	/// Proof: Nonfungible TokenData (max_values: None, max_size: Some(57), added: 2532, mode: MaxEncodedLen)418	/// Storage: Nonfungible Owned (r:0 w:200)419	/// Proof: Nonfungible Owned (max_values: None, max_size: Some(74), added: 2549, mode: MaxEncodedLen)420	/// The range of component `b` is `[0, 200]`.421	fn create_multiple_items(b: u32, ) -> Weight {422		// Proof Size summary in bytes:423		//  Measured:  `456`424		//  Estimated: `20191`425		// Minimum execution time: 2_200_000 picoseconds.426		Weight::from_parts(612_529, 20191)427			// Standard Error: 737428			.saturating_add(Weight::from_parts(3_807_625, 0).saturating_mul(b.into()))429			.saturating_add(RocksDbWeight::get().reads(3_u64))430			.saturating_add(RocksDbWeight::get().writes(2_u64))431			.saturating_add(RocksDbWeight::get().writes((2_u64).saturating_mul(b.into())))432	}433	/// Storage: Nonfungible TokensMinted (r:1 w:1)434	/// Proof: Nonfungible TokensMinted (max_values: None, max_size: Some(16), added: 2491, mode: MaxEncodedLen)435	/// Storage: Nonfungible AccountBalance (r:200 w:200)436	/// Proof: Nonfungible AccountBalance (max_values: None, max_size: Some(65), added: 2540, mode: MaxEncodedLen)437	/// Storage: Common CollectionPropertyPermissions (r:1 w:0)438	/// Proof: Common CollectionPropertyPermissions (max_values: None, max_size: Some(16726), added: 19201, mode: MaxEncodedLen)439	/// Storage: Nonfungible TokenData (r:0 w:200)440	/// Proof: Nonfungible TokenData (max_values: None, max_size: Some(57), added: 2532, mode: MaxEncodedLen)441	/// Storage: Nonfungible Owned (r:0 w:200)442	/// Proof: Nonfungible Owned (max_values: None, max_size: Some(74), added: 2549, mode: MaxEncodedLen)443	/// The range of component `b` is `[0, 200]`.444	fn create_multiple_items_ex(b: u32, ) -> Weight {445		// Proof Size summary in bytes:446		//  Measured:  `456`447		//  Estimated: `20191 + b * (2540 ±0)`448		// Minimum execution time: 2_190_000 picoseconds.449		Weight::from_parts(2_280_000, 20191)450			// Standard Error: 1_011451			.saturating_add(Weight::from_parts(4_931_681, 0).saturating_mul(b.into()))452			.saturating_add(RocksDbWeight::get().reads(2_u64))453			.saturating_add(RocksDbWeight::get().reads((1_u64).saturating_mul(b.into())))454			.saturating_add(RocksDbWeight::get().writes(1_u64))455			.saturating_add(RocksDbWeight::get().writes((3_u64).saturating_mul(b.into())))456			.saturating_add(Weight::from_parts(0, 2540).saturating_mul(b.into()))457	}458	/// Storage: Nonfungible TokenData (r:1 w:1)459	/// Proof: Nonfungible TokenData (max_values: None, max_size: Some(57), added: 2532, mode: MaxEncodedLen)460	/// Storage: Nonfungible TokenChildren (r:1 w:0)461	/// Proof: Nonfungible TokenChildren (max_values: None, max_size: Some(41), added: 2516, mode: MaxEncodedLen)462	/// Storage: Nonfungible TokensBurnt (r:1 w:1)463	/// Proof: Nonfungible TokensBurnt (max_values: None, max_size: Some(16), added: 2491, mode: MaxEncodedLen)464	/// Storage: Nonfungible AccountBalance (r:1 w:1)465	/// Proof: Nonfungible AccountBalance (max_values: None, max_size: Some(65), added: 2540, mode: MaxEncodedLen)466	/// Storage: Nonfungible Allowance (r:1 w:0)467	/// Proof: Nonfungible Allowance (max_values: None, max_size: Some(57), added: 2532, mode: MaxEncodedLen)468	/// Storage: Nonfungible Owned (r:0 w:1)469	/// Proof: Nonfungible Owned (max_values: None, max_size: Some(74), added: 2549, mode: MaxEncodedLen)470	/// Storage: Nonfungible TokenProperties (r:0 w:1)471	/// Proof: Nonfungible TokenProperties (max_values: None, max_size: Some(32804), added: 35279, mode: MaxEncodedLen)472	fn burn_item() -> Weight {473		// Proof Size summary in bytes:474		//  Measured:  `380`475		//  Estimated: `3530`476		// Minimum execution time: 13_470_000 picoseconds.477		Weight::from_parts(13_840_000, 3530)478			.saturating_add(RocksDbWeight::get().reads(5_u64))479			.saturating_add(RocksDbWeight::get().writes(5_u64))480	}481	/// Storage: Nonfungible TokenChildren (r:1 w:0)482	/// Proof: Nonfungible TokenChildren (max_values: None, max_size: Some(41), added: 2516, mode: MaxEncodedLen)483	/// Storage: Nonfungible TokenData (r:1 w:1)484	/// Proof: Nonfungible TokenData (max_values: None, max_size: Some(57), added: 2532, mode: MaxEncodedLen)485	/// Storage: Nonfungible TokensBurnt (r:1 w:1)486	/// Proof: Nonfungible TokensBurnt (max_values: None, max_size: Some(16), added: 2491, mode: MaxEncodedLen)487	/// Storage: Nonfungible AccountBalance (r:1 w:1)488	/// Proof: Nonfungible AccountBalance (max_values: None, max_size: Some(65), added: 2540, mode: MaxEncodedLen)489	/// Storage: Nonfungible Allowance (r:1 w:0)490	/// Proof: Nonfungible Allowance (max_values: None, max_size: Some(57), added: 2532, mode: MaxEncodedLen)491	/// Storage: Nonfungible Owned (r:0 w:1)492	/// Proof: Nonfungible Owned (max_values: None, max_size: Some(74), added: 2549, mode: MaxEncodedLen)493	/// Storage: Nonfungible TokenProperties (r:0 w:1)494	/// Proof: Nonfungible TokenProperties (max_values: None, max_size: Some(32804), added: 35279, mode: MaxEncodedLen)495	fn burn_recursively_self_raw() -> Weight {496		// Proof Size summary in bytes:497		//  Measured:  `380`498		//  Estimated: `3530`499		// Minimum execution time: 16_940_000 picoseconds.500		Weight::from_parts(17_340_000, 3530)501			.saturating_add(RocksDbWeight::get().reads(5_u64))502			.saturating_add(RocksDbWeight::get().writes(5_u64))503	}504	/// Storage: Nonfungible TokenChildren (r:401 w:200)505	/// Proof: Nonfungible TokenChildren (max_values: None, max_size: Some(41), added: 2516, mode: MaxEncodedLen)506	/// Storage: Common CollectionById (r:1 w:0)507	/// Proof: Common CollectionById (max_values: None, max_size: Some(860), added: 3335, mode: MaxEncodedLen)508	/// Storage: Nonfungible TokenData (r:201 w:201)509	/// Proof: Nonfungible TokenData (max_values: None, max_size: Some(57), added: 2532, mode: MaxEncodedLen)510	/// Storage: Nonfungible TokensBurnt (r:1 w:1)511	/// Proof: Nonfungible TokensBurnt (max_values: None, max_size: Some(16), added: 2491, mode: MaxEncodedLen)512	/// Storage: Nonfungible AccountBalance (r:2 w:2)513	/// Proof: Nonfungible AccountBalance (max_values: None, max_size: Some(65), added: 2540, mode: MaxEncodedLen)514	/// Storage: Nonfungible Allowance (r:201 w:0)515	/// Proof: Nonfungible Allowance (max_values: None, max_size: Some(57), added: 2532, mode: MaxEncodedLen)516	/// Storage: Nonfungible Owned (r:0 w:201)517	/// Proof: Nonfungible Owned (max_values: None, max_size: Some(74), added: 2549, mode: MaxEncodedLen)518	/// Storage: Nonfungible TokenProperties (r:0 w:201)519	/// Proof: Nonfungible TokenProperties (max_values: None, max_size: Some(32804), added: 35279, mode: MaxEncodedLen)520	/// The range of component `b` is `[0, 200]`.521	fn burn_recursively_breadth_plus_self_plus_self_per_each_raw(b: u32, ) -> Weight {522		// Proof Size summary in bytes:523		//  Measured:  `1500 + b * (58 ±0)`524		//  Estimated: `5874 + b * (5032 ±0)`525		// Minimum execution time: 16_910_000 picoseconds.526		Weight::from_parts(17_170_000, 5874)527			// Standard Error: 102_760528			.saturating_add(Weight::from_parts(45_644_966, 0).saturating_mul(b.into()))529			.saturating_add(RocksDbWeight::get().reads(7_u64))530			.saturating_add(RocksDbWeight::get().reads((4_u64).saturating_mul(b.into())))531			.saturating_add(RocksDbWeight::get().writes(6_u64))532			.saturating_add(RocksDbWeight::get().writes((4_u64).saturating_mul(b.into())))533			.saturating_add(Weight::from_parts(0, 5032).saturating_mul(b.into()))534	}535	/// Storage: Nonfungible TokenData (r:1 w:1)536	/// Proof: Nonfungible TokenData (max_values: None, max_size: Some(57), added: 2532, mode: MaxEncodedLen)537	/// Storage: Nonfungible AccountBalance (r:2 w:2)538	/// Proof: Nonfungible AccountBalance (max_values: None, max_size: Some(65), added: 2540, mode: MaxEncodedLen)539	/// Storage: Nonfungible Allowance (r:1 w:0)540	/// Proof: Nonfungible Allowance (max_values: None, max_size: Some(57), added: 2532, mode: MaxEncodedLen)541	/// Storage: Nonfungible Owned (r:0 w:2)542	/// Proof: Nonfungible Owned (max_values: None, max_size: Some(74), added: 2549, mode: MaxEncodedLen)543	fn transfer_raw() -> Weight {544		// Proof Size summary in bytes:545		//  Measured:  `380`546		//  Estimated: `6070`547		// Minimum execution time: 9_420_000 picoseconds.548		Weight::from_parts(9_710_000, 6070)549			.saturating_add(RocksDbWeight::get().reads(4_u64))550			.saturating_add(RocksDbWeight::get().writes(5_u64))551	}552	/// Storage: Nonfungible TokenData (r:1 w:0)553	/// Proof: Nonfungible TokenData (max_values: None, max_size: Some(57), added: 2532, mode: MaxEncodedLen)554	/// Storage: Nonfungible Allowance (r:1 w:1)555	/// Proof: Nonfungible Allowance (max_values: None, max_size: Some(57), added: 2532, mode: MaxEncodedLen)556	fn approve() -> Weight {557		// Proof Size summary in bytes:558		//  Measured:  `326`559		//  Estimated: `3522`560		// Minimum execution time: 5_400_000 picoseconds.561		Weight::from_parts(5_640_000, 3522)562			.saturating_add(RocksDbWeight::get().reads(2_u64))563			.saturating_add(RocksDbWeight::get().writes(1_u64))564	}565	/// Storage: Nonfungible TokenData (r:1 w:0)566	/// Proof: Nonfungible TokenData (max_values: None, max_size: Some(57), added: 2532, mode: MaxEncodedLen)567	/// Storage: Nonfungible Allowance (r:1 w:1)568	/// Proof: Nonfungible Allowance (max_values: None, max_size: Some(57), added: 2532, mode: MaxEncodedLen)569	fn approve_from() -> Weight {570		// Proof Size summary in bytes:571		//  Measured:  `313`572		//  Estimated: `3522`573		// Minimum execution time: 5_390_000 picoseconds.574		Weight::from_parts(5_610_000, 3522)575			.saturating_add(RocksDbWeight::get().reads(2_u64))576			.saturating_add(RocksDbWeight::get().writes(1_u64))577	}578	/// Storage: Nonfungible Allowance (r:1 w:0)579	/// Proof: Nonfungible Allowance (max_values: None, max_size: Some(57), added: 2532, mode: MaxEncodedLen)580	fn check_allowed_raw() -> Weight {581		// Proof Size summary in bytes:582		//  Measured:  `362`583		//  Estimated: `3522`584		// Minimum execution time: 2_970_000 picoseconds.585		Weight::from_parts(3_170_000, 3522)586			.saturating_add(RocksDbWeight::get().reads(1_u64))587	}588	/// Storage: Nonfungible Allowance (r:1 w:1)589	/// Proof: Nonfungible Allowance (max_values: None, max_size: Some(57), added: 2532, mode: MaxEncodedLen)590	/// Storage: Nonfungible TokenData (r:1 w:1)591	/// Proof: Nonfungible TokenData (max_values: None, max_size: Some(57), added: 2532, mode: MaxEncodedLen)592	/// Storage: Nonfungible TokenChildren (r:1 w:0)593	/// Proof: Nonfungible TokenChildren (max_values: None, max_size: Some(41), added: 2516, mode: MaxEncodedLen)594	/// Storage: Nonfungible TokensBurnt (r:1 w:1)595	/// Proof: Nonfungible TokensBurnt (max_values: None, max_size: Some(16), added: 2491, mode: MaxEncodedLen)596	/// Storage: Nonfungible AccountBalance (r:1 w:1)597	/// Proof: Nonfungible AccountBalance (max_values: None, max_size: Some(65), added: 2540, mode: MaxEncodedLen)598	/// Storage: Nonfungible Owned (r:0 w:1)599	/// Proof: Nonfungible Owned (max_values: None, max_size: Some(74), added: 2549, mode: MaxEncodedLen)600	/// Storage: Nonfungible TokenProperties (r:0 w:1)601	/// Proof: Nonfungible TokenProperties (max_values: None, max_size: Some(32804), added: 35279, mode: MaxEncodedLen)602	fn burn_from() -> Weight {603		// Proof Size summary in bytes:604		//  Measured:  `463`605		//  Estimated: `3530`606		// Minimum execution time: 15_400_000 picoseconds.607		Weight::from_parts(15_850_000, 3530)608			.saturating_add(RocksDbWeight::get().reads(5_u64))609			.saturating_add(RocksDbWeight::get().writes(6_u64))610	}611	/// Storage: Common CollectionPropertyPermissions (r:1 w:1)612	/// Proof: Common CollectionPropertyPermissions (max_values: None, max_size: Some(16726), added: 19201, mode: MaxEncodedLen)613	/// The range of component `b` is `[0, 64]`.614	fn set_token_property_permissions(b: u32, ) -> Weight {615		// Proof Size summary in bytes:616		//  Measured:  `314`617		//  Estimated: `20191`618		// Minimum execution time: 780_000 picoseconds.619		Weight::from_parts(830_000, 20191)620			// Standard Error: 35_354621			.saturating_add(Weight::from_parts(8_422_695, 0).saturating_mul(b.into()))622			.saturating_add(RocksDbWeight::get().reads(1_u64))623			.saturating_add(RocksDbWeight::get().writes(1_u64))624	}625	/// Storage: Nonfungible TokenProperties (r:1 w:1)626	/// Proof: Nonfungible TokenProperties (max_values: None, max_size: Some(32804), added: 35279, mode: MaxEncodedLen)627	/// Storage: Common CollectionPropertyPermissions (r:1 w:0)628	/// Proof: Common CollectionPropertyPermissions (max_values: None, max_size: Some(16726), added: 19201, mode: MaxEncodedLen)629	/// Storage: Nonfungible TokenData (r:1 w:0)630	/// Proof: Nonfungible TokenData (max_values: None, max_size: Some(57), added: 2532, mode: MaxEncodedLen)631	/// The range of component `b` is `[0, 64]`.632	fn set_token_properties(b: u32, ) -> Weight {633		// Proof Size summary in bytes:634		//  Measured:  `640 + b * (261 ±0)`635		//  Estimated: `36269`636		// Minimum execution time: 5_530_000 picoseconds.637		Weight::from_parts(10_829_898, 36269)638			// Standard Error: 5_106639			.saturating_add(Weight::from_parts(2_601_900, 0).saturating_mul(b.into()))640			.saturating_add(RocksDbWeight::get().reads(3_u64))641			.saturating_add(RocksDbWeight::get().writes(1_u64))642	}643	/// Storage: Common CollectionPropertyPermissions (r:1 w:0)644	/// Proof: Common CollectionPropertyPermissions (max_values: None, max_size: Some(16726), added: 19201, mode: MaxEncodedLen)645	/// Storage: Nonfungible TokenProperties (r:0 w:1)646	/// Proof: Nonfungible TokenProperties (max_values: None, max_size: Some(32804), added: 35279, mode: MaxEncodedLen)647	/// The range of component `b` is `[0, 64]`.648	fn reset_token_properties(b: u32, ) -> Weight {649		// Proof Size summary in bytes:650		//  Measured:  `317 + b * (261 ±0)`651		//  Estimated: `20191`652		// Minimum execution time: 3_690_000 picoseconds.653		Weight::from_parts(9_633_879, 20191)654			// Standard Error: 6_573655			.saturating_add(Weight::from_parts(2_694_801, 0).saturating_mul(b.into()))656			.saturating_add(RocksDbWeight::get().reads(1_u64))657			.saturating_add(RocksDbWeight::get().writes(1_u64))658	}659	/// Storage: Nonfungible TokenProperties (r:1 w:1)660	/// Proof: Nonfungible TokenProperties (max_values: None, max_size: Some(32804), added: 35279, mode: MaxEncodedLen)661	/// Storage: Common CollectionPropertyPermissions (r:1 w:0)662	/// Proof: Common CollectionPropertyPermissions (max_values: None, max_size: Some(16726), added: 19201, mode: MaxEncodedLen)663	/// Storage: Nonfungible TokenData (r:1 w:0)664	/// Proof: Nonfungible TokenData (max_values: None, max_size: Some(57), added: 2532, mode: MaxEncodedLen)665	/// The range of component `b` is `[0, 64]`.666	fn delete_token_properties(b: u32, ) -> Weight {667		// Proof Size summary in bytes:668		//  Measured:  `699 + b * (33291 ±0)`669		//  Estimated: `36269`670		// Minimum execution time: 5_860_000 picoseconds.671		Weight::from_parts(6_000_000, 36269)672			// Standard Error: 26_204673			.saturating_add(Weight::from_parts(9_601_645, 0).saturating_mul(b.into()))674			.saturating_add(RocksDbWeight::get().reads(3_u64))675			.saturating_add(RocksDbWeight::get().writes(1_u64))676	}677	/// Storage: Nonfungible TokenData (r:1 w:0)678	/// Proof: Nonfungible TokenData (max_values: None, max_size: Some(57), added: 2532, mode: MaxEncodedLen)679	fn token_owner() -> Weight {680		// Proof Size summary in bytes:681		//  Measured:  `326`682		//  Estimated: `3522`683		// Minimum execution time: 2_930_000 picoseconds.684		Weight::from_parts(3_060_000, 3522)685			.saturating_add(RocksDbWeight::get().reads(1_u64))686	}687	/// Storage: Nonfungible CollectionAllowance (r:0 w:1)688	/// Proof: Nonfungible CollectionAllowance (max_values: None, max_size: Some(111), added: 2586, mode: MaxEncodedLen)689	fn set_allowance_for_all() -> Weight {690		// Proof Size summary in bytes:691		//  Measured:  `0`692		//  Estimated: `0`693		// Minimum execution time: 2_680_000 picoseconds.694		Weight::from_parts(2_780_000, 0)695			.saturating_add(RocksDbWeight::get().writes(1_u64))696	}697	/// Storage: Nonfungible CollectionAllowance (r:1 w:0)698	/// Proof: Nonfungible CollectionAllowance (max_values: None, max_size: Some(111), added: 2586, mode: MaxEncodedLen)699	fn allowance_for_all() -> Weight {700		// Proof Size summary in bytes:701		//  Measured:  `142`702		//  Estimated: `3576`703		// Minimum execution time: 2_000_000 picoseconds.704		Weight::from_parts(2_110_000, 3576)705			.saturating_add(RocksDbWeight::get().reads(1_u64))706	}707	/// Storage: Nonfungible TokenProperties (r:1 w:1)708	/// Proof: Nonfungible TokenProperties (max_values: None, max_size: Some(32804), added: 35279, mode: MaxEncodedLen)709	fn repair_item() -> Weight {710		// Proof Size summary in bytes:711		//  Measured:  `279`712		//  Estimated: `36269`713		// Minimum execution time: 2_200_000 picoseconds.714		Weight::from_parts(2_340_000, 36269)715			.saturating_add(RocksDbWeight::get().reads(1_u64))716			.saturating_add(RocksDbWeight::get().writes(1_u64))717	}718}719
modifiedpallets/refungible/src/weights.rsdiffbeforeafterboth
--- a/pallets/refungible/src/weights.rs
+++ b/pallets/refungible/src/weights.rs
@@ -3,9 +3,9 @@
 //! Autogenerated weights for pallet_refungible
 //!
 //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev
-//! DATE: 2023-04-20, STEPS: `50`, REPEAT: `80`, LOW RANGE: `[]`, HIGH RANGE: `[]`
+//! DATE: 2023-09-25, STEPS: `50`, REPEAT: `80`, LOW RANGE: `[]`, HIGH RANGE: `[]`
 //! WORST CASE MAP SIZE: `1000000`
-//! HOSTNAME: `bench-host`, CPU: `Intel(R) Core(TM) i7-8700 CPU @ 3.20GHz`
+//! HOSTNAME: `hearthstone`, CPU: `AMD Ryzen 9 7950X3D 16-Core Processor`
 //! EXECUTION: None, WASM-EXECUTION: Compiled, CHAIN: None, DB CACHE: 1024
 
 // Executed Command:
@@ -52,6 +52,7 @@
 	fn burn_from() -> Weight;
 	fn set_token_property_permissions(b: u32, ) -> Weight;
 	fn set_token_properties(b: u32, ) -> Weight;
+	fn reset_token_properties(b: u32, ) -> Weight;
 	fn delete_token_properties(b: u32, ) -> Weight;
 	fn repartition_item() -> Weight;
 	fn token_owner() -> Weight;
@@ -67,8 +68,6 @@
 	/// Proof: Refungible TokensMinted (max_values: None, max_size: Some(16), added: 2491, mode: MaxEncodedLen)
 	/// Storage: Refungible AccountBalance (r:1 w:1)
 	/// Proof: Refungible AccountBalance (max_values: None, max_size: Some(65), added: 2540, mode: MaxEncodedLen)
-	/// Storage: Refungible TokenProperties (r:1 w:1)
-	/// Proof: Refungible TokenProperties (max_values: None, max_size: Some(32804), added: 35279, mode: MaxEncodedLen)
 	/// Storage: Common CollectionPropertyPermissions (r:1 w:0)
 	/// Proof: Common CollectionPropertyPermissions (max_values: None, max_size: Some(16726), added: 19201, mode: MaxEncodedLen)
 	/// Storage: Refungible Balance (r:0 w:1)
@@ -79,19 +78,17 @@
 	/// Proof: Refungible Owned (max_values: None, max_size: Some(74), added: 2549, mode: MaxEncodedLen)
 	fn create_item() -> Weight {
 		// Proof Size summary in bytes:
-		//  Measured:  `285`
-		//  Estimated: `63471`
-		// Minimum execution time: 30_759_000 picoseconds.
-		Weight::from_parts(31_321_000, 63471)
-			.saturating_add(T::DbWeight::get().reads(4_u64))
-			.saturating_add(T::DbWeight::get().writes(6_u64))
+		//  Measured:  `318`
+		//  Estimated: `20191`
+		// Minimum execution time: 11_620_000 picoseconds.
+		Weight::from_parts(12_110_000, 20191)
+			.saturating_add(T::DbWeight::get().reads(3_u64))
+			.saturating_add(T::DbWeight::get().writes(5_u64))
 	}
 	/// Storage: Refungible TokensMinted (r:1 w:1)
 	/// Proof: Refungible TokensMinted (max_values: None, max_size: Some(16), added: 2491, mode: MaxEncodedLen)
 	/// Storage: Refungible AccountBalance (r:1 w:1)
 	/// Proof: Refungible AccountBalance (max_values: None, max_size: Some(65), added: 2540, mode: MaxEncodedLen)
-	/// Storage: Refungible TokenProperties (r:200 w:200)
-	/// Proof: Refungible TokenProperties (max_values: None, max_size: Some(32804), added: 35279, mode: MaxEncodedLen)
 	/// Storage: Common CollectionPropertyPermissions (r:1 w:0)
 	/// Proof: Common CollectionPropertyPermissions (max_values: None, max_size: Some(16726), added: 19201, mode: MaxEncodedLen)
 	/// Storage: Refungible Balance (r:0 w:200)
@@ -103,24 +100,20 @@
 	/// The range of component `b` is `[0, 200]`.
 	fn create_multiple_items(b: u32, ) -> Weight {
 		// Proof Size summary in bytes:
-		//  Measured:  `285`
-		//  Estimated: `28192 + b * (35279 ±0)`
-		// Minimum execution time: 4_024_000 picoseconds.
-		Weight::from_parts(4_145_000, 28192)
-			// Standard Error: 3_332
-			.saturating_add(Weight::from_parts(8_967_757, 0).saturating_mul(b.into()))
+		//  Measured:  `318`
+		//  Estimated: `20191`
+		// Minimum execution time: 1_690_000 picoseconds.
+		Weight::from_parts(1_750_000, 20191)
+			// Standard Error: 1_647
+			.saturating_add(Weight::from_parts(4_876_194, 0).saturating_mul(b.into()))
 			.saturating_add(T::DbWeight::get().reads(3_u64))
-			.saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(b.into())))
 			.saturating_add(T::DbWeight::get().writes(2_u64))
-			.saturating_add(T::DbWeight::get().writes((4_u64).saturating_mul(b.into())))
-			.saturating_add(Weight::from_parts(0, 35279).saturating_mul(b.into()))
+			.saturating_add(T::DbWeight::get().writes((3_u64).saturating_mul(b.into())))
 	}
 	/// Storage: Refungible TokensMinted (r:1 w:1)
 	/// Proof: Refungible TokensMinted (max_values: None, max_size: Some(16), added: 2491, mode: MaxEncodedLen)
 	/// Storage: Refungible AccountBalance (r:200 w:200)
 	/// Proof: Refungible AccountBalance (max_values: None, max_size: Some(65), added: 2540, mode: MaxEncodedLen)
-	/// Storage: Refungible TokenProperties (r:200 w:200)
-	/// Proof: Refungible TokenProperties (max_values: None, max_size: Some(32804), added: 35279, mode: MaxEncodedLen)
 	/// Storage: Common CollectionPropertyPermissions (r:1 w:0)
 	/// Proof: Common CollectionPropertyPermissions (max_values: None, max_size: Some(16726), added: 19201, mode: MaxEncodedLen)
 	/// Storage: Refungible Balance (r:0 w:200)
@@ -132,24 +125,22 @@
 	/// The range of component `b` is `[0, 200]`.
 	fn create_multiple_items_ex_multiple_items(b: u32, ) -> Weight {
 		// Proof Size summary in bytes:
-		//  Measured:  `285`
-		//  Estimated: `25652 + b * (37819 ±0)`
-		// Minimum execution time: 3_715_000 picoseconds.
-		Weight::from_parts(3_881_000, 25652)
-			// Standard Error: 3_275
-			.saturating_add(Weight::from_parts(10_525_271, 0).saturating_mul(b.into()))
+		//  Measured:  `318`
+		//  Estimated: `20191 + b * (2540 ±0)`
+		// Minimum execution time: 1_730_000 picoseconds.
+		Weight::from_parts(1_790_000, 20191)
+			// Standard Error: 1_611
+			.saturating_add(Weight::from_parts(6_002_948, 0).saturating_mul(b.into()))
 			.saturating_add(T::DbWeight::get().reads(2_u64))
-			.saturating_add(T::DbWeight::get().reads((2_u64).saturating_mul(b.into())))
+			.saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(b.into())))
 			.saturating_add(T::DbWeight::get().writes(1_u64))
-			.saturating_add(T::DbWeight::get().writes((5_u64).saturating_mul(b.into())))
-			.saturating_add(Weight::from_parts(0, 37819).saturating_mul(b.into()))
+			.saturating_add(T::DbWeight::get().writes((4_u64).saturating_mul(b.into())))
+			.saturating_add(Weight::from_parts(0, 2540).saturating_mul(b.into()))
 	}
 	/// Storage: Refungible TokensMinted (r:1 w:1)
 	/// Proof: Refungible TokensMinted (max_values: None, max_size: Some(16), added: 2491, mode: MaxEncodedLen)
 	/// Storage: Refungible AccountBalance (r:200 w:200)
 	/// Proof: Refungible AccountBalance (max_values: None, max_size: Some(65), added: 2540, mode: MaxEncodedLen)
-	/// Storage: Refungible TokenProperties (r:1 w:1)
-	/// Proof: Refungible TokenProperties (max_values: None, max_size: Some(32804), added: 35279, mode: MaxEncodedLen)
 	/// Storage: Common CollectionPropertyPermissions (r:1 w:0)
 	/// Proof: Common CollectionPropertyPermissions (max_values: None, max_size: Some(16726), added: 19201, mode: MaxEncodedLen)
 	/// Storage: Refungible Balance (r:0 w:200)
@@ -161,15 +152,15 @@
 	/// The range of component `b` is `[0, 200]`.
 	fn create_multiple_items_ex_multiple_owners(b: u32, ) -> Weight {
 		// Proof Size summary in bytes:
-		//  Measured:  `285`
-		//  Estimated: `60931 + b * (2540 ±0)`
-		// Minimum execution time: 13_150_000 picoseconds.
-		Weight::from_parts(15_655_930, 60931)
-			// Standard Error: 4_170
-			.saturating_add(Weight::from_parts(5_673_702, 0).saturating_mul(b.into()))
-			.saturating_add(T::DbWeight::get().reads(3_u64))
+		//  Measured:  `318`
+		//  Estimated: `20191 + b * (2540 ±0)`
+		// Minimum execution time: 6_260_000 picoseconds.
+		Weight::from_parts(2_297_892, 20191)
+			// Standard Error: 1_302
+			.saturating_add(Weight::from_parts(4_093_180, 0).saturating_mul(b.into()))
+			.saturating_add(T::DbWeight::get().reads(2_u64))
 			.saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(b.into())))
-			.saturating_add(T::DbWeight::get().writes(3_u64))
+			.saturating_add(T::DbWeight::get().writes(2_u64))
 			.saturating_add(T::DbWeight::get().writes((3_u64).saturating_mul(b.into())))
 			.saturating_add(Weight::from_parts(0, 2540).saturating_mul(b.into()))
 	}
@@ -183,10 +174,10 @@
 	/// Proof: Refungible Owned (max_values: None, max_size: Some(74), added: 2549, mode: MaxEncodedLen)
 	fn burn_item_partial() -> Weight {
 		// Proof Size summary in bytes:
-		//  Measured:  `490`
-		//  Estimated: `15717`
-		// Minimum execution time: 28_992_000 picoseconds.
-		Weight::from_parts(29_325_000, 15717)
+		//  Measured:  `456`
+		//  Estimated: `8682`
+		// Minimum execution time: 17_330_000 picoseconds.
+		Weight::from_parts(17_910_000, 8682)
 			.saturating_add(T::DbWeight::get().reads(5_u64))
 			.saturating_add(T::DbWeight::get().writes(4_u64))
 	}
@@ -204,10 +195,10 @@
 	/// Proof: Refungible TokenProperties (max_values: None, max_size: Some(32804), added: 35279, mode: MaxEncodedLen)
 	fn burn_item_fully() -> Weight {
 		// Proof Size summary in bytes:
-		//  Measured:  `375`
-		//  Estimated: `14070`
-		// Minimum execution time: 27_980_000 picoseconds.
-		Weight::from_parts(28_582_000, 14070)
+		//  Measured:  `341`
+		//  Estimated: `3554`
+		// Minimum execution time: 16_920_000 picoseconds.
+		Weight::from_parts(17_630_000, 3554)
 			.saturating_add(T::DbWeight::get().reads(4_u64))
 			.saturating_add(T::DbWeight::get().writes(6_u64))
 	}
@@ -217,10 +208,10 @@
 	/// Proof: Refungible TotalSupply (max_values: None, max_size: Some(40), added: 2515, mode: MaxEncodedLen)
 	fn transfer_normal() -> Weight {
 		// Proof Size summary in bytes:
-		//  Measured:  `398`
-		//  Estimated: `9623`
-		// Minimum execution time: 18_746_000 picoseconds.
-		Weight::from_parts(19_096_000, 9623)
+		//  Measured:  `365`
+		//  Estimated: `6118`
+		// Minimum execution time: 10_600_000 picoseconds.
+		Weight::from_parts(10_950_000, 6118)
 			.saturating_add(T::DbWeight::get().reads(3_u64))
 			.saturating_add(T::DbWeight::get().writes(2_u64))
 	}
@@ -234,10 +225,10 @@
 	/// Proof: Refungible Owned (max_values: None, max_size: Some(74), added: 2549, mode: MaxEncodedLen)
 	fn transfer_creating() -> Weight {
 		// Proof Size summary in bytes:
-		//  Measured:  `375`
-		//  Estimated: `13153`
-		// Minimum execution time: 21_719_000 picoseconds.
-		Weight::from_parts(22_219_000, 13153)
+		//  Measured:  `341`
+		//  Estimated: `6118`
+		// Minimum execution time: 12_160_000 picoseconds.
+		Weight::from_parts(12_570_000, 6118)
 			.saturating_add(T::DbWeight::get().reads(4_u64))
 			.saturating_add(T::DbWeight::get().writes(4_u64))
 	}
@@ -251,10 +242,10 @@
 	/// Proof: Refungible Owned (max_values: None, max_size: Some(74), added: 2549, mode: MaxEncodedLen)
 	fn transfer_removing() -> Weight {
 		// Proof Size summary in bytes:
-		//  Measured:  `490`
-		//  Estimated: `13153`
-		// Minimum execution time: 24_784_000 picoseconds.
-		Weight::from_parts(25_231_000, 13153)
+		//  Measured:  `456`
+		//  Estimated: `6118`
+		// Minimum execution time: 14_300_000 picoseconds.
+		Weight::from_parts(14_760_000, 6118)
 			.saturating_add(T::DbWeight::get().reads(4_u64))
 			.saturating_add(T::DbWeight::get().writes(4_u64))
 	}
@@ -268,10 +259,10 @@
 	/// Proof: Refungible Owned (max_values: None, max_size: Some(74), added: 2549, mode: MaxEncodedLen)
 	fn transfer_creating_removing() -> Weight {
 		// Proof Size summary in bytes:
-		//  Measured:  `375`
-		//  Estimated: `15693`
-		// Minimum execution time: 24_865_000 picoseconds.
-		Weight::from_parts(25_253_000, 15693)
+		//  Measured:  `341`
+		//  Estimated: `6118`
+		// Minimum execution time: 14_050_000 picoseconds.
+		Weight::from_parts(14_490_000, 6118)
 			.saturating_add(T::DbWeight::get().reads(5_u64))
 			.saturating_add(T::DbWeight::get().writes(6_u64))
 	}
@@ -281,10 +272,10 @@
 	/// Proof: Refungible Allowance (max_values: None, max_size: Some(105), added: 2580, mode: MaxEncodedLen)
 	fn approve() -> Weight {
 		// Proof Size summary in bytes:
-		//  Measured:  `256`
+		//  Measured:  `223`
 		//  Estimated: `3554`
-		// Minimum execution time: 12_318_000 picoseconds.
-		Weight::from_parts(12_597_000, 3554)
+		// Minimum execution time: 6_210_000 picoseconds.
+		Weight::from_parts(6_500_000, 3554)
 			.saturating_add(T::DbWeight::get().reads(1_u64))
 			.saturating_add(T::DbWeight::get().writes(1_u64))
 	}
@@ -294,10 +285,10 @@
 	/// Proof: Refungible Allowance (max_values: None, max_size: Some(105), added: 2580, mode: MaxEncodedLen)
 	fn approve_from() -> Weight {
 		// Proof Size summary in bytes:
-		//  Measured:  `244`
+		//  Measured:  `211`
 		//  Estimated: `3554`
-		// Minimum execution time: 12_276_000 picoseconds.
-		Weight::from_parts(12_557_000, 3554)
+		// Minimum execution time: 6_280_000 picoseconds.
+		Weight::from_parts(6_540_000, 3554)
 			.saturating_add(T::DbWeight::get().reads(1_u64))
 			.saturating_add(T::DbWeight::get().writes(1_u64))
 	}
@@ -309,10 +300,10 @@
 	/// Proof: Refungible TotalSupply (max_values: None, max_size: Some(40), added: 2515, mode: MaxEncodedLen)
 	fn transfer_from_normal() -> Weight {
 		// Proof Size summary in bytes:
-		//  Measured:  `528`
-		//  Estimated: `13193`
-		// Minimum execution time: 26_852_000 picoseconds.
-		Weight::from_parts(27_427_000, 13193)
+		//  Measured:  `495`
+		//  Estimated: `6118`
+		// Minimum execution time: 15_570_000 picoseconds.
+		Weight::from_parts(15_990_000, 6118)
 			.saturating_add(T::DbWeight::get().reads(4_u64))
 			.saturating_add(T::DbWeight::get().writes(3_u64))
 	}
@@ -328,10 +319,10 @@
 	/// Proof: Refungible Owned (max_values: None, max_size: Some(74), added: 2549, mode: MaxEncodedLen)
 	fn transfer_from_creating() -> Weight {
 		// Proof Size summary in bytes:
-		//  Measured:  `505`
-		//  Estimated: `16723`
-		// Minimum execution time: 29_893_000 picoseconds.
-		Weight::from_parts(30_345_000, 16723)
+		//  Measured:  `471`
+		//  Estimated: `6118`
+		// Minimum execution time: 17_030_000 picoseconds.
+		Weight::from_parts(17_430_000, 6118)
 			.saturating_add(T::DbWeight::get().reads(5_u64))
 			.saturating_add(T::DbWeight::get().writes(5_u64))
 	}
@@ -347,10 +338,10 @@
 	/// Proof: Refungible Owned (max_values: None, max_size: Some(74), added: 2549, mode: MaxEncodedLen)
 	fn transfer_from_removing() -> Weight {
 		// Proof Size summary in bytes:
-		//  Measured:  `620`
-		//  Estimated: `16723`
-		// Minimum execution time: 32_784_000 picoseconds.
-		Weight::from_parts(33_322_000, 16723)
+		//  Measured:  `586`
+		//  Estimated: `6118`
+		// Minimum execution time: 19_300_000 picoseconds.
+		Weight::from_parts(19_760_000, 6118)
 			.saturating_add(T::DbWeight::get().reads(5_u64))
 			.saturating_add(T::DbWeight::get().writes(5_u64))
 	}
@@ -366,10 +357,10 @@
 	/// Proof: Refungible Owned (max_values: None, max_size: Some(74), added: 2549, mode: MaxEncodedLen)
 	fn transfer_from_creating_removing() -> Weight {
 		// Proof Size summary in bytes:
-		//  Measured:  `505`
-		//  Estimated: `19263`
-		// Minimum execution time: 32_987_000 picoseconds.
-		Weight::from_parts(33_428_000, 19263)
+		//  Measured:  `471`
+		//  Estimated: `6118`
+		// Minimum execution time: 19_190_000 picoseconds.
+		Weight::from_parts(19_560_000, 6118)
 			.saturating_add(T::DbWeight::get().reads(6_u64))
 			.saturating_add(T::DbWeight::get().writes(7_u64))
 	}
@@ -389,10 +380,10 @@
 	/// Proof: Refungible TokenProperties (max_values: None, max_size: Some(32804), added: 35279, mode: MaxEncodedLen)
 	fn burn_from() -> Weight {
 		// Proof Size summary in bytes:
-		//  Measured:  `505`
-		//  Estimated: `17640`
-		// Minimum execution time: 38_277_000 picoseconds.
-		Weight::from_parts(38_983_000, 17640)
+		//  Measured:  `471`
+		//  Estimated: `3570`
+		// Minimum execution time: 22_590_000 picoseconds.
+		Weight::from_parts(23_290_000, 3570)
 			.saturating_add(T::DbWeight::get().reads(5_u64))
 			.saturating_add(T::DbWeight::get().writes(7_u64))
 	}
@@ -401,12 +392,12 @@
 	/// The range of component `b` is `[0, 64]`.
 	fn set_token_property_permissions(b: u32, ) -> Weight {
 		// Proof Size summary in bytes:
-		//  Measured:  `281`
+		//  Measured:  `314`
 		//  Estimated: `20191`
-		// Minimum execution time: 2_254_000 picoseconds.
-		Weight::from_parts(2_335_000, 20191)
-			// Standard Error: 44_906
-			.saturating_add(Weight::from_parts(12_118_499, 0).saturating_mul(b.into()))
+		// Minimum execution time: 780_000 picoseconds.
+		Weight::from_parts(850_000, 20191)
+			// Standard Error: 38_209
+			.saturating_add(Weight::from_parts(9_042_866, 0).saturating_mul(b.into()))
 			.saturating_add(T::DbWeight::get().reads(1_u64))
 			.saturating_add(T::DbWeight::get().writes(1_u64))
 	}
@@ -414,32 +405,52 @@
 	/// Proof: Refungible TokenProperties (max_values: None, max_size: Some(32804), added: 35279, mode: MaxEncodedLen)
 	/// Storage: Common CollectionPropertyPermissions (r:1 w:0)
 	/// Proof: Common CollectionPropertyPermissions (max_values: None, max_size: Some(16726), added: 19201, mode: MaxEncodedLen)
+	/// Storage: Refungible TotalSupply (r:1 w:0)
+	/// Proof: Refungible TotalSupply (max_values: None, max_size: Some(40), added: 2515, mode: MaxEncodedLen)
 	/// The range of component `b` is `[0, 64]`.
 	fn set_token_properties(b: u32, ) -> Weight {
 		// Proof Size summary in bytes:
-		//  Measured:  `458 + b * (261 ±0)`
-		//  Estimated: `56460`
-		// Minimum execution time: 11_249_000 picoseconds.
-		Weight::from_parts(11_420_000, 56460)
-			// Standard Error: 72_033
-			.saturating_add(Weight::from_parts(7_008_012, 0).saturating_mul(b.into()))
-			.saturating_add(T::DbWeight::get().reads(2_u64))
+		//  Measured:  `502 + b * (261 ±0)`
+		//  Estimated: `36269`
+		// Minimum execution time: 5_160_000 picoseconds.
+		Weight::from_parts(15_283_437, 36269)
+			// Standard Error: 12_988
+			.saturating_add(Weight::from_parts(2_757_274, 0).saturating_mul(b.into()))
+			.saturating_add(T::DbWeight::get().reads(3_u64))
+			.saturating_add(T::DbWeight::get().writes(1_u64))
+	}
+	/// Storage: Common CollectionPropertyPermissions (r:1 w:0)
+	/// Proof: Common CollectionPropertyPermissions (max_values: None, max_size: Some(16726), added: 19201, mode: MaxEncodedLen)
+	/// Storage: Refungible TokenProperties (r:0 w:1)
+	/// Proof: Refungible TokenProperties (max_values: None, max_size: Some(32804), added: 35279, mode: MaxEncodedLen)
+	/// The range of component `b` is `[0, 64]`.
+	fn reset_token_properties(b: u32, ) -> Weight {
+		// Proof Size summary in bytes:
+		//  Measured:  `317 + b * (261 ±0)`
+		//  Estimated: `20191`
+		// Minimum execution time: 3_560_000 picoseconds.
+		Weight::from_parts(6_788_279, 20191)
+			// Standard Error: 5_443
+			.saturating_add(Weight::from_parts(2_641_825, 0).saturating_mul(b.into()))
+			.saturating_add(T::DbWeight::get().reads(1_u64))
 			.saturating_add(T::DbWeight::get().writes(1_u64))
 	}
 	/// Storage: Refungible TokenProperties (r:1 w:1)
 	/// Proof: Refungible TokenProperties (max_values: None, max_size: Some(32804), added: 35279, mode: MaxEncodedLen)
 	/// Storage: Common CollectionPropertyPermissions (r:1 w:0)
 	/// Proof: Common CollectionPropertyPermissions (max_values: None, max_size: Some(16726), added: 19201, mode: MaxEncodedLen)
+	/// Storage: Refungible TotalSupply (r:1 w:0)
+	/// Proof: Refungible TotalSupply (max_values: None, max_size: Some(40), added: 2515, mode: MaxEncodedLen)
 	/// The range of component `b` is `[0, 64]`.
 	fn delete_token_properties(b: u32, ) -> Weight {
 		// Proof Size summary in bytes:
-		//  Measured:  `463 + b * (33291 ±0)`
-		//  Estimated: `56460`
-		// Minimum execution time: 11_368_000 picoseconds.
-		Weight::from_parts(11_546_000, 56460)
-			// Standard Error: 85_444
-			.saturating_add(Weight::from_parts(24_644_980, 0).saturating_mul(b.into()))
-			.saturating_add(T::DbWeight::get().reads(2_u64))
+		//  Measured:  `561 + b * (33291 ±0)`
+		//  Estimated: `36269`
+		// Minimum execution time: 4_650_000 picoseconds.
+		Weight::from_parts(4_820_000, 36269)
+			// Standard Error: 24_035
+			.saturating_add(Weight::from_parts(8_828_039, 0).saturating_mul(b.into()))
+			.saturating_add(T::DbWeight::get().reads(3_u64))
 			.saturating_add(T::DbWeight::get().writes(1_u64))
 	}
 	/// Storage: Refungible TotalSupply (r:1 w:1)
@@ -448,10 +459,10 @@
 	/// Proof: Refungible Balance (max_values: None, max_size: Some(89), added: 2564, mode: MaxEncodedLen)
 	fn repartition_item() -> Weight {
 		// Proof Size summary in bytes:
-		//  Measured:  `321`
-		//  Estimated: `7059`
-		// Minimum execution time: 13_586_000 picoseconds.
-		Weight::from_parts(14_489_000, 7059)
+		//  Measured:  `288`
+		//  Estimated: `3554`
+		// Minimum execution time: 7_260_000 picoseconds.
+		Weight::from_parts(7_520_000, 3554)
 			.saturating_add(T::DbWeight::get().reads(2_u64))
 			.saturating_add(T::DbWeight::get().writes(2_u64))
 	}
@@ -459,10 +470,10 @@
 	/// Proof: Refungible Balance (max_values: None, max_size: Some(89), added: 2564, mode: MaxEncodedLen)
 	fn token_owner() -> Weight {
 		// Proof Size summary in bytes:
-		//  Measured:  `321`
+		//  Measured:  `288`
 		//  Estimated: `6118`
-		// Minimum execution time: 7_049_000 picoseconds.
-		Weight::from_parts(7_320_000, 6118)
+		// Minimum execution time: 3_200_000 picoseconds.
+		Weight::from_parts(3_360_000, 6118)
 			.saturating_add(T::DbWeight::get().reads(2_u64))
 	}
 	/// Storage: Refungible CollectionAllowance (r:0 w:1)
@@ -471,8 +482,8 @@
 		// Proof Size summary in bytes:
 		//  Measured:  `0`
 		//  Estimated: `0`
-		// Minimum execution time: 6_432_000 picoseconds.
-		Weight::from_parts(6_642_000, 0)
+		// Minimum execution time: 2_420_000 picoseconds.
+		Weight::from_parts(2_540_000, 0)
 			.saturating_add(T::DbWeight::get().writes(1_u64))
 	}
 	/// Storage: Refungible CollectionAllowance (r:1 w:0)
@@ -481,18 +492,18 @@
 		// Proof Size summary in bytes:
 		//  Measured:  `4`
 		//  Estimated: `3576`
-		// Minimum execution time: 3_030_000 picoseconds.
-		Weight::from_parts(3_206_000, 3576)
+		// Minimum execution time: 1_370_000 picoseconds.
+		Weight::from_parts(1_470_000, 3576)
 			.saturating_add(T::DbWeight::get().reads(1_u64))
 	}
 	/// Storage: Refungible TokenProperties (r:1 w:1)
 	/// Proof: Refungible TokenProperties (max_values: None, max_size: Some(32804), added: 35279, mode: MaxEncodedLen)
 	fn repair_item() -> Weight {
 		// Proof Size summary in bytes:
-		//  Measured:  `174`
+		//  Measured:  `120`
 		//  Estimated: `36269`
-		// Minimum execution time: 4_371_000 picoseconds.
-		Weight::from_parts(4_555_000, 36269)
+		// Minimum execution time: 1_350_000 picoseconds.
+		Weight::from_parts(1_420_000, 36269)
 			.saturating_add(T::DbWeight::get().reads(1_u64))
 			.saturating_add(T::DbWeight::get().writes(1_u64))
 	}
@@ -504,8 +515,6 @@
 	/// Proof: Refungible TokensMinted (max_values: None, max_size: Some(16), added: 2491, mode: MaxEncodedLen)
 	/// Storage: Refungible AccountBalance (r:1 w:1)
 	/// Proof: Refungible AccountBalance (max_values: None, max_size: Some(65), added: 2540, mode: MaxEncodedLen)
-	/// Storage: Refungible TokenProperties (r:1 w:1)
-	/// Proof: Refungible TokenProperties (max_values: None, max_size: Some(32804), added: 35279, mode: MaxEncodedLen)
 	/// Storage: Common CollectionPropertyPermissions (r:1 w:0)
 	/// Proof: Common CollectionPropertyPermissions (max_values: None, max_size: Some(16726), added: 19201, mode: MaxEncodedLen)
 	/// Storage: Refungible Balance (r:0 w:1)
@@ -516,19 +525,17 @@
 	/// Proof: Refungible Owned (max_values: None, max_size: Some(74), added: 2549, mode: MaxEncodedLen)
 	fn create_item() -> Weight {
 		// Proof Size summary in bytes:
-		//  Measured:  `285`
-		//  Estimated: `63471`
-		// Minimum execution time: 30_759_000 picoseconds.
-		Weight::from_parts(31_321_000, 63471)
-			.saturating_add(RocksDbWeight::get().reads(4_u64))
-			.saturating_add(RocksDbWeight::get().writes(6_u64))
+		//  Measured:  `318`
+		//  Estimated: `20191`
+		// Minimum execution time: 11_620_000 picoseconds.
+		Weight::from_parts(12_110_000, 20191)
+			.saturating_add(RocksDbWeight::get().reads(3_u64))
+			.saturating_add(RocksDbWeight::get().writes(5_u64))
 	}
 	/// Storage: Refungible TokensMinted (r:1 w:1)
 	/// Proof: Refungible TokensMinted (max_values: None, max_size: Some(16), added: 2491, mode: MaxEncodedLen)
 	/// Storage: Refungible AccountBalance (r:1 w:1)
 	/// Proof: Refungible AccountBalance (max_values: None, max_size: Some(65), added: 2540, mode: MaxEncodedLen)
-	/// Storage: Refungible TokenProperties (r:200 w:200)
-	/// Proof: Refungible TokenProperties (max_values: None, max_size: Some(32804), added: 35279, mode: MaxEncodedLen)
 	/// Storage: Common CollectionPropertyPermissions (r:1 w:0)
 	/// Proof: Common CollectionPropertyPermissions (max_values: None, max_size: Some(16726), added: 19201, mode: MaxEncodedLen)
 	/// Storage: Refungible Balance (r:0 w:200)
@@ -540,24 +547,20 @@
 	/// The range of component `b` is `[0, 200]`.
 	fn create_multiple_items(b: u32, ) -> Weight {
 		// Proof Size summary in bytes:
-		//  Measured:  `285`
-		//  Estimated: `28192 + b * (35279 ±0)`
-		// Minimum execution time: 4_024_000 picoseconds.
-		Weight::from_parts(4_145_000, 28192)
-			// Standard Error: 3_332
-			.saturating_add(Weight::from_parts(8_967_757, 0).saturating_mul(b.into()))
+		//  Measured:  `318`
+		//  Estimated: `20191`
+		// Minimum execution time: 1_690_000 picoseconds.
+		Weight::from_parts(1_750_000, 20191)
+			// Standard Error: 1_647
+			.saturating_add(Weight::from_parts(4_876_194, 0).saturating_mul(b.into()))
 			.saturating_add(RocksDbWeight::get().reads(3_u64))
-			.saturating_add(RocksDbWeight::get().reads((1_u64).saturating_mul(b.into())))
 			.saturating_add(RocksDbWeight::get().writes(2_u64))
-			.saturating_add(RocksDbWeight::get().writes((4_u64).saturating_mul(b.into())))
-			.saturating_add(Weight::from_parts(0, 35279).saturating_mul(b.into()))
+			.saturating_add(RocksDbWeight::get().writes((3_u64).saturating_mul(b.into())))
 	}
 	/// Storage: Refungible TokensMinted (r:1 w:1)
 	/// Proof: Refungible TokensMinted (max_values: None, max_size: Some(16), added: 2491, mode: MaxEncodedLen)
 	/// Storage: Refungible AccountBalance (r:200 w:200)
 	/// Proof: Refungible AccountBalance (max_values: None, max_size: Some(65), added: 2540, mode: MaxEncodedLen)
-	/// Storage: Refungible TokenProperties (r:200 w:200)
-	/// Proof: Refungible TokenProperties (max_values: None, max_size: Some(32804), added: 35279, mode: MaxEncodedLen)
 	/// Storage: Common CollectionPropertyPermissions (r:1 w:0)
 	/// Proof: Common CollectionPropertyPermissions (max_values: None, max_size: Some(16726), added: 19201, mode: MaxEncodedLen)
 	/// Storage: Refungible Balance (r:0 w:200)
@@ -569,24 +572,22 @@
 	/// The range of component `b` is `[0, 200]`.
 	fn create_multiple_items_ex_multiple_items(b: u32, ) -> Weight {
 		// Proof Size summary in bytes:
-		//  Measured:  `285`
-		//  Estimated: `25652 + b * (37819 ±0)`
-		// Minimum execution time: 3_715_000 picoseconds.
-		Weight::from_parts(3_881_000, 25652)
-			// Standard Error: 3_275
-			.saturating_add(Weight::from_parts(10_525_271, 0).saturating_mul(b.into()))
+		//  Measured:  `318`
+		//  Estimated: `20191 + b * (2540 ±0)`
+		// Minimum execution time: 1_730_000 picoseconds.
+		Weight::from_parts(1_790_000, 20191)
+			// Standard Error: 1_611
+			.saturating_add(Weight::from_parts(6_002_948, 0).saturating_mul(b.into()))
 			.saturating_add(RocksDbWeight::get().reads(2_u64))
-			.saturating_add(RocksDbWeight::get().reads((2_u64).saturating_mul(b.into())))
+			.saturating_add(RocksDbWeight::get().reads((1_u64).saturating_mul(b.into())))
 			.saturating_add(RocksDbWeight::get().writes(1_u64))
-			.saturating_add(RocksDbWeight::get().writes((5_u64).saturating_mul(b.into())))
-			.saturating_add(Weight::from_parts(0, 37819).saturating_mul(b.into()))
+			.saturating_add(RocksDbWeight::get().writes((4_u64).saturating_mul(b.into())))
+			.saturating_add(Weight::from_parts(0, 2540).saturating_mul(b.into()))
 	}
 	/// Storage: Refungible TokensMinted (r:1 w:1)
 	/// Proof: Refungible TokensMinted (max_values: None, max_size: Some(16), added: 2491, mode: MaxEncodedLen)
 	/// Storage: Refungible AccountBalance (r:200 w:200)
 	/// Proof: Refungible AccountBalance (max_values: None, max_size: Some(65), added: 2540, mode: MaxEncodedLen)
-	/// Storage: Refungible TokenProperties (r:1 w:1)
-	/// Proof: Refungible TokenProperties (max_values: None, max_size: Some(32804), added: 35279, mode: MaxEncodedLen)
 	/// Storage: Common CollectionPropertyPermissions (r:1 w:0)
 	/// Proof: Common CollectionPropertyPermissions (max_values: None, max_size: Some(16726), added: 19201, mode: MaxEncodedLen)
 	/// Storage: Refungible Balance (r:0 w:200)
@@ -598,15 +599,15 @@
 	/// The range of component `b` is `[0, 200]`.
 	fn create_multiple_items_ex_multiple_owners(b: u32, ) -> Weight {
 		// Proof Size summary in bytes:
-		//  Measured:  `285`
-		//  Estimated: `60931 + b * (2540 ±0)`
-		// Minimum execution time: 13_150_000 picoseconds.
-		Weight::from_parts(15_655_930, 60931)
-			// Standard Error: 4_170
-			.saturating_add(Weight::from_parts(5_673_702, 0).saturating_mul(b.into()))
-			.saturating_add(RocksDbWeight::get().reads(3_u64))
+		//  Measured:  `318`
+		//  Estimated: `20191 + b * (2540 ±0)`
+		// Minimum execution time: 6_260_000 picoseconds.
+		Weight::from_parts(2_297_892, 20191)
+			// Standard Error: 1_302
+			.saturating_add(Weight::from_parts(4_093_180, 0).saturating_mul(b.into()))
+			.saturating_add(RocksDbWeight::get().reads(2_u64))
 			.saturating_add(RocksDbWeight::get().reads((1_u64).saturating_mul(b.into())))
-			.saturating_add(RocksDbWeight::get().writes(3_u64))
+			.saturating_add(RocksDbWeight::get().writes(2_u64))
 			.saturating_add(RocksDbWeight::get().writes((3_u64).saturating_mul(b.into())))
 			.saturating_add(Weight::from_parts(0, 2540).saturating_mul(b.into()))
 	}
@@ -620,10 +621,10 @@
 	/// Proof: Refungible Owned (max_values: None, max_size: Some(74), added: 2549, mode: MaxEncodedLen)
 	fn burn_item_partial() -> Weight {
 		// Proof Size summary in bytes:
-		//  Measured:  `490`
-		//  Estimated: `15717`
-		// Minimum execution time: 28_992_000 picoseconds.
-		Weight::from_parts(29_325_000, 15717)
+		//  Measured:  `456`
+		//  Estimated: `8682`
+		// Minimum execution time: 17_330_000 picoseconds.
+		Weight::from_parts(17_910_000, 8682)
 			.saturating_add(RocksDbWeight::get().reads(5_u64))
 			.saturating_add(RocksDbWeight::get().writes(4_u64))
 	}
@@ -641,10 +642,10 @@
 	/// Proof: Refungible TokenProperties (max_values: None, max_size: Some(32804), added: 35279, mode: MaxEncodedLen)
 	fn burn_item_fully() -> Weight {
 		// Proof Size summary in bytes:
-		//  Measured:  `375`
-		//  Estimated: `14070`
-		// Minimum execution time: 27_980_000 picoseconds.
-		Weight::from_parts(28_582_000, 14070)
+		//  Measured:  `341`
+		//  Estimated: `3554`
+		// Minimum execution time: 16_920_000 picoseconds.
+		Weight::from_parts(17_630_000, 3554)
 			.saturating_add(RocksDbWeight::get().reads(4_u64))
 			.saturating_add(RocksDbWeight::get().writes(6_u64))
 	}
@@ -654,10 +655,10 @@
 	/// Proof: Refungible TotalSupply (max_values: None, max_size: Some(40), added: 2515, mode: MaxEncodedLen)
 	fn transfer_normal() -> Weight {
 		// Proof Size summary in bytes:
-		//  Measured:  `398`
-		//  Estimated: `9623`
-		// Minimum execution time: 18_746_000 picoseconds.
-		Weight::from_parts(19_096_000, 9623)
+		//  Measured:  `365`
+		//  Estimated: `6118`
+		// Minimum execution time: 10_600_000 picoseconds.
+		Weight::from_parts(10_950_000, 6118)
 			.saturating_add(RocksDbWeight::get().reads(3_u64))
 			.saturating_add(RocksDbWeight::get().writes(2_u64))
 	}
@@ -671,10 +672,10 @@
 	/// Proof: Refungible Owned (max_values: None, max_size: Some(74), added: 2549, mode: MaxEncodedLen)
 	fn transfer_creating() -> Weight {
 		// Proof Size summary in bytes:
-		//  Measured:  `375`
-		//  Estimated: `13153`
-		// Minimum execution time: 21_719_000 picoseconds.
-		Weight::from_parts(22_219_000, 13153)
+		//  Measured:  `341`
+		//  Estimated: `6118`
+		// Minimum execution time: 12_160_000 picoseconds.
+		Weight::from_parts(12_570_000, 6118)
 			.saturating_add(RocksDbWeight::get().reads(4_u64))
 			.saturating_add(RocksDbWeight::get().writes(4_u64))
 	}
@@ -688,10 +689,10 @@
 	/// Proof: Refungible Owned (max_values: None, max_size: Some(74), added: 2549, mode: MaxEncodedLen)
 	fn transfer_removing() -> Weight {
 		// Proof Size summary in bytes:
-		//  Measured:  `490`
-		//  Estimated: `13153`
-		// Minimum execution time: 24_784_000 picoseconds.
-		Weight::from_parts(25_231_000, 13153)
+		//  Measured:  `456`
+		//  Estimated: `6118`
+		// Minimum execution time: 14_300_000 picoseconds.
+		Weight::from_parts(14_760_000, 6118)
 			.saturating_add(RocksDbWeight::get().reads(4_u64))
 			.saturating_add(RocksDbWeight::get().writes(4_u64))
 	}
@@ -705,10 +706,10 @@
 	/// Proof: Refungible Owned (max_values: None, max_size: Some(74), added: 2549, mode: MaxEncodedLen)
 	fn transfer_creating_removing() -> Weight {
 		// Proof Size summary in bytes:
-		//  Measured:  `375`
-		//  Estimated: `15693`
-		// Minimum execution time: 24_865_000 picoseconds.
-		Weight::from_parts(25_253_000, 15693)
+		//  Measured:  `341`
+		//  Estimated: `6118`
+		// Minimum execution time: 14_050_000 picoseconds.
+		Weight::from_parts(14_490_000, 6118)
 			.saturating_add(RocksDbWeight::get().reads(5_u64))
 			.saturating_add(RocksDbWeight::get().writes(6_u64))
 	}
@@ -718,10 +719,10 @@
 	/// Proof: Refungible Allowance (max_values: None, max_size: Some(105), added: 2580, mode: MaxEncodedLen)
 	fn approve() -> Weight {
 		// Proof Size summary in bytes:
-		//  Measured:  `256`
+		//  Measured:  `223`
 		//  Estimated: `3554`
-		// Minimum execution time: 12_318_000 picoseconds.
-		Weight::from_parts(12_597_000, 3554)
+		// Minimum execution time: 6_210_000 picoseconds.
+		Weight::from_parts(6_500_000, 3554)
 			.saturating_add(RocksDbWeight::get().reads(1_u64))
 			.saturating_add(RocksDbWeight::get().writes(1_u64))
 	}
@@ -731,10 +732,10 @@
 	/// Proof: Refungible Allowance (max_values: None, max_size: Some(105), added: 2580, mode: MaxEncodedLen)
 	fn approve_from() -> Weight {
 		// Proof Size summary in bytes:
-		//  Measured:  `244`
+		//  Measured:  `211`
 		//  Estimated: `3554`
-		// Minimum execution time: 12_276_000 picoseconds.
-		Weight::from_parts(12_557_000, 3554)
+		// Minimum execution time: 6_280_000 picoseconds.
+		Weight::from_parts(6_540_000, 3554)
 			.saturating_add(RocksDbWeight::get().reads(1_u64))
 			.saturating_add(RocksDbWeight::get().writes(1_u64))
 	}
@@ -746,10 +747,10 @@
 	/// Proof: Refungible TotalSupply (max_values: None, max_size: Some(40), added: 2515, mode: MaxEncodedLen)
 	fn transfer_from_normal() -> Weight {
 		// Proof Size summary in bytes:
-		//  Measured:  `528`
-		//  Estimated: `13193`
-		// Minimum execution time: 26_852_000 picoseconds.
-		Weight::from_parts(27_427_000, 13193)
+		//  Measured:  `495`
+		//  Estimated: `6118`
+		// Minimum execution time: 15_570_000 picoseconds.
+		Weight::from_parts(15_990_000, 6118)
 			.saturating_add(RocksDbWeight::get().reads(4_u64))
 			.saturating_add(RocksDbWeight::get().writes(3_u64))
 	}
@@ -765,10 +766,10 @@
 	/// Proof: Refungible Owned (max_values: None, max_size: Some(74), added: 2549, mode: MaxEncodedLen)
 	fn transfer_from_creating() -> Weight {
 		// Proof Size summary in bytes:
-		//  Measured:  `505`
-		//  Estimated: `16723`
-		// Minimum execution time: 29_893_000 picoseconds.
-		Weight::from_parts(30_345_000, 16723)
+		//  Measured:  `471`
+		//  Estimated: `6118`
+		// Minimum execution time: 17_030_000 picoseconds.
+		Weight::from_parts(17_430_000, 6118)
 			.saturating_add(RocksDbWeight::get().reads(5_u64))
 			.saturating_add(RocksDbWeight::get().writes(5_u64))
 	}
@@ -784,10 +785,10 @@
 	/// Proof: Refungible Owned (max_values: None, max_size: Some(74), added: 2549, mode: MaxEncodedLen)
 	fn transfer_from_removing() -> Weight {
 		// Proof Size summary in bytes:
-		//  Measured:  `620`
-		//  Estimated: `16723`
-		// Minimum execution time: 32_784_000 picoseconds.
-		Weight::from_parts(33_322_000, 16723)
+		//  Measured:  `586`
+		//  Estimated: `6118`
+		// Minimum execution time: 19_300_000 picoseconds.
+		Weight::from_parts(19_760_000, 6118)
 			.saturating_add(RocksDbWeight::get().reads(5_u64))
 			.saturating_add(RocksDbWeight::get().writes(5_u64))
 	}
@@ -803,10 +804,10 @@
 	/// Proof: Refungible Owned (max_values: None, max_size: Some(74), added: 2549, mode: MaxEncodedLen)
 	fn transfer_from_creating_removing() -> Weight {
 		// Proof Size summary in bytes:
-		//  Measured:  `505`
-		//  Estimated: `19263`
-		// Minimum execution time: 32_987_000 picoseconds.
-		Weight::from_parts(33_428_000, 19263)
+		//  Measured:  `471`
+		//  Estimated: `6118`
+		// Minimum execution time: 19_190_000 picoseconds.
+		Weight::from_parts(19_560_000, 6118)
 			.saturating_add(RocksDbWeight::get().reads(6_u64))
 			.saturating_add(RocksDbWeight::get().writes(7_u64))
 	}
@@ -826,10 +827,10 @@
 	/// Proof: Refungible TokenProperties (max_values: None, max_size: Some(32804), added: 35279, mode: MaxEncodedLen)
 	fn burn_from() -> Weight {
 		// Proof Size summary in bytes:
-		//  Measured:  `505`
-		//  Estimated: `17640`
-		// Minimum execution time: 38_277_000 picoseconds.
-		Weight::from_parts(38_983_000, 17640)
+		//  Measured:  `471`
+		//  Estimated: `3570`
+		// Minimum execution time: 22_590_000 picoseconds.
+		Weight::from_parts(23_290_000, 3570)
 			.saturating_add(RocksDbWeight::get().reads(5_u64))
 			.saturating_add(RocksDbWeight::get().writes(7_u64))
 	}
@@ -838,12 +839,12 @@
 	/// The range of component `b` is `[0, 64]`.
 	fn set_token_property_permissions(b: u32, ) -> Weight {
 		// Proof Size summary in bytes:
-		//  Measured:  `281`
+		//  Measured:  `314`
 		//  Estimated: `20191`
-		// Minimum execution time: 2_254_000 picoseconds.
-		Weight::from_parts(2_335_000, 20191)
-			// Standard Error: 44_906
-			.saturating_add(Weight::from_parts(12_118_499, 0).saturating_mul(b.into()))
+		// Minimum execution time: 780_000 picoseconds.
+		Weight::from_parts(850_000, 20191)
+			// Standard Error: 38_209
+			.saturating_add(Weight::from_parts(9_042_866, 0).saturating_mul(b.into()))
 			.saturating_add(RocksDbWeight::get().reads(1_u64))
 			.saturating_add(RocksDbWeight::get().writes(1_u64))
 	}
@@ -851,32 +852,52 @@
 	/// Proof: Refungible TokenProperties (max_values: None, max_size: Some(32804), added: 35279, mode: MaxEncodedLen)
 	/// Storage: Common CollectionPropertyPermissions (r:1 w:0)
 	/// Proof: Common CollectionPropertyPermissions (max_values: None, max_size: Some(16726), added: 19201, mode: MaxEncodedLen)
+	/// Storage: Refungible TotalSupply (r:1 w:0)
+	/// Proof: Refungible TotalSupply (max_values: None, max_size: Some(40), added: 2515, mode: MaxEncodedLen)
 	/// The range of component `b` is `[0, 64]`.
 	fn set_token_properties(b: u32, ) -> Weight {
 		// Proof Size summary in bytes:
-		//  Measured:  `458 + b * (261 ±0)`
-		//  Estimated: `56460`
-		// Minimum execution time: 11_249_000 picoseconds.
-		Weight::from_parts(11_420_000, 56460)
-			// Standard Error: 72_033
-			.saturating_add(Weight::from_parts(7_008_012, 0).saturating_mul(b.into()))
-			.saturating_add(RocksDbWeight::get().reads(2_u64))
+		//  Measured:  `502 + b * (261 ±0)`
+		//  Estimated: `36269`
+		// Minimum execution time: 5_160_000 picoseconds.
+		Weight::from_parts(15_283_437, 36269)
+			// Standard Error: 12_988
+			.saturating_add(Weight::from_parts(2_757_274, 0).saturating_mul(b.into()))
+			.saturating_add(RocksDbWeight::get().reads(3_u64))
+			.saturating_add(RocksDbWeight::get().writes(1_u64))
+	}
+	/// Storage: Common CollectionPropertyPermissions (r:1 w:0)
+	/// Proof: Common CollectionPropertyPermissions (max_values: None, max_size: Some(16726), added: 19201, mode: MaxEncodedLen)
+	/// Storage: Refungible TokenProperties (r:0 w:1)
+	/// Proof: Refungible TokenProperties (max_values: None, max_size: Some(32804), added: 35279, mode: MaxEncodedLen)
+	/// The range of component `b` is `[0, 64]`.
+	fn reset_token_properties(b: u32, ) -> Weight {
+		// Proof Size summary in bytes:
+		//  Measured:  `317 + b * (261 ±0)`
+		//  Estimated: `20191`
+		// Minimum execution time: 3_560_000 picoseconds.
+		Weight::from_parts(6_788_279, 20191)
+			// Standard Error: 5_443
+			.saturating_add(Weight::from_parts(2_641_825, 0).saturating_mul(b.into()))
+			.saturating_add(RocksDbWeight::get().reads(1_u64))
 			.saturating_add(RocksDbWeight::get().writes(1_u64))
 	}
 	/// Storage: Refungible TokenProperties (r:1 w:1)
 	/// Proof: Refungible TokenProperties (max_values: None, max_size: Some(32804), added: 35279, mode: MaxEncodedLen)
 	/// Storage: Common CollectionPropertyPermissions (r:1 w:0)
 	/// Proof: Common CollectionPropertyPermissions (max_values: None, max_size: Some(16726), added: 19201, mode: MaxEncodedLen)
+	/// Storage: Refungible TotalSupply (r:1 w:0)
+	/// Proof: Refungible TotalSupply (max_values: None, max_size: Some(40), added: 2515, mode: MaxEncodedLen)
 	/// The range of component `b` is `[0, 64]`.
 	fn delete_token_properties(b: u32, ) -> Weight {
 		// Proof Size summary in bytes:
-		//  Measured:  `463 + b * (33291 ±0)`
-		//  Estimated: `56460`
-		// Minimum execution time: 11_368_000 picoseconds.
-		Weight::from_parts(11_546_000, 56460)
-			// Standard Error: 85_444
-			.saturating_add(Weight::from_parts(24_644_980, 0).saturating_mul(b.into()))
-			.saturating_add(RocksDbWeight::get().reads(2_u64))
+		//  Measured:  `561 + b * (33291 ±0)`
+		//  Estimated: `36269`
+		// Minimum execution time: 4_650_000 picoseconds.
+		Weight::from_parts(4_820_000, 36269)
+			// Standard Error: 24_035
+			.saturating_add(Weight::from_parts(8_828_039, 0).saturating_mul(b.into()))
+			.saturating_add(RocksDbWeight::get().reads(3_u64))
 			.saturating_add(RocksDbWeight::get().writes(1_u64))
 	}
 	/// Storage: Refungible TotalSupply (r:1 w:1)
@@ -885,10 +906,10 @@
 	/// Proof: Refungible Balance (max_values: None, max_size: Some(89), added: 2564, mode: MaxEncodedLen)
 	fn repartition_item() -> Weight {
 		// Proof Size summary in bytes:
-		//  Measured:  `321`
-		//  Estimated: `7059`
-		// Minimum execution time: 13_586_000 picoseconds.
-		Weight::from_parts(14_489_000, 7059)
+		//  Measured:  `288`
+		//  Estimated: `3554`
+		// Minimum execution time: 7_260_000 picoseconds.
+		Weight::from_parts(7_520_000, 3554)
 			.saturating_add(RocksDbWeight::get().reads(2_u64))
 			.saturating_add(RocksDbWeight::get().writes(2_u64))
 	}
@@ -896,10 +917,10 @@
 	/// Proof: Refungible Balance (max_values: None, max_size: Some(89), added: 2564, mode: MaxEncodedLen)
 	fn token_owner() -> Weight {
 		// Proof Size summary in bytes:
-		//  Measured:  `321`
+		//  Measured:  `288`
 		//  Estimated: `6118`
-		// Minimum execution time: 7_049_000 picoseconds.
-		Weight::from_parts(7_320_000, 6118)
+		// Minimum execution time: 3_200_000 picoseconds.
+		Weight::from_parts(3_360_000, 6118)
 			.saturating_add(RocksDbWeight::get().reads(2_u64))
 	}
 	/// Storage: Refungible CollectionAllowance (r:0 w:1)
@@ -908,8 +929,8 @@
 		// Proof Size summary in bytes:
 		//  Measured:  `0`
 		//  Estimated: `0`
-		// Minimum execution time: 6_432_000 picoseconds.
-		Weight::from_parts(6_642_000, 0)
+		// Minimum execution time: 2_420_000 picoseconds.
+		Weight::from_parts(2_540_000, 0)
 			.saturating_add(RocksDbWeight::get().writes(1_u64))
 	}
 	/// Storage: Refungible CollectionAllowance (r:1 w:0)
@@ -918,18 +939,18 @@
 		// Proof Size summary in bytes:
 		//  Measured:  `4`
 		//  Estimated: `3576`
-		// Minimum execution time: 3_030_000 picoseconds.
-		Weight::from_parts(3_206_000, 3576)
+		// Minimum execution time: 1_370_000 picoseconds.
+		Weight::from_parts(1_470_000, 3576)
 			.saturating_add(RocksDbWeight::get().reads(1_u64))
 	}
 	/// Storage: Refungible TokenProperties (r:1 w:1)
 	/// Proof: Refungible TokenProperties (max_values: None, max_size: Some(32804), added: 35279, mode: MaxEncodedLen)
 	fn repair_item() -> Weight {
 		// Proof Size summary in bytes:
-		//  Measured:  `174`
+		//  Measured:  `120`
 		//  Estimated: `36269`
-		// Minimum execution time: 4_371_000 picoseconds.
-		Weight::from_parts(4_555_000, 36269)
+		// Minimum execution time: 1_350_000 picoseconds.
+		Weight::from_parts(1_420_000, 36269)
 			.saturating_add(RocksDbWeight::get().reads(1_u64))
 			.saturating_add(RocksDbWeight::get().writes(1_u64))
 	}