diff --git a/app/commands/generate_missing_mappings_command.rb b/app/commands/generate_missing_mappings_command.rb index 3434b95c0..32a2c59aa 100644 --- a/app/commands/generate_missing_mappings_command.rb +++ b/app/commands/generate_missing_mappings_command.rb @@ -100,7 +100,7 @@ def execute logger.headline("Qdrant url: #{params[:qdrant_api_base]}") find_unmapped_categories - return if @unmapped_categories.empty? + return if @unmapped_categories_groups.empty? generate_missing_mappings end @@ -114,30 +114,33 @@ def find_unmapped_categories input_version = "shopify/#{params[:shopify_version]}" mappings_by_output = MappingRule.where(input_version:).group_by(&:output_version) - @unmapped_categories = mappings_by_output.filter_map do |output_taxonomy, mappings| + @unmapped_categories_groups = mappings_by_output.filter_map do |output_taxonomy, mappings| found_shopify_ids = Set.new(mappings.map { _1.input.product_category_id.split("/").last }) - unmapped_ids = all_shopify_ids - found_shopify_ids + excluded_category_ids = Set.new( + sys.parse_yaml(mapping_file_path(output_taxonomy))["unmapped_product_category_ids"], + ) + unmapped_ids = all_shopify_ids - found_shopify_ids - excluded_category_ids id_name_map = Category.where(id: unmapped_ids).map { [_1.id, _1.full_name] }.to_h next if id_name_map.empty? { output_taxonomy:, id_name_map: } end - sp.update_title("Found #{@unmapped_categories.sum { _1[:id_name_map].size }} unmapped Shopify categories") + sp.update_title("Found #{@unmapped_categories_groups.sum { _1[:id_name_map].size }} unmapped Shopify categories") end end def generate_missing_mappings frame("Generating missing mappings") do - @unmapped_categories.each do |unmapped_category| - output_taxonomy = unmapped_category[:output_taxonomy] + @unmapped_categories_groups.each do |unmapped_categories| + output_taxonomy = unmapped_categories[:output_taxonomy] frame("Generating mappings to #{output_taxonomy}") do embedding_data = load_embedding_data(output_taxonomy) embedding_collection = output_taxonomy.gsub(%r{[/\-]}, "_") index_embedding_data(embedding_data:, embedding_collection:) - generate_and_evaluate_mappings_for_group(unmapped_category:, embedding_collection:) + generate_and_evaluate_mappings_for_group(unmapped_categories:, embedding_collection:) end end end @@ -188,16 +191,16 @@ def index_embedding_data(embedding_data:, embedding_collection:) end end - def generate_and_evaluate_mappings_for_group(unmapped_category:, embedding_collection:) + def generate_and_evaluate_mappings_for_group(unmapped_categories:, embedding_collection:) mapping_data = nil disagree_messages = [] frame("Generating and evaluating mappings for each Shopify category") do - destination_name_id_map = sys.parse_yaml(full_names_path(unmapped_category)).pluck("full_name", "id").to_h - mapping_data = sys.parse_yaml(mapping_file_path(unmapped_category)) + destination_name_id_map = sys.parse_yaml(full_names_path(unmapped_categories)).pluck("full_name", "id").to_h + mapping_data = sys.parse_yaml(mapping_file_path(unmapped_categories[:output_taxonomy])) # TODO: parallelize - unmapped_category[:id_name_map].each do |source_category_id, source_category_name| + unmapped_categories[:id_name_map].each do |source_category_id, source_category_name| generated_mapping = generate_mapping( source_category_id:, source_category_name:, @@ -210,9 +213,9 @@ def generate_and_evaluate_mappings_for_group(unmapped_category:, embedding_colle end end - spinner("Writing updated mappings to #{mapping_file_path(unmapped_category)}") do + spinner("Writing updated mappings to #{mapping_file_path(unmapped_categories[:output_taxonomy])}") do mapping_data["rules"].sort_by! { Category.id_parts(_1["input"]["product_category_id"]) } - sys.write_file!(mapping_file_path(unmapped_category)) do |file| + sys.write_file!(mapping_file_path(unmapped_categories[:output_taxonomy])) do |file| puts "Updating mapping file: #{file.path}" file.write(mapping_data.to_yaml) end @@ -221,12 +224,12 @@ def generate_and_evaluate_mappings_for_group(unmapped_category:, embedding_colle write_disagree_messages(disagree_messages) if disagree_messages.any? end - def full_names_path(unmapped_category) - "data/integrations/#{unmapped_category[:output_taxonomy]}/full_names.yml" + def full_names_path(unmapped_categories) + "data/integrations/#{unmapped_categories[:output_taxonomy]}/full_names.yml" end - def mapping_file_path(unmapped_category) - "data/integrations/#{unmapped_category[:output_taxonomy]}/mappings/from_shopify.yml" + def mapping_file_path(output_taxonomy) + "data/integrations/#{output_taxonomy}/mappings/from_shopify.yml" end def generate_mapping(source_category_id:, source_category_name:, embedding_collection:, destination_name_id_map:) diff --git a/data/integrations/README.md b/data/integrations/README.md index 4bae894ac..bbd3f9d59 100644 --- a/data/integrations/README.md +++ b/data/integrations/README.md @@ -41,10 +41,6 @@ The primary concern of integrations are mappings. Mappings are a set of rules th #### Use tooling to generate taxonomy mappings Automate your taxonomy mapping with this tool. Make sure `podman` is installed using `homebrew`, then run `make generate_mappings OPENAI_API_BASE= OPENAI_API_KEY=` to create mappings. It uses AI to assist in generating accurate mappings and reducing manual effort. - -#### Use tooling to generate taxonomy mappings -Automate your taxonomy mapping with this tool. Install dependencies using `make setup-mapping-generation-tool`, then run `bin/generate_missing_mappings` to create mappings. It uses AI to assist in generating accurate mappings and reducing manual effort. - #### Examples of mapping rules ```yaml diff --git a/data/integrations/google/2021-09-21/mappings/from_shopify.yml b/data/integrations/google/2021-09-21/mappings/from_shopify.yml index a55ea3a8b..d5b819544 100644 --- a/data/integrations/google/2021-09-21/mappings/from_shopify.yml +++ b/data/integrations/google/2021-09-21/mappings/from_shopify.yml @@ -137,6 +137,816 @@ rules: output: product_category_id: - '5322' +- input: + product_category_id: aa-1-2 + output: + product_category_id: + - '182' +- input: + product_category_id: aa-1-2-1 + output: + product_category_id: + - '5408' +- input: + product_category_id: aa-1-2-1-2 + output: + product_category_id: + - '5408' +- input: + product_category_id: aa-1-2-1-3 + output: + product_category_id: + - '5408' +- input: + product_category_id: aa-1-2-1-4 + output: + product_category_id: + - '5408' +- input: + product_category_id: aa-1-2-1-5 + output: + product_category_id: + - '5408' +- input: + product_category_id: aa-1-2-1-7 + output: + product_category_id: + - '5408' +- input: + product_category_id: aa-1-2-1-8 + output: + product_category_id: + - '5408' +- input: + product_category_id: aa-1-2-1-11 + output: + product_category_id: + - '5408' +- input: + product_category_id: aa-1-2-1-12 + output: + product_category_id: + - '5408' +- input: + product_category_id: aa-1-2-1-13 + output: + product_category_id: + - '5408' +- input: + product_category_id: aa-1-2-1-14 + output: + product_category_id: + - '5408' +- input: + product_category_id: aa-1-2-2 + output: + product_category_id: + - '5549' +- input: + product_category_id: aa-1-2-3 + output: + product_category_id: + - '5424' +- input: + product_category_id: aa-1-2-4 + output: + product_category_id: + - '5425' +- input: + product_category_id: aa-1-2-4-17 + output: + product_category_id: + - '5425' +- input: + product_category_id: aa-1-2-4-17-1 + output: + product_category_id: + - '5425' +- input: + product_category_id: aa-1-2-4-17-2 + output: + product_category_id: + - '5425' +- input: + product_category_id: aa-1-2-4-17-3 + output: + product_category_id: + - '5425' +- input: + product_category_id: aa-1-2-4-17-4 + output: + product_category_id: + - '5425' +- input: + product_category_id: aa-1-2-4-17-5 + output: + product_category_id: + - '5425' +- input: + product_category_id: aa-1-2-4-17-6 + output: + product_category_id: + - '5425' +- input: + product_category_id: aa-1-2-4-17-7 + output: + product_category_id: + - '5425' +- input: + product_category_id: aa-1-2-4-17-8 + output: + product_category_id: + - '5425' +- input: + product_category_id: aa-1-2-4-17-9 + output: + product_category_id: + - '5425' +- input: + product_category_id: aa-1-2-4-17-10 + output: + product_category_id: + - '5425' +- input: + product_category_id: aa-1-2-4-17-11 + output: + product_category_id: + - '5425' +- input: + product_category_id: aa-1-2-4-17-12 + output: + product_category_id: + - '5425' +- input: + product_category_id: aa-1-2-4-17-13 + output: + product_category_id: + - '5425' +- input: + product_category_id: aa-1-2-4-17-14 + output: + product_category_id: + - '5425' +- input: + product_category_id: aa-1-2-4-17-15 + output: + product_category_id: + - '5425' +- input: + product_category_id: aa-1-2-4-17-16 + output: + product_category_id: + - '5425' +- input: + product_category_id: aa-1-2-4-18 + output: + product_category_id: + - '5425' +- input: + product_category_id: aa-1-2-5 + output: + product_category_id: + - '5622' +- input: + product_category_id: aa-1-2-6 + output: + product_category_id: + - '5412' +- input: + product_category_id: aa-1-2-7 + output: + product_category_id: + - '5423' +- input: + product_category_id: aa-1-2-8 + output: + product_category_id: + - '5409' +- input: + product_category_id: aa-1-2-8-2 + output: + product_category_id: + - '5409' +- input: + product_category_id: aa-1-2-8-3 + output: + product_category_id: + - '5409' +- input: + product_category_id: aa-1-2-8-4 + output: + product_category_id: + - '5409' +- input: + product_category_id: aa-1-2-8-9 + output: + product_category_id: + - '5409' +- input: + product_category_id: aa-1-2-8-10 + output: + product_category_id: + - '5409' +- input: + product_category_id: aa-1-2-8-13 + output: + product_category_id: + - '5409' +- input: + product_category_id: aa-1-2-8-14 + output: + product_category_id: + - '5409' +- input: + product_category_id: aa-1-2-8-15 + output: + product_category_id: + - '5409' +- input: + product_category_id: aa-1-2-8-16 + output: + product_category_id: + - '5409' +- input: + product_category_id: aa-1-2-8-17 + output: + product_category_id: + - '5409' +- input: + product_category_id: aa-1-2-8-22 + output: + product_category_id: + - '5409' +- input: + product_category_id: aa-1-2-8-23 + output: + product_category_id: + - '5409' +- input: + product_category_id: aa-1-2-8-24 + output: + product_category_id: + - '5409' +- input: + product_category_id: aa-1-2-9 + output: + product_category_id: + - '5410' +- input: + product_category_id: aa-1-2-9-2 + output: + product_category_id: + - '5410' +- input: + product_category_id: aa-1-2-9-3 + output: + product_category_id: + - '5410' +- input: + product_category_id: aa-1-2-9-4 + output: + product_category_id: + - '5410' +- input: + product_category_id: aa-1-2-9-5 + output: + product_category_id: + - '5410' +- input: + product_category_id: aa-1-2-9-6 + output: + product_category_id: + - '5410' +- input: + product_category_id: aa-1-2-9-7 + output: + product_category_id: + - '5410' +- input: + product_category_id: aa-1-2-10 + output: + product_category_id: + - '5411' +- input: + product_category_id: aa-1-2-11 + output: + product_category_id: + - '5621' +- input: + product_category_id: aa-1-2-11-1 + output: + product_category_id: + - '5621' +- input: + product_category_id: aa-1-2-11-2 + output: + product_category_id: + - '5621' +- input: + product_category_id: aa-1-2-11-3 + output: + product_category_id: + - '5621' +- input: + product_category_id: aa-1-2-11-4 + output: + product_category_id: + - '5621' +- input: + product_category_id: aa-1-2-11-5 + output: + product_category_id: + - '5621' +- input: + product_category_id: aa-1-3 + output: + product_category_id: + - '213' +- input: + product_category_id: aa-1-3-1 + output: + product_category_id: + - '1807' +- input: + product_category_id: aa-1-3-2 + output: + product_category_id: + - '2562' +- input: + product_category_id: aa-1-3-2-1 + output: + product_category_id: + - '2562' +- input: + product_category_id: aa-1-3-2-2 + output: + product_category_id: + - '2562' +- input: + product_category_id: aa-1-3-2-3 + output: + product_category_id: + - '2562' +- input: + product_category_id: aa-1-3-2-4 + output: + product_category_id: + - '2562' +- input: + product_category_id: aa-1-3-2-5 + output: + product_category_id: + - '2562' +- input: + product_category_id: aa-1-3-3 + output: + product_category_id: + - '2745' +- input: + product_category_id: aa-1-4 + output: + product_category_id: + - '2271' +- input: + product_category_id: aa-1-5 + output: + product_category_id: + - '213' +- input: + product_category_id: aa-1-5-1 + output: + product_category_id: + - '1807' +- input: + product_category_id: aa-1-5-2 + output: + product_category_id: + - '2562' +- input: + product_category_id: aa-1-5-2-1 + output: + product_category_id: + - '211' +- input: + product_category_id: aa-1-5-2-2 + output: + product_category_id: + - '2562' +- input: + product_category_id: aa-1-5-2-3 + output: + product_category_id: + - '2562' +- input: + product_category_id: aa-1-5-2-4 + output: + product_category_id: + - '2562' +- input: + product_category_id: aa-1-5-2-5 + output: + product_category_id: + - '2562' +- input: + product_category_id: aa-1-5-2-6 + output: + product_category_id: + - '2562' +- input: + product_category_id: aa-1-5-2-7 + output: + product_category_id: + - '2562' +- input: + product_category_id: aa-1-5-2-8 + output: + product_category_id: + - '2562' +- input: + product_category_id: aa-1-5-3 + output: + product_category_id: + - '2745' +- input: + product_category_id: aa-1-6 + output: + product_category_id: + - '1772' +- input: + product_category_id: aa-1-6-1 + output: + product_category_id: + - '1772' +- input: + product_category_id: aa-1-6-2 + output: + product_category_id: + - '7207' +- input: + product_category_id: aa-1-6-2-1 + output: + product_category_id: + - '7208' +- input: + product_category_id: aa-1-6-2-2 + output: + product_category_id: + - '7211' +- input: + product_category_id: aa-1-6-2-3 + output: + product_category_id: + - '7210' +- input: + product_category_id: aa-1-6-2-4 + output: + product_category_id: + - '7209' +- input: + product_category_id: aa-1-6-3 + output: + product_category_id: + - '214' +- input: + product_category_id: aa-1-6-4 + output: + product_category_id: + - '1772' +- input: + product_category_id: aa-1-6-6 + output: + product_category_id: + - '215' +- input: + product_category_id: aa-1-6-7 + output: + product_category_id: + - '5327' +- input: + product_category_id: aa-1-6-8 + output: + product_category_id: + - '2563' +- input: + product_category_id: aa-1-6-8-1 + output: + product_category_id: + - '2160' +- input: + product_category_id: aa-1-6-8-2 + output: + product_category_id: + - '1675' +- input: + product_category_id: aa-1-6-8-3 + output: + product_category_id: + - '2563' +- input: + product_category_id: aa-1-6-9 + output: + product_category_id: + - '2963' +- input: + product_category_id: aa-1-6-10 + output: + product_category_id: + - '1578' +- input: + product_category_id: aa-1-6-10-1 + output: + product_category_id: + - '1578' +- input: + product_category_id: aa-1-6-10-2 + output: + product_category_id: + - '1578' +- input: + product_category_id: aa-1-6-10-3 + output: + product_category_id: + - '1578' +- input: + product_category_id: aa-1-6-10-4 + output: + product_category_id: + - '1578' +- input: + product_category_id: aa-1-6-10-5 + output: + product_category_id: + - '1578' +- input: + product_category_id: aa-1-6-11 + output: + product_category_id: + - '2562' +- input: + product_category_id: aa-1-6-11-1 + output: + product_category_id: + - '2562' +- input: + product_category_id: aa-1-6-11-2 + output: + product_category_id: + - '2562' +- input: + product_category_id: aa-1-6-11-3 + output: + product_category_id: + - '2562' +- input: + product_category_id: aa-1-6-11-4 + output: + product_category_id: + - '2562' +- input: + product_category_id: aa-1-6-11-5 + output: + product_category_id: + - '2562' +- input: + product_category_id: aa-1-6-11-6 + output: + product_category_id: + - '2562' +- input: + product_category_id: aa-1-6-12 + output: + product_category_id: + - '2745' +- input: + product_category_id: aa-1-6-13 + output: + product_category_id: + - '5834' +- input: + product_category_id: aa-1-7 + output: + product_category_id: + - '1604' +- input: + product_category_id: aa-1-7-1 + output: + product_category_id: + - '214' +- input: + product_category_id: aa-1-7-2 + output: + product_category_id: + - '2271' +- input: + product_category_id: aa-1-7-3 + output: + product_category_id: + - '5182' +- input: + product_category_id: aa-1-7-4 + output: + product_category_id: + - '204' +- input: + product_category_id: aa-1-7-4-2 + output: + product_category_id: + - '204' +- input: + product_category_id: aa-1-7-4-3 + output: + product_category_id: + - '204' +- input: + product_category_id: aa-1-7-4-4 + output: + product_category_id: + - '204' +- input: + product_category_id: aa-1-7-4-5 + output: + product_category_id: + - '204' +- input: + product_category_id: aa-1-7-4-7 + output: + product_category_id: + - '204' +- input: + product_category_id: aa-1-7-4-8 + output: + product_category_id: + - '204' +- input: + product_category_id: aa-1-7-4-11 + output: + product_category_id: + - '5344' +- input: + product_category_id: aa-1-7-4-12 + output: + product_category_id: + - '204' +- input: + product_category_id: aa-1-7-5 + output: + product_category_id: + - '1581' +- input: + product_category_id: aa-1-7-6 + output: + product_category_id: + - '208' +- input: + product_category_id: aa-1-7-7 + output: + product_category_id: + - '211' +- input: + product_category_id: aa-1-7-7-2 + output: + product_category_id: + - '211' +- input: + product_category_id: aa-1-7-7-4 + output: + product_category_id: + - '211' +- input: + product_category_id: aa-1-7-7-5 + output: + product_category_id: + - '211' +- input: + product_category_id: aa-1-7-7-6 + output: + product_category_id: + - '211' +- input: + product_category_id: aa-1-7-7-14 + output: + product_category_id: + - '211' +- input: + product_category_id: aa-1-7-7-20 + output: + product_category_id: + - '211' +- input: + product_category_id: aa-1-7-7-21 + output: + product_category_id: + - '211' +- input: + product_category_id: aa-1-7-8 + output: + product_category_id: + - '212' +- input: + product_category_id: aa-1-7-8-1 + output: + product_category_id: + - '212' +- input: + product_category_id: aa-1-7-8-2 + output: + product_category_id: + - '212' +- input: + product_category_id: aa-1-7-8-3 + output: + product_category_id: + - '212' +- input: + product_category_id: aa-1-7-8-4 + output: + product_category_id: + - '212' +- input: + product_category_id: aa-1-7-8-5 + output: + product_category_id: + - '212' +- input: + product_category_id: aa-1-7-8-7 + output: + product_category_id: + - '212' +- input: + product_category_id: aa-1-7-8-8 + output: + product_category_id: + - '212' +- input: + product_category_id: aa-1-7-8-11 + output: + product_category_id: + - '212' +- input: + product_category_id: aa-1-8 + output: + product_category_id: + - '213' +- input: + product_category_id: aa-1-8-1 + output: + product_category_id: + - '1807' +- input: + product_category_id: aa-1-8-2 + output: + product_category_id: + - '2745' +- input: + product_category_id: aa-1-8-3 + output: + product_category_id: + - '2562' +- input: + product_category_id: aa-1-8-3-2 + output: + product_category_id: + - '2562' +- input: + product_category_id: aa-1-8-3-3 + output: + product_category_id: + - '2562' +- input: + product_category_id: aa-1-8-3-4 + output: + product_category_id: + - '2562' +- input: + product_category_id: aa-1-8-3-5 + output: + product_category_id: + - '2562' +- input: + product_category_id: aa-1-8-3-6 + output: + product_category_id: + - '2562' +- input: + product_category_id: aa-1-8-3-7 + output: + product_category_id: + - '2562' +- input: + product_category_id: aa-1-8-3-8 + output: + product_category_id: + - '2562' +- input: + product_category_id: aa-1-8-3-9 + output: + product_category_id: + - '2562' +- input: + product_category_id: aa-1-9 + output: + product_category_id: + - '5182' - input: product_category_id: aa-1-10 output: @@ -158,77 +968,77 @@ rules: product_category_id: - '5598' - input: - product_category_id: aa-1-10-2-10 + product_category_id: aa-1-10-2-2 output: product_category_id: - '5598' - input: - product_category_id: aa-1-10-2-11 + product_category_id: aa-1-10-2-3 output: product_category_id: - '5598' - input: - product_category_id: aa-1-10-2-12 + product_category_id: aa-1-10-2-5 output: product_category_id: - '5598' - input: - product_category_id: aa-1-10-2-13 + product_category_id: aa-1-10-2-6 output: product_category_id: - '5598' - input: - product_category_id: aa-1-10-2-14 + product_category_id: aa-1-10-2-7 output: product_category_id: - '5598' - input: - product_category_id: aa-1-10-2-15 + product_category_id: aa-1-10-2-8 output: product_category_id: - '5598' - input: - product_category_id: aa-1-10-2-16 + product_category_id: aa-1-10-2-9 output: product_category_id: - '5598' - input: - product_category_id: aa-1-10-2-17 + product_category_id: aa-1-10-2-10 output: product_category_id: - '5598' - input: - product_category_id: aa-1-10-2-2 + product_category_id: aa-1-10-2-11 output: product_category_id: - '5598' - input: - product_category_id: aa-1-10-2-3 + product_category_id: aa-1-10-2-12 output: product_category_id: - '5598' - input: - product_category_id: aa-1-10-2-5 + product_category_id: aa-1-10-2-13 output: product_category_id: - '5598' - input: - product_category_id: aa-1-10-2-6 + product_category_id: aa-1-10-2-14 output: product_category_id: - '5598' - input: - product_category_id: aa-1-10-2-7 + product_category_id: aa-1-10-2-15 output: product_category_id: - '5598' - input: - product_category_id: aa-1-10-2-8 + product_category_id: aa-1-10-2-16 output: product_category_id: - '5598' - input: - product_category_id: aa-1-10-2-9 + product_category_id: aa-1-10-2-17 output: product_category_id: - '5598' @@ -267,11 +1077,6 @@ rules: output: product_category_id: - '204' -- input: - product_category_id: aa-1-12-11 - output: - product_category_id: - - '204' - input: product_category_id: aa-1-12-2 output: @@ -303,17 +1108,17 @@ rules: product_category_id: - '204' - input: - product_category_id: aa-1-13 + product_category_id: aa-1-12-11 output: product_category_id: - - '212' + - '204' - input: - product_category_id: aa-1-13-1 + product_category_id: aa-1-13 output: product_category_id: - '212' - input: - product_category_id: aa-1-13-11 + product_category_id: aa-1-13-1 output: product_category_id: - '212' @@ -352,6 +1157,11 @@ rules: output: product_category_id: - '212' +- input: + product_category_id: aa-1-13-11 + output: + product_category_id: + - '212' - input: product_category_id: aa-1-14 output: @@ -482,11 +1292,6 @@ rules: output: product_category_id: - '209' -- input: - product_category_id: aa-1-18-10 - output: - product_category_id: - - '209' - input: product_category_id: aa-1-18-2 output: @@ -527,6 +1332,11 @@ rules: output: product_category_id: - '209' +- input: + product_category_id: aa-1-18-10 + output: + product_category_id: + - '209' - input: product_category_id: aa-1-19 output: @@ -548,1850 +1358,1870 @@ rules: product_category_id: - '1580' - input: - product_category_id: aa-1-2 + product_category_id: aa-1-20 output: product_category_id: - - '182' + - '211' - input: - product_category_id: aa-1-2-1 + product_category_id: aa-1-20-2 output: product_category_id: - - '5408' + - '211' - input: - product_category_id: aa-1-2-1-11 + product_category_id: aa-1-20-3 output: product_category_id: - - '5408' + - '211' - input: - product_category_id: aa-1-2-1-12 + product_category_id: aa-1-20-4 output: product_category_id: - - '5408' + - '211' - input: - product_category_id: aa-1-2-1-13 + product_category_id: aa-1-20-5 output: product_category_id: - - '5408' + - '211' - input: - product_category_id: aa-1-2-1-14 + product_category_id: aa-1-20-6 output: product_category_id: - - '5408' + - '211' - input: - product_category_id: aa-1-2-1-2 + product_category_id: aa-1-20-7 output: product_category_id: - - '5408' + - '211' - input: - product_category_id: aa-1-2-1-3 + product_category_id: aa-1-20-12 output: product_category_id: - - '5408' + - '211' - input: - product_category_id: aa-1-2-1-4 + product_category_id: aa-1-20-17 output: product_category_id: - - '5408' + - '211' - input: - product_category_id: aa-1-2-1-5 + product_category_id: aa-1-20-22 output: product_category_id: - - '5408' + - '211' - input: - product_category_id: aa-1-2-1-7 + product_category_id: aa-1-20-23 output: product_category_id: - - '5408' + - '211' - input: - product_category_id: aa-1-2-1-8 + product_category_id: aa-1-20-24 output: product_category_id: - - '5408' + - '211' - input: - product_category_id: aa-1-2-10 + product_category_id: aa-1-21 output: product_category_id: - - '5411' + - '2306' - input: - product_category_id: aa-1-2-11 + product_category_id: aa-1-21-1 output: product_category_id: - - '5621' + - '5484' - input: - product_category_id: aa-1-2-11-1 + product_category_id: aa-1-21-2 output: product_category_id: - - '5621' + - '5878' - input: - product_category_id: aa-1-2-11-2 + product_category_id: aa-1-21-3 output: product_category_id: - - '5621' + - '7235' - input: - product_category_id: aa-1-2-11-3 + product_category_id: aa-1-21-4 output: product_category_id: - - '5621' + - '5949' - input: - product_category_id: aa-1-2-11-4 + product_category_id: aa-1-21-5 output: product_category_id: - - '5621' + - '206' - input: - product_category_id: aa-1-2-11-5 + product_category_id: aa-1-21-6 output: product_category_id: - - '5621' + - '3414' - input: - product_category_id: aa-1-2-2 + product_category_id: aa-1-21-7 output: product_category_id: - - '5549' + - '3598' - input: - product_category_id: aa-1-2-3 + product_category_id: aa-1-21-8 output: product_category_id: - - '5424' + - '2292' - input: - product_category_id: aa-1-2-4 + product_category_id: aa-1-22 output: product_category_id: - - '5425' + - '5441' - input: - product_category_id: aa-1-2-4-17 + product_category_id: aa-1-22-1 output: product_category_id: - - '5425' + - '5330' - input: - product_category_id: aa-1-2-4-17-1 + product_category_id: aa-1-22-2 output: product_category_id: - - '5425' + - '5329' - input: - product_category_id: aa-1-2-4-17-10 + product_category_id: aa-1-23 output: product_category_id: - - '5425' + - '5388' - input: - product_category_id: aa-1-2-4-17-11 + product_category_id: aa-1-23-1 output: product_category_id: - - '5425' + - '5343' - input: - product_category_id: aa-1-2-4-17-12 + product_category_id: aa-1-23-2 output: product_category_id: - - '5425' + - '8248' - input: - product_category_id: aa-1-2-4-17-13 + product_category_id: aa-2 output: product_category_id: - - '5425' + - '167' - input: - product_category_id: aa-1-2-4-17-14 + product_category_id: aa-2-1 output: product_category_id: - - '5425' + - '5942' - input: - product_category_id: aa-1-2-4-17-15 + product_category_id: aa-2-2 output: product_category_id: - - '5425' + - '5422' - input: - product_category_id: aa-1-2-4-17-16 + product_category_id: aa-2-2-1 output: product_category_id: - - '5425' + - '5623' - input: - product_category_id: aa-1-2-4-17-2 + product_category_id: aa-2-2-2 output: product_category_id: - - '5425' + - '5624' - input: - product_category_id: aa-1-2-4-17-3 + product_category_id: aa-2-2-3 output: product_category_id: - - '5425' + - '5625' - input: - product_category_id: aa-1-2-4-17-4 + product_category_id: aa-2-2-4 output: product_category_id: - - '5425' + - '5626' - input: - product_category_id: aa-1-2-4-17-5 + product_category_id: aa-2-3 output: product_category_id: - - '5425' + - '1786' - input: - product_category_id: aa-1-2-4-17-6 + product_category_id: aa-2-4 output: product_category_id: - - '5425' + - '168' - input: - product_category_id: aa-1-2-4-17-7 + product_category_id: aa-2-5 output: product_category_id: - - '5425' + - '3913' - input: - product_category_id: aa-1-2-4-17-8 + product_category_id: aa-2-6 output: product_category_id: - - '5425' + - '169' - input: - product_category_id: aa-1-2-4-17-9 + product_category_id: aa-2-7 output: product_category_id: - - '5425' + - '5443' - input: - product_category_id: aa-1-2-4-18 + product_category_id: aa-2-8 output: product_category_id: - - '5425' + - '6985' - input: - product_category_id: aa-1-2-5 + product_category_id: aa-2-9 output: product_category_id: - - '5622' + - '6984' - input: - product_category_id: aa-1-2-6 + product_category_id: aa-2-10 output: product_category_id: - - '5412' + - '193' - input: - product_category_id: aa-1-2-7 + product_category_id: aa-2-11 output: product_category_id: - - '5423' + - '5114' - input: - product_category_id: aa-1-2-8 + product_category_id: aa-2-12 output: product_category_id: - - '5409' + - '6238' - input: - product_category_id: aa-1-2-8-10 + product_category_id: aa-2-13 output: product_category_id: - - '5409' + - '170' - input: - product_category_id: aa-1-2-8-13 + product_category_id: aa-2-14 output: product_category_id: - - '5409' + - '171' - input: - product_category_id: aa-1-2-8-14 + product_category_id: aa-2-14-1 output: product_category_id: - - '5409' + - '8451' - input: - product_category_id: aa-1-2-8-15 + product_category_id: aa-2-14-2 output: product_category_id: - - '5409' + - '2477' - input: - product_category_id: aa-1-2-8-16 + product_category_id: aa-2-14-3 output: product_category_id: - - '5409' + - '4057' - input: - product_category_id: aa-1-2-8-17 + product_category_id: aa-2-14-4 output: product_category_id: - - '5409' + - '1948' - input: - product_category_id: aa-1-2-8-2 + product_category_id: aa-2-14-5 output: product_category_id: - - '5409' + - '6183' - input: - product_category_id: aa-1-2-8-22 + product_category_id: aa-2-14-6 output: product_category_id: - - '5409' + - '502988' - input: - product_category_id: aa-1-2-8-23 + product_category_id: aa-2-14-7 output: product_category_id: - - '5409' + - '5915' - input: - product_category_id: aa-1-2-8-24 + product_category_id: aa-2-14-8 output: product_category_id: - - '5409' + - '1662' - input: - product_category_id: aa-1-2-8-3 + product_category_id: aa-2-14-9 output: product_category_id: - - '5409' + - '1483' - input: - product_category_id: aa-1-2-8-4 + product_category_id: aa-2-14-10 output: product_category_id: - - '5409' + - '5914' - input: - product_category_id: aa-1-2-8-9 + product_category_id: aa-2-14-11 output: product_category_id: - - '5409' + - '7305' - input: - product_category_id: aa-1-2-9 + product_category_id: aa-2-14-12 output: product_category_id: - - '5410' + - '181' - input: - product_category_id: aa-1-2-9-2 + product_category_id: aa-2-15 output: product_category_id: - - '5410' + - '7133' - input: - product_category_id: aa-1-2-9-3 + product_category_id: aa-2-16 output: product_category_id: - - '5410' + - '5207' - input: - product_category_id: aa-1-2-9-4 + product_category_id: aa-2-17 output: product_category_id: - - '5410' + - '173' - input: - product_category_id: aa-1-2-9-5 + product_category_id: aa-2-17-1 output: product_category_id: - - '5410' + - '173' - input: - product_category_id: aa-1-2-9-6 + product_category_id: aa-2-17-2 output: product_category_id: - - '5410' + - '173' - input: - product_category_id: aa-1-2-9-7 + product_category_id: aa-2-17-3 output: product_category_id: - - '5410' + - '173' - input: - product_category_id: aa-1-20 + product_category_id: aa-2-17-4 output: product_category_id: - - '211' + - '173' - input: - product_category_id: aa-1-20-12 + product_category_id: aa-2-17-5 output: product_category_id: - - '211' + - '173' - input: - product_category_id: aa-1-20-17 + product_category_id: aa-2-17-6 output: product_category_id: - - '211' + - '173' +- input: + product_category_id: aa-2-17-7 + output: + product_category_id: + - '173' +- input: + product_category_id: aa-2-17-8 + output: + product_category_id: + - '173' +- input: + product_category_id: aa-2-17-9 + output: + product_category_id: + - '173' +- input: + product_category_id: aa-2-17-10 + output: + product_category_id: + - '173' - input: - product_category_id: aa-1-20-2 + product_category_id: aa-2-17-11 output: product_category_id: - - '211' + - '173' - input: - product_category_id: aa-1-20-22 + product_category_id: aa-2-17-12 output: product_category_id: - - '211' + - '173' - input: - product_category_id: aa-1-20-23 + product_category_id: aa-2-17-13 output: product_category_id: - - '211' + - '173' - input: - product_category_id: aa-1-20-24 + product_category_id: aa-2-17-14 output: product_category_id: - - '211' + - '173' - input: - product_category_id: aa-1-20-3 + product_category_id: aa-2-17-15 output: product_category_id: - - '211' + - '173' - input: - product_category_id: aa-1-20-4 + product_category_id: aa-2-17-16 output: product_category_id: - - '211' + - '173' - input: - product_category_id: aa-1-20-5 + product_category_id: aa-2-18 output: product_category_id: - - '211' + - '2020' - input: - product_category_id: aa-1-20-6 + product_category_id: aa-2-18-1 output: product_category_id: - - '211' + - '7054' - input: - product_category_id: aa-1-20-7 + product_category_id: aa-2-18-2 output: product_category_id: - - '211' + - '1922' - input: - product_category_id: aa-1-21 + product_category_id: aa-2-18-3 output: product_category_id: - - '2306' + - '5939' - input: - product_category_id: aa-1-21-1 + product_category_id: aa-2-19 output: product_category_id: - - '5484' + - '5941' - input: - product_category_id: aa-1-21-2 + product_category_id: aa-2-20 output: product_category_id: - - '5878' + - '6268' - input: - product_category_id: aa-1-21-3 + product_category_id: aa-2-21 output: product_category_id: - - '7235' + - '502987' - input: - product_category_id: aa-1-21-4 + product_category_id: aa-2-22 output: product_category_id: - - '5949' + - '7230' - input: - product_category_id: aa-1-21-5 + product_category_id: aa-2-23 output: product_category_id: - - '206' + - '176' - input: - product_category_id: aa-1-21-6 + product_category_id: aa-2-24 output: product_category_id: - - '3414' + - '4179' - input: - product_category_id: aa-1-21-7 + product_category_id: aa-2-25 output: product_category_id: - - '3598' + - '499972' - input: - product_category_id: aa-1-21-8 + product_category_id: aa-2-26 output: product_category_id: - - '2292' + - '177' - input: - product_category_id: aa-1-22 + product_category_id: aa-2-27 output: product_category_id: - - '5441' + - '178' - input: - product_category_id: aa-1-22-1 + product_category_id: aa-2-28 output: product_category_id: - - '5330' + - '179' - input: - product_category_id: aa-1-22-2 + product_category_id: aa-2-29 output: product_category_id: - - '5329' + - '180' - input: - product_category_id: aa-1-23 + product_category_id: aa-2-30 output: product_category_id: - - '5388' + - '1893' - input: - product_category_id: aa-1-23-1 + product_category_id: aa-2-31 output: product_category_id: - - '5343' + - '5390' - input: - product_category_id: aa-1-23-2 + product_category_id: aa-3 output: product_category_id: - - '8248' + - '184' - input: - product_category_id: aa-1-3 + product_category_id: aa-3-1 output: product_category_id: - - '213' + - '5192' - input: - product_category_id: aa-1-3-1 + product_category_id: aa-3-2 output: product_category_id: - - '1807' + - '5387' - input: - product_category_id: aa-1-3-2 + product_category_id: aa-3-3 output: product_category_id: - - '2562' + - '5193' - input: - product_category_id: aa-1-3-2-1 + product_category_id: aa-3-3-1 output: product_category_id: - - '2562' + - '5193' - input: - product_category_id: aa-1-3-2-2 + product_category_id: aa-3-3-2 output: product_category_id: - - '2562' + - '5193' - input: - product_category_id: aa-1-3-2-3 + product_category_id: aa-3-4 output: product_category_id: - - '2562' + - '5194' - input: - product_category_id: aa-1-3-2-4 + product_category_id: aa-4 output: product_category_id: - - '2562' + - '6552' - input: - product_category_id: aa-1-3-2-5 + product_category_id: aa-4-1 output: product_category_id: - - '2562' + - '175' - input: - product_category_id: aa-1-3-3 + product_category_id: aa-4-2 output: product_category_id: - - '2745' + - '6277' - input: - product_category_id: aa-1-4 + product_category_id: aa-4-3 output: product_category_id: - - '2271' + - '5841' - input: - product_category_id: aa-1-5 + product_category_id: aa-5 output: product_category_id: - - '213' + - '6551' - input: - product_category_id: aa-1-5-1 + product_category_id: aa-5-1 output: product_category_id: - - '1807' + - '6170' - input: - product_category_id: aa-1-5-2 + product_category_id: aa-5-2 output: product_category_id: - - '2562' + - '6169' - input: - product_category_id: aa-1-5-2-1 + product_category_id: aa-5-3 output: product_category_id: - - '211' + - '6460' - input: - product_category_id: aa-1-5-2-2 + product_category_id: aa-5-4 output: product_category_id: - - '2562' + - '3032' - input: - product_category_id: aa-1-5-2-3 + product_category_id: aa-5-4-1 output: product_category_id: - - '2562' + - '3032' - input: - product_category_id: aa-1-5-2-4 + product_category_id: aa-5-4-2 output: product_category_id: - - '2562' + - '3032' - input: - product_category_id: aa-1-5-2-5 + product_category_id: aa-5-4-3 output: product_category_id: - - '2562' + - '3032' - input: - product_category_id: aa-1-5-2-6 + product_category_id: aa-5-4-4 output: product_category_id: - - '2562' + - '3032' - input: - product_category_id: aa-1-5-2-7 + product_category_id: aa-5-4-5 output: product_category_id: - - '2562' + - '3032' - input: - product_category_id: aa-1-5-2-8 + product_category_id: aa-5-4-6 output: product_category_id: - - '2562' + - '3032' - input: - product_category_id: aa-1-5-3 + product_category_id: aa-5-4-7 output: product_category_id: - - '2745' + - '3032' - input: - product_category_id: aa-1-6 + product_category_id: aa-5-4-8 output: product_category_id: - - '1772' + - '3032' - input: - product_category_id: aa-1-6-1 + product_category_id: aa-5-4-9 output: product_category_id: - - '1772' + - '3032' - input: - product_category_id: aa-1-6-10 + product_category_id: aa-5-4-10 output: product_category_id: - - '1578' + - '3032' - input: - product_category_id: aa-1-6-10-1 + product_category_id: aa-5-4-11 output: product_category_id: - - '1578' + - '3032' - input: - product_category_id: aa-1-6-10-2 + product_category_id: aa-5-4-12 output: product_category_id: - - '1578' + - '3032' - input: - product_category_id: aa-1-6-10-3 + product_category_id: aa-5-4-13 output: product_category_id: - - '1578' + - '3032' - input: - product_category_id: aa-1-6-10-4 + product_category_id: aa-5-4-14 output: product_category_id: - - '1578' + - '3032' - input: - product_category_id: aa-1-6-10-5 + product_category_id: aa-5-4-15 output: product_category_id: - - '1578' + - '3032' - input: - product_category_id: aa-1-6-11 + product_category_id: aa-5-4-16 output: product_category_id: - - '2562' + - '3032' - input: - product_category_id: aa-1-6-11-1 + product_category_id: aa-5-4-17 output: product_category_id: - - '2562' + - '3032' - input: - product_category_id: aa-1-6-11-2 + product_category_id: aa-5-4-18 output: product_category_id: - - '2562' + - '3032' - input: - product_category_id: aa-1-6-11-3 + product_category_id: aa-5-4-19 output: product_category_id: - - '2562' + - '3032' - input: - product_category_id: aa-1-6-11-4 + product_category_id: aa-5-4-20 output: product_category_id: - - '2562' + - '3032' - input: - product_category_id: aa-1-6-11-5 + product_category_id: aa-5-5 output: product_category_id: - - '2562' + - '2668' - input: - product_category_id: aa-1-6-11-6 + product_category_id: aa-5-5-2 output: product_category_id: - - '2562' + - '2668' - input: - product_category_id: aa-1-6-12 + product_category_id: aa-5-5-3 output: product_category_id: - - '2745' + - '2668' - input: - product_category_id: aa-1-6-13 + product_category_id: aa-5-5-4 output: product_category_id: - - '5834' + - '2668' - input: - product_category_id: aa-1-6-2 + product_category_id: aa-5-5-5 output: product_category_id: - - '7207' + - '2668' - input: - product_category_id: aa-1-6-2-1 + product_category_id: aa-5-5-6 output: product_category_id: - - '7208' + - '2668' - input: - product_category_id: aa-1-6-2-2 + product_category_id: aa-5-5-7 output: product_category_id: - - '7211' + - '2668' - input: - product_category_id: aa-1-6-2-3 + product_category_id: aa-5-5-8 output: product_category_id: - - '7210' + - '2668' - input: - product_category_id: aa-1-6-2-4 + product_category_id: aa-6 output: product_category_id: - - '7209' + - '188' - input: - product_category_id: aa-1-6-3 + product_category_id: aa-6-1 output: product_category_id: - - '214' + - '189' - input: - product_category_id: aa-1-6-4 + product_category_id: aa-6-2 output: product_category_id: - - '1772' + - '190' - input: - product_category_id: aa-1-6-6 + product_category_id: aa-6-3 output: product_category_id: - - '215' + - '191' - input: - product_category_id: aa-1-6-7 + product_category_id: aa-6-4 output: product_category_id: - - '5327' + - '197' - input: - product_category_id: aa-1-6-8 + product_category_id: aa-6-5 output: product_category_id: - - '2563' + - '192' - input: - product_category_id: aa-1-6-8-1 + product_category_id: aa-6-6 output: product_category_id: - - '2160' + - '194' - input: - product_category_id: aa-1-6-8-2 + product_category_id: aa-6-7 output: product_category_id: - - '1675' + - '6463' - input: - product_category_id: aa-1-6-8-3 + product_category_id: aa-6-8 output: product_category_id: - - '2563' + - '196' - input: - product_category_id: aa-1-6-9 + product_category_id: aa-6-9 output: product_category_id: - - '2963' + - '200' - input: - product_category_id: aa-1-7 + product_category_id: aa-6-10 output: product_category_id: - - '1604' + - '5122' - input: - product_category_id: aa-1-7-1 + product_category_id: aa-6-10-1 output: product_category_id: - - '214' + - '5123' - input: - product_category_id: aa-1-7-2 + product_category_id: aa-6-10-2 output: product_category_id: - - '2271' + - '7471' - input: - product_category_id: aa-1-7-3 + product_category_id: aa-6-10-3 output: product_category_id: - - '5182' + - '6870' - input: - product_category_id: aa-1-7-4 + product_category_id: aa-6-11 output: product_category_id: - - '204' + - '201' - input: - product_category_id: aa-1-7-4-11 + product_category_id: aa-6-12 output: product_category_id: - - '5344' + - '201' - input: - product_category_id: aa-1-7-4-12 + product_category_id: aa-7 output: product_category_id: - - '204' + - '1933' - input: - product_category_id: aa-1-7-4-2 + product_category_id: aa-7-1 output: product_category_id: - - '204' + - '5567' - input: - product_category_id: aa-1-7-4-3 + product_category_id: aa-7-2 output: product_category_id: - - '204' + - '7078' - input: - product_category_id: aa-1-7-4-4 + product_category_id: aa-7-3 output: product_category_id: - - '204' + - '5385' - input: - product_category_id: aa-1-7-4-5 + product_category_id: aa-7-4 output: product_category_id: - - '204' + - '1933' - input: - product_category_id: aa-1-7-4-7 + product_category_id: aa-7-5 output: product_category_id: - - '204' + - '1933' - input: - product_category_id: aa-1-7-4-8 + product_category_id: aa-7-5-1 output: product_category_id: - - '204' + - '1933' - input: - product_category_id: aa-1-7-5 + product_category_id: aa-7-5-2 output: product_category_id: - - '1581' + - '1933' - input: - product_category_id: aa-1-7-6 + product_category_id: aa-7-5-3 output: product_category_id: - - '208' + - '1933' - input: - product_category_id: aa-1-7-7 + product_category_id: aa-7-5-4 output: product_category_id: - - '211' + - '1933' - input: - product_category_id: aa-1-7-7-14 + product_category_id: aa-7-6 output: product_category_id: - - '211' + - '1856' - input: - product_category_id: aa-1-7-7-2 + product_category_id: aa-7-7 output: product_category_id: - - '211' + - '2427' - input: - product_category_id: aa-1-7-7-20 + product_category_id: aa-8 output: product_category_id: - - '211' + - '187' - input: - product_category_id: aa-1-7-7-21 + product_category_id: aa-8-1 output: product_category_id: - - '211' + - '187' - input: - product_category_id: aa-1-7-7-4 + product_category_id: aa-8-2 output: product_category_id: - - '211' + - '187' - input: - product_category_id: aa-1-7-7-5 + product_category_id: aa-8-2-1 output: product_category_id: - - '211' + - '187' - input: - product_category_id: aa-1-7-7-6 + product_category_id: aa-8-2-2 output: product_category_id: - - '211' + - '187' - input: - product_category_id: aa-1-7-8 + product_category_id: aa-8-2-4 output: product_category_id: - - '212' + - '187' - input: - product_category_id: aa-1-7-8-1 + product_category_id: aa-8-2-5 output: product_category_id: - - '212' + - '187' - input: - product_category_id: aa-1-7-8-11 + product_category_id: aa-8-2-6 output: product_category_id: - - '212' + - '187' - input: - product_category_id: aa-1-7-8-2 + product_category_id: aa-8-3 output: product_category_id: - - '212' + - '187' - input: - product_category_id: aa-1-7-8-3 + product_category_id: aa-8-6 output: product_category_id: - - '212' + - '187' - input: - product_category_id: aa-1-7-8-4 + product_category_id: aa-8-7 output: product_category_id: - - '212' + - '187' - input: - product_category_id: aa-1-7-8-5 + product_category_id: aa-8-8 output: product_category_id: - - '212' + - '187' - input: - product_category_id: aa-1-7-8-7 + product_category_id: aa-8-9 output: product_category_id: - - '212' + - '187' - input: - product_category_id: aa-1-7-8-8 + product_category_id: aa-8-10 output: product_category_id: - - '212' + - '187' - input: - product_category_id: aa-1-8 + product_category_id: ae output: product_category_id: - - '213' + - '8' - input: - product_category_id: aa-1-8-1 + product_category_id: ae-1 output: product_category_id: - - '1807' + - '499969' - input: - product_category_id: aa-1-8-2 + product_category_id: ae-2 output: product_category_id: - - '2745' + - '5710' - input: - product_category_id: aa-1-8-3 + product_category_id: ae-2-1 output: product_category_id: - - '2562' + - '16' - input: - product_category_id: aa-1-8-3-2 + product_category_id: ae-2-1-1 output: product_category_id: - - '2562' + - '505370' - input: - product_category_id: aa-1-8-3-3 + product_category_id: ae-2-1-1-1 output: product_category_id: - - '2562' + - '505374' - input: - product_category_id: aa-1-8-3-4 + product_category_id: ae-2-1-1-2 output: product_category_id: - - '2562' + - '4778' - input: - product_category_id: aa-1-8-3-5 + product_category_id: ae-2-1-1-3 output: product_category_id: - - '2562' + - '6382' - input: - product_category_id: aa-1-8-3-6 + product_category_id: ae-2-1-1-4 output: product_category_id: - - '2562' + - '6989' - input: - product_category_id: aa-1-8-3-7 + product_category_id: ae-2-1-1-5 output: product_category_id: - - '2562' + - '502979' - input: - product_category_id: aa-1-8-3-8 + product_category_id: ae-2-1-1-6 output: product_category_id: - - '2562' + - '6829' - input: - product_category_id: aa-1-8-3-9 + product_category_id: ae-2-1-1-7 output: product_category_id: - - '2562' + - '7096' - input: - product_category_id: aa-1-9 + product_category_id: ae-2-1-1-8 output: product_category_id: - - '5182' + - '503758' - input: - product_category_id: aa-2 + product_category_id: ae-2-1-1-9 output: product_category_id: - - '167' + - '4986' - input: - product_category_id: aa-2-1 + product_category_id: ae-2-1-1-9-1 output: product_category_id: - - '5942' + - '4986' - input: - product_category_id: aa-2-10 + product_category_id: ae-2-1-1-9-2 output: product_category_id: - - '193' + - '4986' - input: - product_category_id: aa-2-11 + product_category_id: ae-2-1-2 output: product_category_id: - - '5114' + - '505372' - input: - product_category_id: aa-2-12 + product_category_id: ae-2-1-2-1 output: product_category_id: - - '6238' + - '24' - input: - product_category_id: aa-2-13 + product_category_id: ae-2-1-2-1-1 output: product_category_id: - - '170' + - '505399' - input: - product_category_id: aa-2-14 + product_category_id: ae-2-1-2-1-1-1 output: product_category_id: - - '171' + - '543510' - input: - product_category_id: aa-2-14-1 + product_category_id: ae-2-1-2-1-1-2 output: product_category_id: - - '8451' + - '543511' - input: - product_category_id: aa-2-14-10 + product_category_id: ae-2-1-2-1-2 output: product_category_id: - - '5914' + - '2532' - input: - product_category_id: aa-2-14-11 + product_category_id: ae-2-1-2-1-3 output: product_category_id: - - '7305' + - '8168' - input: - product_category_id: aa-2-14-12 + product_category_id: ae-2-1-2-1-4 output: product_category_id: - - '181' + - '505400' - input: - product_category_id: aa-2-14-2 + product_category_id: ae-2-1-2-1-5 output: product_category_id: - - '2477' + - '2967' - input: - product_category_id: aa-2-14-3 + product_category_id: ae-2-1-2-1-6 output: product_category_id: - - '4057' + - '6110' - input: - product_category_id: aa-2-14-4 + product_category_id: ae-2-1-2-1-7 output: product_category_id: - - '1948' + - '2741' - input: - product_category_id: aa-2-14-5 + product_category_id: ae-2-1-2-2 output: product_category_id: - - '6183' + - '505380' - input: - product_category_id: aa-2-14-6 + product_category_id: ae-2-1-2-2-1 output: product_category_id: - - '502988' + - '4226' - input: - product_category_id: aa-2-14-7 + product_category_id: ae-2-1-2-2-1-1 output: product_category_id: - - '5915' + - '4226' - input: - product_category_id: aa-2-14-8 + product_category_id: ae-2-1-2-2-1-2 output: product_category_id: - - '1662' + - '4226' - input: - product_category_id: aa-2-14-9 + product_category_id: ae-2-1-2-2-2 output: product_category_id: - - '1483' + - '505408' - input: - product_category_id: aa-2-15 + product_category_id: ae-2-1-2-2-3 output: product_category_id: - - '7133' + - '505409' - input: - product_category_id: aa-2-16 + product_category_id: ae-2-1-2-2-3-1 output: product_category_id: - - '5207' + - '505409' - input: - product_category_id: aa-2-17 + product_category_id: ae-2-1-2-2-3-2 output: product_category_id: - - '173' + - '505409' - input: - product_category_id: aa-2-17-1 + product_category_id: ae-2-1-2-2-3-3 output: product_category_id: - - '173' + - '505409' - input: - product_category_id: aa-2-17-10 + product_category_id: ae-2-1-2-2-4 output: product_category_id: - - '173' + - '6145' - input: - product_category_id: aa-2-17-11 + product_category_id: ae-2-1-2-2-4-1 output: product_category_id: - - '173' + - '6145' - input: - product_category_id: aa-2-17-12 + product_category_id: ae-2-1-2-2-4-2 output: product_category_id: - - '173' + - '6145' - input: - product_category_id: aa-2-17-13 + product_category_id: ae-2-1-2-2-4-3 output: product_category_id: - - '173' + - '6145' - input: - product_category_id: aa-2-17-14 + product_category_id: ae-2-1-2-2-4-4 output: product_category_id: - - '173' + - '6145' - input: - product_category_id: aa-2-17-15 + product_category_id: ae-2-1-2-2-5 output: product_category_id: - - '173' + - '500056' - input: - product_category_id: aa-2-17-16 + product_category_id: ae-2-1-2-2-6 output: product_category_id: - - '173' + - '4174' - input: - product_category_id: aa-2-17-2 + product_category_id: ae-2-1-2-2-6-1 output: product_category_id: - - '173' + - '4174' - input: - product_category_id: aa-2-17-3 + product_category_id: ae-2-1-2-2-6-2 output: product_category_id: - - '173' + - '4174' - input: - product_category_id: aa-2-17-4 + product_category_id: ae-2-1-2-2-6-3 output: product_category_id: - - '173' + - '4174' - input: - product_category_id: aa-2-17-5 + product_category_id: ae-2-1-2-2-6-4 output: product_category_id: - - '173' + - '4174' - input: - product_category_id: aa-2-17-6 + product_category_id: ae-2-1-2-3 output: product_category_id: - - '173' + - '505378' - input: - product_category_id: aa-2-17-7 + product_category_id: ae-2-1-2-3-1 output: product_category_id: - - '173' + - '505417' - input: - product_category_id: aa-2-17-8 + product_category_id: ae-2-1-2-3-2 output: product_category_id: - - '173' + - '500094' - input: - product_category_id: aa-2-17-9 + product_category_id: ae-2-1-2-3-3 output: product_category_id: - - '173' + - '505416' - input: - product_category_id: aa-2-18 + product_category_id: ae-2-1-2-3-3-1 output: product_category_id: - - '2020' + - '505416' - input: - product_category_id: aa-2-18-1 + product_category_id: ae-2-1-2-3-3-2 output: product_category_id: - - '7054' + - '505416' - input: - product_category_id: aa-2-18-2 + product_category_id: ae-2-1-2-3-3-3 output: product_category_id: - - '1922' + - '505416' - input: - product_category_id: aa-2-18-3 + product_category_id: ae-2-1-2-3-3-4 output: product_category_id: - - '5939' + - '505416' - input: - product_category_id: aa-2-19 + product_category_id: ae-2-1-2-3-3-5 output: product_category_id: - - '5941' + - '505416' - input: - product_category_id: aa-2-2 + product_category_id: ae-2-1-2-3-3-6 output: product_category_id: - - '5422' + - '505416' - input: - product_category_id: aa-2-2-1 + product_category_id: ae-2-1-2-3-3-7 output: product_category_id: - - '5623' + - '505416' - input: - product_category_id: aa-2-2-2 + product_category_id: ae-2-1-2-3-4 output: product_category_id: - - '5624' + - '499879' - input: - product_category_id: aa-2-2-3 + product_category_id: ae-2-1-2-3-5 output: product_category_id: - - '5625' + - '505415' - input: - product_category_id: aa-2-2-4 + product_category_id: ae-2-1-2-3-6 output: product_category_id: - - '5626' + - '505414' - input: - product_category_id: aa-2-20 + product_category_id: ae-2-1-2-3-7 output: product_category_id: - - '6268' + - '6558' - input: - product_category_id: aa-2-21 + product_category_id: ae-2-1-2-4 output: product_category_id: - - '502987' + - '505381' - input: - product_category_id: aa-2-22 + product_category_id: ae-2-1-2-4-1 output: product_category_id: - - '7230' + - '6117' - input: - product_category_id: aa-2-23 + product_category_id: ae-2-1-2-4-2 output: product_category_id: - - '176' + - '505404' - input: - product_category_id: aa-2-24 + product_category_id: ae-2-1-2-4-2-1 output: product_category_id: - - '4179' + - '505404' - input: - product_category_id: aa-2-25 + product_category_id: ae-2-1-2-4-2-2 output: product_category_id: - - '499972' + - '505404' - input: - product_category_id: aa-2-26 + product_category_id: ae-2-1-2-4-2-3 output: product_category_id: - - '177' + - '505404' - input: - product_category_id: aa-2-27 + product_category_id: ae-2-1-2-4-2-4 output: product_category_id: - - '178' + - '505404' - input: - product_category_id: aa-2-28 + product_category_id: ae-2-1-2-4-2-5 output: product_category_id: - - '179' + - '505404' - input: - product_category_id: aa-2-29 + product_category_id: ae-2-1-2-4-2-6 output: product_category_id: - - '180' + - '505404' - input: - product_category_id: aa-2-3 + product_category_id: ae-2-1-2-4-2-7 output: product_category_id: - - '1786' + - '505404' - input: - product_category_id: aa-2-30 + product_category_id: ae-2-1-2-4-3 output: product_category_id: - - '1893' + - '505403' - input: - product_category_id: aa-2-31 + product_category_id: ae-2-1-2-4-4 output: product_category_id: - - '5390' + - '504419' - input: - product_category_id: aa-2-4 + product_category_id: ae-2-1-2-5 output: product_category_id: - - '168' + - '505376' - input: - product_category_id: aa-2-5 + product_category_id: ae-2-1-2-5-1 output: product_category_id: - - '3913' + - '503745' - input: - product_category_id: aa-2-6 + product_category_id: ae-2-1-2-5-1-1 output: product_category_id: - - '169' + - '503745' - input: - product_category_id: aa-2-7 + product_category_id: ae-2-1-2-5-1-2 output: product_category_id: - - '5443' + - '503745' - input: - product_category_id: aa-2-8 + product_category_id: ae-2-1-2-5-1-3 output: product_category_id: - - '6985' + - '503745' - input: - product_category_id: aa-2-9 + product_category_id: ae-2-1-2-5-1-4 output: product_category_id: - - '6984' + - '503745' - input: - product_category_id: aa-3 + product_category_id: ae-2-1-2-5-1-5 output: product_category_id: - - '184' + - '503745' - input: - product_category_id: aa-3-1 + product_category_id: ae-2-1-2-5-1-6 output: product_category_id: - - '5192' + - '503745' - input: - product_category_id: aa-3-2 + product_category_id: ae-2-1-2-5-1-7 output: product_category_id: - - '5387' + - '503745' - input: - product_category_id: aa-3-3 + product_category_id: ae-2-1-2-5-2 output: product_category_id: - - '5193' + - '36' - input: - product_category_id: aa-3-3-1 + product_category_id: ae-2-1-2-5-3 output: product_category_id: - - '5193' + - '505419' - input: - product_category_id: aa-3-3-2 + product_category_id: ae-2-1-2-5-4 output: product_category_id: - - '5193' + - '7192' - input: - product_category_id: aa-3-4 + product_category_id: ae-2-1-2-5-4-1 output: product_category_id: - - '5194' + - '7192' - input: - product_category_id: aa-4 + product_category_id: ae-2-1-2-5-4-2 output: product_category_id: - - '6552' + - '7192' - input: - product_category_id: aa-4-1 + product_category_id: ae-2-1-2-5-5 output: product_category_id: - - '175' + - '6418' - input: - product_category_id: aa-4-2 + product_category_id: ae-2-1-2-5-5-1 output: product_category_id: - - '6277' + - '6418' - input: - product_category_id: aa-4-3 + product_category_id: ae-2-1-2-5-5-2 output: product_category_id: - - '5841' + - '6418' - input: - product_category_id: aa-5 + product_category_id: ae-2-1-2-5-5-3 output: product_category_id: - - '6551' + - '6418' - input: - product_category_id: aa-5-1 + product_category_id: ae-2-1-2-5-5-4 output: product_category_id: - - '6170' + - '6418' - input: - product_category_id: aa-5-2 + product_category_id: ae-2-1-2-6 output: product_category_id: - - '6169' + - '505382' - input: - product_category_id: aa-5-3 + product_category_id: ae-2-1-2-6-1 output: product_category_id: - - '6460' + - '6540' - input: - product_category_id: aa-5-4 + product_category_id: ae-2-1-2-6-1-1 output: product_category_id: - - '3032' + - '6540' - input: - product_category_id: aa-5-4-1 + product_category_id: ae-2-1-2-6-1-2 output: product_category_id: - - '3032' + - '6540' - input: - product_category_id: aa-5-4-10 + product_category_id: ae-2-1-2-6-2 output: product_category_id: - - '3032' + - '49' - input: - product_category_id: aa-5-4-11 + product_category_id: ae-2-1-2-6-2-1 output: product_category_id: - - '3032' + - '49' - input: - product_category_id: aa-5-4-12 + product_category_id: ae-2-1-2-6-2-2 output: product_category_id: - - '3032' + - '49' - input: - product_category_id: aa-5-4-13 + product_category_id: ae-2-1-2-6-2-4 output: product_category_id: - - '3032' + - '49' - input: - product_category_id: aa-5-4-14 + product_category_id: ae-2-1-2-6-2-6 output: product_category_id: - - '3032' + - '49' - input: - product_category_id: aa-5-4-15 + product_category_id: ae-2-1-2-6-2-7 output: product_category_id: - - '3032' + - '49' - input: - product_category_id: aa-5-4-16 + product_category_id: ae-2-1-2-6-3 output: product_category_id: - - '3032' + - '6140' - input: - product_category_id: aa-5-4-17 + product_category_id: ae-2-1-2-6-3-1 output: product_category_id: - - '3032' + - '6140' - input: - product_category_id: aa-5-4-18 + product_category_id: ae-2-1-2-6-3-2 output: product_category_id: - - '3032' + - '6140' - input: - product_category_id: aa-5-4-19 + product_category_id: ae-2-1-2-6-3-3 output: product_category_id: - - '3032' + - '6140' - input: - product_category_id: aa-5-4-2 + product_category_id: ae-2-1-2-6-3-4 output: product_category_id: - - '3032' + - '6140' - input: - product_category_id: aa-5-4-20 + product_category_id: ae-2-1-2-6-3-5 output: product_category_id: - - '3032' + - '6140' - input: - product_category_id: aa-5-4-3 + product_category_id: ae-2-1-2-6-3-6 output: product_category_id: - - '3032' + - '6140' - input: - product_category_id: aa-5-4-4 + product_category_id: ae-2-1-2-6-3-7 output: product_category_id: - - '3032' + - '6140' - input: - product_category_id: aa-5-4-5 + product_category_id: ae-2-1-2-6-4 output: product_category_id: - - '3032' + - '2669' - input: - product_category_id: aa-5-4-6 + product_category_id: ae-2-1-2-7 output: product_category_id: - - '3032' + - '505377' - input: - product_category_id: aa-5-4-7 + product_category_id: ae-2-1-2-7-1 output: product_category_id: - - '3032' + - '5062' - input: - product_category_id: aa-5-4-8 + product_category_id: ae-2-1-2-7-2 output: product_category_id: - - '3032' + - '505418' - input: - product_category_id: aa-5-4-9 + product_category_id: ae-2-1-2-7-3 output: product_category_id: - - '3032' + - '6102' - input: - product_category_id: aa-5-5 + product_category_id: ae-2-1-2-7-3-1 output: product_category_id: - - '2668' + - '6102' - input: - product_category_id: aa-5-5-2 + product_category_id: ae-2-1-2-7-3-2 output: product_category_id: - - '2668' + - '6102' - input: - product_category_id: aa-5-5-3 + product_category_id: ae-2-1-2-7-3-3 output: product_category_id: - - '2668' + - '6102' - input: - product_category_id: aa-5-5-4 + product_category_id: ae-2-1-2-7-3-4 output: product_category_id: - - '2668' + - '6102' - input: - product_category_id: aa-5-5-5 + product_category_id: ae-2-1-2-7-3-5 output: product_category_id: - - '2668' + - '6102' - input: - product_category_id: aa-5-5-6 + product_category_id: ae-2-1-2-7-3-6 output: product_category_id: - - '2668' + - '6102' - input: - product_category_id: aa-5-5-7 + product_category_id: ae-2-1-2-7-3-7 output: product_category_id: - - '2668' + - '6102' - input: - product_category_id: aa-5-5-8 + product_category_id: ae-2-1-2-8 output: product_category_id: - - '2668' + - '505379' - input: - product_category_id: aa-6 + product_category_id: ae-2-1-2-8-1 output: product_category_id: - - '188' + - '6955' - input: - product_category_id: aa-6-1 + product_category_id: ae-2-1-2-8-1-1 output: product_category_id: - - '189' + - '6955' - input: - product_category_id: aa-6-10 + product_category_id: ae-2-1-2-8-1-2 output: product_category_id: - - '5122' + - '6955' - input: - product_category_id: aa-6-10-1 + product_category_id: ae-2-1-2-8-1-3 output: product_category_id: - - '5123' + - '6955' - input: - product_category_id: aa-6-10-2 + product_category_id: ae-2-1-2-8-1-4 output: product_category_id: - - '7471' + - '6955' - input: - product_category_id: aa-6-10-3 + product_category_id: ae-2-1-2-8-1-5 output: product_category_id: - - '6870' + - '6955' - input: - product_category_id: aa-6-11 + product_category_id: ae-2-1-2-8-1-6 output: product_category_id: - - '201' + - '6955' - input: - product_category_id: aa-6-12 + product_category_id: ae-2-1-2-8-1-7 output: product_category_id: - - '201' + - '6955' - input: - product_category_id: aa-6-2 + product_category_id: ae-2-1-2-8-1-8 output: product_category_id: - - '190' + - '6955' - input: - product_category_id: aa-6-3 + product_category_id: ae-2-1-2-8-2 output: product_category_id: - - '191' + - '32' - input: - product_category_id: aa-6-4 + product_category_id: ae-2-1-2-8-3 output: product_category_id: - - '197' + - '505413' - input: - product_category_id: aa-6-5 + product_category_id: ae-2-1-2-8-4 output: product_category_id: - - '192' + - '4054' - input: - product_category_id: aa-6-6 + product_category_id: ae-2-1-2-8-4-1 output: product_category_id: - - '194' + - '4054' - input: - product_category_id: aa-6-7 + product_category_id: ae-2-1-2-8-4-2 output: product_category_id: - - '6463' + - '4054' - input: - product_category_id: aa-6-8 + product_category_id: ae-2-1-2-8-4-4 output: product_category_id: - - '196' + - '4054' - input: - product_category_id: aa-6-9 + product_category_id: ae-2-1-2-8-5 output: product_category_id: - - '200' + - '6146' - input: - product_category_id: aa-7 + product_category_id: ae-2-1-2-8-5-1 output: product_category_id: - - '1933' + - '6146' - input: - product_category_id: aa-7-1 + product_category_id: ae-2-1-2-8-5-2 output: product_category_id: - - '5567' + - '6146' - input: - product_category_id: aa-7-2 + product_category_id: ae-2-1-2-8-5-3 output: product_category_id: - - '7078' + - '6146' - input: - product_category_id: aa-7-3 + product_category_id: ae-2-1-2-8-5-4 output: product_category_id: - - '5385' + - '6146' - input: - product_category_id: aa-7-4 + product_category_id: ae-2-1-2-8-5-5 output: product_category_id: - - '1933' + - '6146' - input: - product_category_id: aa-7-5 + product_category_id: ae-2-1-2-8-5-6 output: product_category_id: - - '1933' + - '6146' - input: - product_category_id: aa-7-5-1 + product_category_id: ae-2-1-2-8-6 output: product_category_id: - - '1933' + - '505411' - input: - product_category_id: aa-7-5-2 + product_category_id: ae-2-1-2-8-6-1 output: product_category_id: - - '1933' + - '505411' - input: - product_category_id: aa-7-5-3 + product_category_id: ae-2-1-2-8-6-2 output: product_category_id: - - '1933' + - '505411' - input: - product_category_id: aa-7-5-4 + product_category_id: ae-2-1-2-8-6-3 output: product_category_id: - - '1933' + - '505411' - input: - product_category_id: aa-7-6 + product_category_id: ae-2-1-2-8-6-4 output: product_category_id: - - '1856' + - '505411' - input: - product_category_id: aa-7-7 + product_category_id: ae-2-1-2-8-6-5 output: product_category_id: - - '2427' + - '505411' - input: - product_category_id: aa-8 + product_category_id: ae-2-1-2-8-6-6 output: product_category_id: - - '187' + - '505411' - input: - product_category_id: aa-8-1 + product_category_id: ae-2-1-2-8-6-7 output: product_category_id: - - '187' + - '505411' - input: - product_category_id: aa-8-10 + product_category_id: ae-2-1-2-8-7 output: product_category_id: - - '187' + - '5996' - input: - product_category_id: aa-8-2 + product_category_id: ae-2-1-2-8-8 output: product_category_id: - - '187' + - '198' - input: - product_category_id: aa-8-2-1 + product_category_id: ae-2-1-2-8-8-1 output: product_category_id: - - '187' + - '198' - input: - product_category_id: aa-8-2-2 + product_category_id: ae-2-1-2-8-8-2 output: product_category_id: - - '187' + - '198' - input: - product_category_id: aa-8-2-4 + product_category_id: ae-2-1-2-8-8-3 output: product_category_id: - - '187' + - '198' - input: - product_category_id: aa-8-2-5 + product_category_id: ae-2-1-2-8-8-4 output: product_category_id: - - '187' + - '198' - input: - product_category_id: aa-8-2-6 + product_category_id: ae-2-1-2-8-8-5 output: product_category_id: - - '187' + - '198' - input: - product_category_id: aa-8-3 + product_category_id: ae-2-1-2-8-8-6 output: product_category_id: - - '187' + - '198' - input: - product_category_id: aa-8-6 + product_category_id: ae-2-1-2-8-8-7 output: product_category_id: - - '187' + - '198' - input: - product_category_id: aa-8-7 + product_category_id: ae-2-1-2-8-9 output: product_category_id: - - '187' + - '5982' - input: - product_category_id: aa-8-8 + product_category_id: ae-2-1-2-8-9-1 output: product_category_id: - - '187' + - '5982' - input: - product_category_id: aa-8-9 + product_category_id: ae-2-1-2-8-9-2 output: product_category_id: - - '187' + - '5982' - input: - product_category_id: ae + product_category_id: ae-2-1-2-8-9-3 output: product_category_id: - - '8' + - '5982' - input: - product_category_id: ae-1 + product_category_id: ae-2-1-2-8-9-4 output: product_category_id: - - '499969' + - '5982' - input: - product_category_id: ae-2 + product_category_id: ae-2-1-2-8-10 output: product_category_id: - - '5710' + - '505412' - input: - product_category_id: ae-2-1 + product_category_id: ae-2-1-2-8-10-1 output: product_category_id: - - '16' + - '505412' - input: - product_category_id: ae-2-1-1 + product_category_id: ae-2-1-2-8-10-2 output: product_category_id: - - '505370' + - '505412' - input: - product_category_id: ae-2-1-1-1 + product_category_id: ae-2-1-2-8-10-3 output: product_category_id: - - '505374' + - '505412' - input: - product_category_id: ae-2-1-1-2 + product_category_id: ae-2-1-2-8-10-4 output: product_category_id: - - '4778' + - '505412' - input: - product_category_id: ae-2-1-1-3 + product_category_id: ae-2-1-2-8-10-5 output: product_category_id: - - '6382' + - '505412' - input: - product_category_id: ae-2-1-1-4 + product_category_id: ae-2-1-2-8-10-6 output: product_category_id: - - '6989' + - '505412' - input: - product_category_id: ae-2-1-1-5 + product_category_id: ae-2-1-2-8-10-7 output: product_category_id: - - '502979' + - '505412' - input: - product_category_id: ae-2-1-1-6 + product_category_id: ae-2-1-2-8-10-8 output: product_category_id: - - '6829' + - '505412' - input: - product_category_id: ae-2-1-1-7 + product_category_id: ae-2-1-2-8-10-9 output: product_category_id: - - '7096' + - '505412' - input: - product_category_id: ae-2-1-1-8 + product_category_id: ae-2-1-2-8-10-10 output: product_category_id: - - '503758' + - '505412' - input: - product_category_id: ae-2-1-1-9 + product_category_id: ae-2-1-2-8-10-11 output: product_category_id: - - '4986' + - '505412' - input: - product_category_id: ae-2-1-1-9-1 + product_category_id: ae-2-1-2-8-11 output: product_category_id: - - '4986' + - '505410' - input: - product_category_id: ae-2-1-1-9-2 + product_category_id: ae-2-1-2-8-11-1 output: product_category_id: - - '4986' + - '505410' - input: - product_category_id: ae-2-1-2 + product_category_id: ae-2-1-2-8-11-2 output: product_category_id: - - '505372' + - '505410' - input: - product_category_id: ae-2-1-2-1 + product_category_id: ae-2-1-2-8-11-3 output: product_category_id: - - '24' + - '505410' - input: - product_category_id: ae-2-1-2-1-1 + product_category_id: ae-2-1-2-8-11-4 output: product_category_id: - - '505399' + - '505410' - input: - product_category_id: ae-2-1-2-1-1-1 + product_category_id: ae-2-1-2-8-11-5 output: product_category_id: - - '543510' + - '505410' - input: - product_category_id: ae-2-1-2-1-1-2 + product_category_id: ae-2-1-2-8-12 output: product_category_id: - - '543511' + - '1927' - input: - product_category_id: ae-2-1-2-1-2 + product_category_id: ae-2-1-2-8-12-1 output: product_category_id: - - '2532' + - '1927' - input: - product_category_id: ae-2-1-2-1-3 + product_category_id: ae-2-1-2-8-12-2 output: product_category_id: - - '8168' + - '1927' - input: - product_category_id: ae-2-1-2-1-4 + product_category_id: ae-2-1-2-8-12-3 output: product_category_id: - - '505400' + - '1927' - input: - product_category_id: ae-2-1-2-1-5 + product_category_id: ae-2-1-2-8-12-4 output: product_category_id: - - '2967' + - '1927' - input: - product_category_id: ae-2-1-2-1-6 + product_category_id: ae-2-1-2-8-12-5 output: product_category_id: - - '6110' + - '1927' - input: - product_category_id: ae-2-1-2-1-7 + product_category_id: ae-2-1-2-9 output: product_category_id: - - '2741' + - '6121' - input: product_category_id: ae-2-1-2-10 output: @@ -2597,11 +3427,6 @@ rules: output: product_category_id: - '47' -- input: - product_category_id: ae-2-1-2-14-2-10 - output: - product_category_id: - - '47' - input: product_category_id: ae-2-1-2-14-2-2 output: @@ -2642,6 +3467,11 @@ rules: output: product_category_id: - '47' +- input: + product_category_id: ae-2-1-2-14-2-10 + output: + product_category_id: + - '47' - input: product_category_id: ae-2-1-2-14-3 output: @@ -2713,5650 +3543,5750 @@ rules: product_category_id: - '7402' - input: - product_category_id: ae-2-1-2-2 + product_category_id: ae-2-1-3 output: product_category_id: - - '505380' + - '504643' - input: - product_category_id: ae-2-1-2-2-1 + product_category_id: ae-2-1-3-1 output: product_category_id: - - '4226' + - '232168' - input: - product_category_id: ae-2-1-2-2-1-1 + product_category_id: ae-2-1-3-2 output: product_category_id: - - '4226' + - '4580' - input: - product_category_id: ae-2-1-2-2-1-2 + product_category_id: ae-2-1-3-3 output: product_category_id: - - '4226' + - '505286' - input: - product_category_id: ae-2-1-2-2-2 + product_category_id: ae-2-1-3-4 output: product_category_id: - - '505408' + - '5120' - input: - product_category_id: ae-2-1-2-2-3 + product_category_id: ae-2-1-3-5 output: product_category_id: - - '505409' + - '503348' - input: - product_category_id: ae-2-1-2-2-3-1 + product_category_id: ae-2-1-3-6 output: product_category_id: - - '505409' + - '6136' - input: - product_category_id: ae-2-1-2-2-3-2 + product_category_id: ae-2-1-3-6-1 output: product_category_id: - - '505409' + - '6136' - input: - product_category_id: ae-2-1-2-2-3-3 + product_category_id: ae-2-1-3-6-2 output: product_category_id: - - '505409' + - '6136' - input: - product_category_id: ae-2-1-2-2-4 + product_category_id: ae-2-1-3-6-3 output: product_category_id: - - '6145' + - '6136' - input: - product_category_id: ae-2-1-2-2-4-1 + product_category_id: ae-2-1-3-6-4 output: product_category_id: - - '6145' + - '6136' - input: - product_category_id: ae-2-1-2-2-4-2 + product_category_id: ae-2-1-3-6-5 output: product_category_id: - - '6145' + - '6136' - input: - product_category_id: ae-2-1-2-2-4-3 + product_category_id: ae-2-1-3-6-6 output: product_category_id: - - '6145' + - '6136' - input: - product_category_id: ae-2-1-2-2-4-4 + product_category_id: ae-2-1-3-6-7 output: product_category_id: - - '6145' + - '6136' - input: - product_category_id: ae-2-1-2-2-5 + product_category_id: ae-2-1-3-6-8 output: product_category_id: - - '500056' + - '6136' - input: - product_category_id: ae-2-1-2-2-6 + product_category_id: ae-2-1-3-6-9 output: product_category_id: - - '4174' + - '6136' - input: - product_category_id: ae-2-1-2-2-6-1 + product_category_id: ae-2-1-3-6-11 output: product_category_id: - - '4174' + - '6136' - input: - product_category_id: ae-2-1-2-2-6-2 + product_category_id: ae-2-1-3-6-12 output: product_category_id: - - '4174' + - '6136' - input: - product_category_id: ae-2-1-2-2-6-3 + product_category_id: ae-2-1-3-6-13 output: product_category_id: - - '4174' + - '6136' - input: - product_category_id: ae-2-1-2-2-6-4 + product_category_id: ae-2-1-3-6-14 output: product_category_id: - - '4174' + - '6136' - input: - product_category_id: ae-2-1-2-3 + product_category_id: ae-2-1-3-6-15 output: product_category_id: - - '505378' + - '6136' - input: - product_category_id: ae-2-1-2-3-1 + product_category_id: ae-2-1-3-6-16 output: product_category_id: - - '505417' + - '6136' - input: - product_category_id: ae-2-1-2-3-2 + product_category_id: ae-2-1-3-6-17 output: product_category_id: - - '500094' + - '6136' - input: - product_category_id: ae-2-1-2-3-3 + product_category_id: ae-2-1-3-6-18 output: product_category_id: - - '505416' + - '6136' - input: - product_category_id: ae-2-1-2-3-3-1 + product_category_id: ae-2-1-3-6-19 output: product_category_id: - - '505416' + - '6136' - input: - product_category_id: ae-2-1-2-3-3-2 + product_category_id: ae-2-1-3-6-20 output: product_category_id: - - '505416' + - '6136' - input: - product_category_id: ae-2-1-2-3-3-3 + product_category_id: ae-2-1-3-7 output: product_category_id: - - '505416' + - '499918' - input: - product_category_id: ae-2-1-2-3-3-4 + product_category_id: ae-2-1-4 output: product_category_id: - - '505416' + - '504639' - input: - product_category_id: ae-2-1-2-3-3-5 + product_category_id: ae-2-1-4-1 output: product_category_id: - - '505416' + - '6152' - input: - product_category_id: ae-2-1-2-3-3-6 + product_category_id: ae-2-1-4-1-1 output: product_category_id: - - '505416' + - '6152' - input: - product_category_id: ae-2-1-2-3-3-7 + product_category_id: ae-2-1-4-1-2 output: product_category_id: - - '505416' + - '6152' - input: - product_category_id: ae-2-1-2-3-4 + product_category_id: ae-2-1-4-2 output: product_category_id: - - '499879' + - '6151' - input: - product_category_id: ae-2-1-2-3-5 + product_category_id: ae-2-1-4-2-1 output: product_category_id: - - '505415' + - '6151' - input: - product_category_id: ae-2-1-2-3-6 + product_category_id: ae-2-1-4-2-2 output: product_category_id: - - '505414' + - '6151' - input: - product_category_id: ae-2-1-2-3-7 + product_category_id: ae-2-1-4-2-3 output: product_category_id: - - '6558' + - '6151' - input: - product_category_id: ae-2-1-2-4 + product_category_id: ae-2-1-4-2-4 output: product_category_id: - - '505381' + - '6151' - input: - product_category_id: ae-2-1-2-4-1 + product_category_id: ae-2-1-4-2-5 output: product_category_id: - - '6117' + - '6151' - input: - product_category_id: ae-2-1-2-4-2 + product_category_id: ae-2-1-4-2-6 output: product_category_id: - - '505404' + - '6151' - input: - product_category_id: ae-2-1-2-4-2-1 + product_category_id: ae-2-1-4-3 output: product_category_id: - - '505404' + - '505391' - input: - product_category_id: ae-2-1-2-4-2-2 + product_category_id: ae-2-1-4-3-1 output: product_category_id: - - '505404' + - '1653' - input: - product_category_id: ae-2-1-2-4-2-3 + product_category_id: ae-2-1-4-3-1-1 output: product_category_id: - - '505404' + - '1653' - input: - product_category_id: ae-2-1-2-4-2-4 + product_category_id: ae-2-1-4-3-1-2 output: product_category_id: - - '505404' + - '1653' - input: - product_category_id: ae-2-1-2-4-2-5 + product_category_id: ae-2-1-4-3-1-3 output: product_category_id: - - '505404' + - '1653' - input: - product_category_id: ae-2-1-2-4-2-6 + product_category_id: ae-2-1-4-3-1-4 output: product_category_id: - - '505404' + - '1653' - input: - product_category_id: ae-2-1-2-4-2-7 + product_category_id: ae-2-1-4-3-1-5 output: product_category_id: - - '505404' + - '1653' - input: - product_category_id: ae-2-1-2-4-3 + product_category_id: ae-2-1-4-3-1-6 output: product_category_id: - - '505403' + - '1653' - input: - product_category_id: ae-2-1-2-4-4 + product_category_id: ae-2-1-4-3-1-7 output: product_category_id: - - '504419' + - '1653' - input: - product_category_id: ae-2-1-2-5 + product_category_id: ae-2-1-4-3-1-8 output: product_category_id: - - '505376' + - '1653' - input: - product_category_id: ae-2-1-2-5-1 + product_category_id: ae-2-1-4-3-2 output: product_category_id: - - '503745' + - '1719' - input: - product_category_id: ae-2-1-2-5-1-1 + product_category_id: ae-2-1-4-4 output: product_category_id: - - '503745' + - '504640' - input: - product_category_id: ae-2-1-2-5-1-2 + product_category_id: ae-2-1-4-4-1 output: product_category_id: - - '503745' + - '504641' - input: - product_category_id: ae-2-1-2-5-1-3 + product_category_id: ae-2-1-4-4-1-1 output: product_category_id: - - '503745' + - '504641' - input: - product_category_id: ae-2-1-2-5-1-4 + product_category_id: ae-2-1-4-4-1-2 output: product_category_id: - - '503745' + - '504641' - input: - product_category_id: ae-2-1-2-5-1-5 + product_category_id: ae-2-1-4-4-1-3 output: product_category_id: - - '503745' + - '504641' - input: - product_category_id: ae-2-1-2-5-1-6 + product_category_id: ae-2-1-4-4-1-4 + output: + product_category_id: + - '504641' +- input: + product_category_id: ae-2-1-4-4-2 + output: + product_category_id: + - '504642' +- input: + product_category_id: ae-2-1-4-4-3 + output: + product_category_id: + - '5136' +- input: + product_category_id: ae-2-1-4-4-4 + output: + product_category_id: + - '6119' +- input: + product_category_id: ae-2-1-4-4-4-1 + output: + product_category_id: + - '6119' +- input: + product_category_id: ae-2-1-4-4-4-2 + output: + product_category_id: + - '6119' +- input: + product_category_id: ae-2-1-4-4-5 + output: + product_category_id: + - '7340' +- input: + product_category_id: ae-2-1-4-4-6 + output: + product_category_id: + - '6122' +- input: + product_category_id: ae-2-1-4-4-6-1 + output: + product_category_id: + - '6122' +- input: + product_category_id: ae-2-1-4-4-6-2 + output: + product_category_id: + - '6122' +- input: + product_category_id: ae-2-1-4-4-7 + output: + product_category_id: + - '6161' +- input: + product_category_id: ae-2-1-4-4-8 + output: + product_category_id: + - '6447' +- input: + product_category_id: ae-2-1-4-4-8-1 + output: + product_category_id: + - '6447' +- input: + product_category_id: ae-2-1-4-4-8-2 + output: + product_category_id: + - '6447' +- input: + product_category_id: ae-2-1-4-4-8-3 + output: + product_category_id: + - '6447' +- input: + product_category_id: ae-2-1-4-4-8-4 + output: + product_category_id: + - '6447' +- input: + product_category_id: ae-2-1-4-5 + output: + product_category_id: + - '505386' +- input: + product_category_id: ae-2-1-4-6 + output: + product_category_id: + - '505392' +- input: + product_category_id: ae-2-1-4-6-1 + output: + product_category_id: + - '18' +- input: + product_category_id: ae-2-1-4-6-2 + output: + product_category_id: + - '6126' +- input: + product_category_id: ae-2-1-4-6-3 output: product_category_id: - - '503745' + - '4032' - input: - product_category_id: ae-2-1-2-5-1-7 + product_category_id: ae-2-1-4-6-4 output: product_category_id: - - '503745' + - '3083' - input: - product_category_id: ae-2-1-2-5-2 + product_category_id: ae-2-1-4-6-4-1 output: product_category_id: - - '36' + - '3083' - input: - product_category_id: ae-2-1-2-5-3 + product_category_id: ae-2-1-4-6-4-2 output: product_category_id: - - '505419' + - '3083' - input: - product_category_id: ae-2-1-2-5-4 + product_category_id: ae-2-1-4-6-5 output: product_category_id: - - '7192' + - '6125' - input: - product_category_id: ae-2-1-2-5-4-1 + product_category_id: ae-2-1-4-6-6 output: product_category_id: - - '7192' + - '5883' - input: - product_category_id: ae-2-1-2-5-4-2 + product_category_id: ae-2-1-4-6-6-1 output: product_category_id: - - '7192' + - '5883' - input: - product_category_id: ae-2-1-2-5-5 + product_category_id: ae-2-1-4-6-6-2 output: product_category_id: - - '6418' + - '5883' - input: - product_category_id: ae-2-1-2-5-5-1 + product_category_id: ae-2-1-4-6-7 output: product_category_id: - - '6418' + - '2671' - input: - product_category_id: ae-2-1-2-5-5-2 + product_category_id: ae-2-1-4-6-8 output: product_category_id: - - '6418' + - '6160' - input: - product_category_id: ae-2-1-2-5-5-3 + product_category_id: ae-2-1-4-6-8-1 output: product_category_id: - - '6418' + - '6160' - input: - product_category_id: ae-2-1-2-5-5-4 + product_category_id: ae-2-1-4-6-8-2 output: product_category_id: - - '6418' + - '6160' - input: - product_category_id: ae-2-1-2-6 + product_category_id: ae-2-1-4-6-8-3 output: product_category_id: - - '505382' + - '6160' - input: - product_category_id: ae-2-1-2-6-1 + product_category_id: ae-2-1-4-6-9 output: product_category_id: - - '6540' + - '6157' - input: - product_category_id: ae-2-1-2-6-1-1 + product_category_id: ae-2-1-4-6-9-1 output: product_category_id: - - '6540' + - '6157' - input: - product_category_id: ae-2-1-2-6-1-2 + product_category_id: ae-2-1-4-6-9-2 output: product_category_id: - - '6540' + - '6157' - input: - product_category_id: ae-2-1-2-6-2 + product_category_id: ae-2-1-4-6-9-3 output: product_category_id: - - '49' + - '6157' - input: - product_category_id: ae-2-1-2-6-2-1 + product_category_id: ae-2-1-4-6-10 output: product_category_id: - - '49' + - '505420' - input: - product_category_id: ae-2-1-2-6-2-2 + product_category_id: ae-2-1-4-7 output: product_category_id: - - '49' + - '5137' - input: - product_category_id: ae-2-1-2-6-2-4 + product_category_id: ae-2-1-4-8 output: product_category_id: - - '49' + - '6150' - input: - product_category_id: ae-2-1-2-6-2-6 + product_category_id: ae-2-1-4-9 output: product_category_id: - - '49' + - '6133' - input: - product_category_id: ae-2-1-2-6-2-7 + product_category_id: ae-2-1-4-10 output: product_category_id: - - '49' + - '6158' - input: - product_category_id: ae-2-1-2-6-3 + product_category_id: ae-2-1-4-10-1 output: product_category_id: - - '6140' + - '6158' - input: - product_category_id: ae-2-1-2-6-3-1 + product_category_id: ae-2-1-4-10-2 output: product_category_id: - - '6140' + - '6158' - input: - product_category_id: ae-2-1-2-6-3-2 + product_category_id: ae-2-1-4-10-3 output: product_category_id: - - '6140' + - '6158' - input: - product_category_id: ae-2-1-2-6-3-3 + product_category_id: ae-2-1-4-10-4 output: product_category_id: - - '6140' + - '6158' - input: - product_category_id: ae-2-1-2-6-3-4 + product_category_id: ae-2-1-4-10-5 output: product_category_id: - - '6140' + - '6158' - input: - product_category_id: ae-2-1-2-6-3-5 + product_category_id: ae-2-1-4-11 output: product_category_id: - - '6140' + - '4073' - input: - product_category_id: ae-2-1-2-6-3-6 + product_category_id: ae-2-1-4-12 output: product_category_id: - - '6140' + - '5921' - input: - product_category_id: ae-2-1-2-6-3-7 + product_category_id: ae-2-1-4-13 output: product_category_id: - - '6140' + - '505393' - input: - product_category_id: ae-2-1-2-6-4 + product_category_id: ae-2-1-4-13-1 output: product_category_id: - - '2669' + - '6127' - input: - product_category_id: ae-2-1-2-7 + product_category_id: ae-2-1-4-13-2 output: product_category_id: - - '505377' + - '5992' - input: - product_category_id: ae-2-1-2-7-1 + product_category_id: ae-2-1-4-13-2-1 output: product_category_id: - - '5062' + - '5992' - input: - product_category_id: ae-2-1-2-7-2 + product_category_id: ae-2-1-4-13-2-2 output: product_category_id: - - '505418' + - '5992' - input: - product_category_id: ae-2-1-2-7-3 + product_category_id: ae-2-1-4-13-2-3 output: product_category_id: - - '6102' + - '5992' - input: - product_category_id: ae-2-1-2-7-3-1 + product_category_id: ae-2-1-4-13-2-4 output: product_category_id: - - '6102' + - '5992' - input: - product_category_id: ae-2-1-2-7-3-2 + product_category_id: ae-2-1-4-13-2-5 output: product_category_id: - - '6102' + - '5992' - input: - product_category_id: ae-2-1-2-7-3-3 + product_category_id: ae-2-1-4-13-2-6 output: product_category_id: - - '6102' + - '5992' - input: - product_category_id: ae-2-1-2-7-3-4 + product_category_id: ae-2-1-4-13-3 output: product_category_id: - - '6102' + - '6139' - input: - product_category_id: ae-2-1-2-7-3-5 + product_category_id: ae-2-1-4-13-3-1 output: product_category_id: - - '6102' + - '6139' - input: - product_category_id: ae-2-1-2-7-3-6 + product_category_id: ae-2-1-4-13-3-2 output: product_category_id: - - '6102' + - '6139' - input: - product_category_id: ae-2-1-2-7-3-7 + product_category_id: ae-2-1-4-13-3-3 output: product_category_id: - - '6102' + - '6139' - input: - product_category_id: ae-2-1-2-8 + product_category_id: ae-2-1-4-13-4 output: product_category_id: - - '505379' + - '6168' - input: - product_category_id: ae-2-1-2-8-1 + product_category_id: ae-2-1-4-13-5 output: product_category_id: - - '6955' + - '4579' - input: - product_category_id: ae-2-1-2-8-1-1 + product_category_id: ae-2-1-4-14 output: product_category_id: - - '6955' + - '6101' - input: - product_category_id: ae-2-1-2-8-1-2 + product_category_id: ae-2-1-4-15 output: product_category_id: - - '6955' + - '6159' - input: - product_category_id: ae-2-1-2-8-1-3 + product_category_id: ae-2-1-4-16 output: product_category_id: - - '6955' + - '505388' - input: - product_category_id: ae-2-1-2-8-1-4 + product_category_id: ae-2-1-4-16-1 output: product_category_id: - - '6955' + - '6134' - input: - product_category_id: ae-2-1-2-8-1-5 + product_category_id: ae-2-1-4-16-2 output: product_category_id: - - '6955' + - '505422' - input: - product_category_id: ae-2-1-2-8-1-6 + product_category_id: ae-2-1-4-16-2-1 output: product_category_id: - - '6955' + - '505422' - input: - product_category_id: ae-2-1-2-8-1-7 + product_category_id: ae-2-1-4-16-2-2 output: product_category_id: - - '6955' + - '505422' - input: - product_category_id: ae-2-1-2-8-1-8 + product_category_id: ae-2-1-4-16-2-3 output: product_category_id: - - '6955' + - '505422' - input: - product_category_id: ae-2-1-2-8-10 + product_category_id: ae-2-1-4-16-2-4 output: product_category_id: - - '505412' + - '505422' - input: - product_category_id: ae-2-1-2-8-10-1 + product_category_id: ae-2-1-4-16-3 output: product_category_id: - - '505412' + - '505421' - input: - product_category_id: ae-2-1-2-8-10-10 + product_category_id: ae-2-1-4-16-3-1 output: product_category_id: - - '505412' + - '505421' - input: - product_category_id: ae-2-1-2-8-10-11 + product_category_id: ae-2-1-4-16-3-2 output: product_category_id: - - '505412' + - '505421' - input: - product_category_id: ae-2-1-2-8-10-2 + product_category_id: ae-2-1-4-16-3-3 output: product_category_id: - - '505412' + - '505421' - input: - product_category_id: ae-2-1-2-8-10-3 + product_category_id: ae-2-1-4-16-3-4 output: product_category_id: - - '505412' + - '505421' - input: - product_category_id: ae-2-1-2-8-10-4 + product_category_id: ae-2-1-4-16-4 output: product_category_id: - - '505412' + - '615' - input: - product_category_id: ae-2-1-2-8-10-5 + product_category_id: ae-2-1-4-16-4-1 output: product_category_id: - - '505412' + - '615' - input: - product_category_id: ae-2-1-2-8-10-6 + product_category_id: ae-2-1-4-16-4-2 output: product_category_id: - - '505412' + - '615' - input: - product_category_id: ae-2-1-2-8-10-7 + product_category_id: ae-2-1-4-16-4-3 output: product_category_id: - - '505412' + - '615' - input: - product_category_id: ae-2-1-2-8-10-8 + product_category_id: ae-2-1-4-16-4-4 output: product_category_id: - - '505412' + - '615' - input: - product_category_id: ae-2-1-2-8-10-9 + product_category_id: ae-2-1-4-16-5 output: product_category_id: - - '505412' + - '6137' - input: - product_category_id: ae-2-1-2-8-11 + product_category_id: ae-2-1-4-16-5-1 output: product_category_id: - - '505410' + - '6137' - input: - product_category_id: ae-2-1-2-8-11-1 + product_category_id: ae-2-1-4-16-5-2 output: product_category_id: - - '505410' + - '6137' - input: - product_category_id: ae-2-1-2-8-11-2 + product_category_id: ae-2-1-4-16-5-3 output: product_category_id: - - '505410' + - '6137' - input: - product_category_id: ae-2-1-2-8-11-3 + product_category_id: ae-2-1-4-16-5-4 output: product_category_id: - - '505410' + - '6137' - input: - product_category_id: ae-2-1-2-8-11-4 + product_category_id: ae-2-1-4-17 output: product_category_id: - - '505410' + - '6156' - input: - product_category_id: ae-2-1-2-8-11-5 + product_category_id: ae-2-1-4-17-1 output: product_category_id: - - '505410' + - '543639' - input: - product_category_id: ae-2-1-2-8-12 + product_category_id: ae-2-1-4-17-2 output: product_category_id: - - '1927' + - '543638' - input: - product_category_id: ae-2-1-2-8-12-1 + product_category_id: ae-2-1-4-18 output: product_category_id: - - '1927' + - '505387' - input: - product_category_id: ae-2-1-2-8-12-2 + product_category_id: ae-2-1-4-18-1 output: product_category_id: - - '1927' + - '6164' - input: - product_category_id: ae-2-1-2-8-12-3 + product_category_id: ae-2-1-4-18-1-1 output: product_category_id: - - '1927' + - '6164' - input: - product_category_id: ae-2-1-2-8-12-4 + product_category_id: ae-2-1-4-18-1-2 output: product_category_id: - - '1927' + - '6164' - input: - product_category_id: ae-2-1-2-8-12-5 + product_category_id: ae-2-1-4-18-1-3 output: product_category_id: - - '1927' + - '6164' - input: - product_category_id: ae-2-1-2-8-2 + product_category_id: ae-2-1-4-18-1-4 output: product_category_id: - - '32' + - '6164' - input: - product_category_id: ae-2-1-2-8-3 + product_category_id: ae-2-1-4-18-1-5 output: product_category_id: - - '505413' + - '6164' - input: - product_category_id: ae-2-1-2-8-4 + product_category_id: ae-2-1-4-18-2 output: product_category_id: - - '4054' + - '6138' - input: - product_category_id: ae-2-1-2-8-4-1 + product_category_id: ae-2-1-4-18-2-1 output: product_category_id: - - '4054' + - '6138' - input: - product_category_id: ae-2-1-2-8-4-2 + product_category_id: ae-2-1-4-18-2-2 output: product_category_id: - - '4054' + - '6138' - input: - product_category_id: ae-2-1-2-8-4-4 + product_category_id: ae-2-1-4-18-2-3 output: product_category_id: - - '4054' + - '6138' - input: - product_category_id: ae-2-1-2-8-5 + product_category_id: ae-2-1-4-18-3 output: product_category_id: - - '6146' + - '6163' - input: - product_category_id: ae-2-1-2-8-5-1 + product_category_id: ae-2-1-4-18-3-1 output: product_category_id: - - '6146' + - '6163' - input: - product_category_id: ae-2-1-2-8-5-2 + product_category_id: ae-2-1-4-18-3-2 output: product_category_id: - - '6146' + - '6163' - input: - product_category_id: ae-2-1-2-8-5-3 + product_category_id: ae-2-1-4-18-4 output: product_category_id: - - '6146' + - '6155' - input: - product_category_id: ae-2-1-2-8-5-4 + product_category_id: ae-2-1-4-18-4-1 output: product_category_id: - - '6146' + - '6155' - input: - product_category_id: ae-2-1-2-8-5-5 + product_category_id: ae-2-1-4-18-4-2 output: product_category_id: - - '6146' + - '6155' - input: - product_category_id: ae-2-1-2-8-5-6 + product_category_id: ae-2-1-4-18-4-3 output: product_category_id: - - '6146' + - '6155' - input: - product_category_id: ae-2-1-2-8-6 + product_category_id: ae-2-1-4-18-4-4 output: product_category_id: - - '505411' + - '6155' - input: - product_category_id: ae-2-1-2-8-6-1 + product_category_id: ae-2-1-4-18-5 output: product_category_id: - - '505411' + - '6154' - input: - product_category_id: ae-2-1-2-8-6-2 + product_category_id: ae-2-1-4-18-6 output: product_category_id: - - '505411' + - '6153' - input: - product_category_id: ae-2-1-2-8-6-3 + product_category_id: ae-2-1-4-18-6-1 output: product_category_id: - - '505411' + - '6153' - input: - product_category_id: ae-2-1-2-8-6-4 + product_category_id: ae-2-1-4-18-6-2 output: product_category_id: - - '505411' + - '6153' - input: - product_category_id: ae-2-1-2-8-6-5 + product_category_id: ae-2-1-4-18-7 output: product_category_id: - - '505411' + - '6167' - input: - product_category_id: ae-2-1-2-8-6-6 + product_category_id: ae-2-1-4-18-7-1 output: product_category_id: - - '505411' + - '6167' - input: - product_category_id: ae-2-1-2-8-6-7 + product_category_id: ae-2-1-4-18-7-2 output: product_category_id: - - '505411' + - '6167' - input: - product_category_id: ae-2-1-2-8-7 + product_category_id: ae-2-1-4-18-7-3 output: product_category_id: - - '5996' + - '6167' - input: - product_category_id: ae-2-1-2-8-8 + product_category_id: ae-2-1-4-18-7-4 output: product_category_id: - - '198' + - '6167' - input: - product_category_id: ae-2-1-2-8-8-1 + product_category_id: ae-2-1-4-18-8 output: product_category_id: - - '198' + - '6166' - input: - product_category_id: ae-2-1-2-8-8-2 + product_category_id: ae-2-1-4-18-8-1 output: product_category_id: - - '198' + - '6166' - input: - product_category_id: ae-2-1-2-8-8-3 + product_category_id: ae-2-1-4-18-8-2 output: product_category_id: - - '198' + - '6166' - input: - product_category_id: ae-2-1-2-8-8-4 + product_category_id: ae-2-1-4-18-8-3 output: product_category_id: - - '198' + - '6166' - input: - product_category_id: ae-2-1-2-8-8-5 + product_category_id: ae-2-1-4-18-8-4 output: product_category_id: - - '198' + - '6166' - input: - product_category_id: ae-2-1-2-8-8-6 + product_category_id: ae-2-1-5 output: product_category_id: - - '198' + - '505369' - input: - product_category_id: ae-2-1-2-8-8-7 + product_category_id: ae-2-1-5-1 output: product_category_id: - - '198' + - '505394' - input: - product_category_id: ae-2-1-2-8-9 + product_category_id: ae-2-1-5-1-1 output: product_category_id: - - '5982' + - '505394' - input: - product_category_id: ae-2-1-2-8-9-1 + product_category_id: ae-2-1-5-1-2 output: product_category_id: - - '5982' + - '505394' - input: - product_category_id: ae-2-1-2-8-9-2 + product_category_id: ae-2-1-5-1-3 output: product_category_id: - - '5982' + - '505394' - input: - product_category_id: ae-2-1-2-8-9-3 + product_category_id: ae-2-1-5-1-4 output: product_category_id: - - '5982' + - '505394' - input: - product_category_id: ae-2-1-2-8-9-4 + product_category_id: ae-2-1-5-2 output: product_category_id: - - '5982' + - '499971' - input: - product_category_id: ae-2-1-2-9 + product_category_id: ae-2-1-5-2-1 output: product_category_id: - - '6121' + - '499971' - input: - product_category_id: ae-2-1-3 + product_category_id: ae-2-1-5-2-2 output: product_category_id: - - '504643' + - '499971' - input: - product_category_id: ae-2-1-3-1 + product_category_id: ae-2-1-5-2-3 output: product_category_id: - - '232168' + - '499971' - input: - product_category_id: ae-2-1-3-2 + product_category_id: ae-2-1-5-3 output: product_category_id: - - '4580' + - '505395' - input: - product_category_id: ae-2-1-3-3 + product_category_id: ae-2-1-5-3-1 output: product_category_id: - - '505286' + - '505395' - input: - product_category_id: ae-2-1-3-4 + product_category_id: ae-2-1-5-3-2 output: product_category_id: - - '5120' + - '505395' - input: - product_category_id: ae-2-1-3-5 + product_category_id: ae-2-1-5-3-3 output: product_category_id: - - '503348' + - '505395' - input: - product_category_id: ae-2-1-3-6 + product_category_id: ae-2-1-5-3-4 output: product_category_id: - - '6136' + - '505395' - input: - product_category_id: ae-2-1-3-6-1 + product_category_id: ae-2-1-5-3-5 output: product_category_id: - - '6136' + - '505395' - input: - product_category_id: ae-2-1-3-6-11 + product_category_id: ae-2-1-6 output: product_category_id: - - '6136' + - '505371' - input: - product_category_id: ae-2-1-3-6-12 + product_category_id: ae-2-1-6-1 output: product_category_id: - - '6136' + - '6999' - input: - product_category_id: ae-2-1-3-6-13 + product_category_id: ae-2-1-6-1-1 output: product_category_id: - - '6136' + - '6999' - input: - product_category_id: ae-2-1-3-6-14 + product_category_id: ae-2-1-6-1-2 output: product_category_id: - - '6136' + - '6999' - input: - product_category_id: ae-2-1-3-6-15 + product_category_id: ae-2-1-6-2 output: product_category_id: - - '6136' + - '8007' - input: - product_category_id: ae-2-1-3-6-16 + product_category_id: ae-2-1-6-3 output: product_category_id: - - '6136' + - '6135' - input: - product_category_id: ae-2-1-3-6-17 + product_category_id: ae-2-1-6-3-1 output: product_category_id: - - '6136' + - '6135' - input: - product_category_id: ae-2-1-3-6-18 + product_category_id: ae-2-1-6-3-2 output: product_category_id: - - '6136' + - '6135' - input: - product_category_id: ae-2-1-3-6-19 + product_category_id: ae-2-1-6-4 output: product_category_id: - - '6136' + - '505373' - input: - product_category_id: ae-2-1-3-6-2 + product_category_id: ae-2-1-6-4-1 output: product_category_id: - - '6136' + - '505373' - input: - product_category_id: ae-2-1-3-6-20 + product_category_id: ae-2-1-6-4-2 output: product_category_id: - - '6136' + - '505373' - input: - product_category_id: ae-2-1-3-6-3 + product_category_id: ae-2-1-6-4-3 output: product_category_id: - - '6136' + - '505373' - input: - product_category_id: ae-2-1-3-6-4 + product_category_id: ae-2-1-6-5 output: product_category_id: - - '6136' + - '3697' - input: - product_category_id: ae-2-1-3-6-5 + product_category_id: ae-2-1-6-5-1 output: product_category_id: - - '6136' + - '3697' - input: - product_category_id: ae-2-1-3-6-6 + product_category_id: ae-2-1-6-5-2 output: product_category_id: - - '6136' + - '3697' - input: - product_category_id: ae-2-1-3-6-7 + product_category_id: ae-2-1-6-5-3 output: product_category_id: - - '6136' + - '3697' - input: - product_category_id: ae-2-1-3-6-8 + product_category_id: ae-2-2 output: product_category_id: - - '6136' + - '216' - input: - product_category_id: ae-2-1-3-6-9 + product_category_id: ae-2-2-1 output: product_category_id: - - '6136' + - '3599' - input: - product_category_id: ae-2-1-3-7 + product_category_id: ae-2-2-2 output: product_category_id: - - '499918' + - '217' - input: - product_category_id: ae-2-1-4 + product_category_id: ae-2-2-2-1 output: product_category_id: - - '504639' + - '543607' - input: - product_category_id: ae-2-1-4-1 + product_category_id: ae-2-2-2-2 output: product_category_id: - - '6152' + - '543606' - input: - product_category_id: ae-2-1-4-1-1 + product_category_id: ae-2-2-2-2-1 output: product_category_id: - - '6152' + - '543606' - input: - product_category_id: ae-2-1-4-1-2 + product_category_id: ae-2-2-2-2-2 output: product_category_id: - - '6152' + - '543606' - input: - product_category_id: ae-2-1-4-10 + product_category_id: ae-2-2-2-2-3 output: product_category_id: - - '6158' + - '543606' - input: - product_category_id: ae-2-1-4-10-1 + product_category_id: ae-2-2-3 output: product_category_id: - - '6158' + - '6997' - input: - product_category_id: ae-2-1-4-10-2 + product_category_id: ae-2-2-3-1 output: product_category_id: - - '6158' + - '6997' - input: - product_category_id: ae-2-1-4-10-3 + product_category_id: ae-2-2-3-2 output: product_category_id: - - '6158' + - '6997' - input: - product_category_id: ae-2-1-4-10-4 + product_category_id: ae-2-2-3-3 output: product_category_id: - - '6158' + - '6997' - input: - product_category_id: ae-2-1-4-10-5 + product_category_id: ae-2-2-3-4 output: product_category_id: - - '6158' + - '6997' - input: - product_category_id: ae-2-1-4-11 + product_category_id: ae-2-2-4 output: product_category_id: - - '4073' + - '220' - input: - product_category_id: ae-2-1-4-12 + product_category_id: ae-2-2-4-1 output: product_category_id: - - '5921' + - '499953' - input: - product_category_id: ae-2-1-4-13 + product_category_id: ae-2-2-4-1-1 output: product_category_id: - - '505393' + - '499953' - input: - product_category_id: ae-2-1-4-13-1 + product_category_id: ae-2-2-4-1-2 output: product_category_id: - - '6127' + - '499953' - input: - product_category_id: ae-2-1-4-13-2 + product_category_id: ae-2-2-4-1-3 output: product_category_id: - - '5992' + - '499953' - input: - product_category_id: ae-2-1-4-13-2-1 + product_category_id: ae-2-2-4-1-4 output: product_category_id: - - '5992' + - '499953' - input: - product_category_id: ae-2-1-4-13-2-2 + product_category_id: ae-2-2-4-1-5 output: product_category_id: - - '5992' + - '499953' - input: - product_category_id: ae-2-1-4-13-2-3 + product_category_id: ae-2-2-4-2 output: product_category_id: - - '5992' + - '5311' - input: - product_category_id: ae-2-1-4-13-2-4 + product_category_id: ae-2-2-4-2-1 output: product_category_id: - - '5992' + - '5311' - input: - product_category_id: ae-2-1-4-13-2-5 + product_category_id: ae-2-2-4-2-2 output: product_category_id: - - '5992' + - '5311' - input: - product_category_id: ae-2-1-4-13-2-6 + product_category_id: ae-2-2-4-2-3 output: product_category_id: - - '5992' + - '5311' - input: - product_category_id: ae-2-1-4-13-3 + product_category_id: ae-2-2-4-2-4 output: product_category_id: - - '6139' + - '5311' - input: - product_category_id: ae-2-1-4-13-3-1 + product_category_id: ae-2-2-4-2-5 output: product_category_id: - - '6139' + - '5311' - input: - product_category_id: ae-2-1-4-13-3-2 + product_category_id: ae-2-2-4-2-6 output: product_category_id: - - '6139' + - '5311' - input: - product_category_id: ae-2-1-4-13-3-3 + product_category_id: ae-2-2-4-3 output: product_category_id: - - '6139' + - '221' - input: - product_category_id: ae-2-1-4-13-4 + product_category_id: ae-2-2-4-3-1 output: product_category_id: - - '6168' + - '221' - input: - product_category_id: ae-2-1-4-13-5 + product_category_id: ae-2-2-4-3-2 output: product_category_id: - - '4579' + - '221' - input: - product_category_id: ae-2-1-4-14 + product_category_id: ae-2-2-4-3-3 output: product_category_id: - - '6101' + - '221' - input: - product_category_id: ae-2-1-4-15 + product_category_id: ae-2-2-4-3-4 output: product_category_id: - - '6159' + - '221' - input: - product_category_id: ae-2-1-4-16 + product_category_id: ae-2-2-4-3-5 output: product_category_id: - - '505388' + - '221' - input: - product_category_id: ae-2-1-4-16-1 + product_category_id: ae-2-2-4-4 output: product_category_id: - - '6134' + - '1340' - input: - product_category_id: ae-2-1-4-16-2 + product_category_id: ae-2-2-5 output: product_category_id: - - '505422' + - '219' - input: - product_category_id: ae-2-1-4-16-2-1 + product_category_id: ae-2-2-5-1 output: product_category_id: - - '505422' + - '219' - input: - product_category_id: ae-2-1-4-16-2-2 + product_category_id: ae-2-2-5-2 output: product_category_id: - - '505422' + - '219' - input: - product_category_id: ae-2-1-4-16-2-3 + product_category_id: ae-2-2-5-3 output: product_category_id: - - '505422' + - '219' - input: - product_category_id: ae-2-1-4-16-2-4 + product_category_id: ae-2-2-5-4 output: product_category_id: - - '505422' + - '219' - input: - product_category_id: ae-2-1-4-16-3 + product_category_id: ae-2-2-5-6 output: product_category_id: - - '505421' + - '219' - input: - product_category_id: ae-2-1-4-16-3-1 + product_category_id: ae-2-2-6 output: product_category_id: - - '505421' + - '218' - input: - product_category_id: ae-2-1-4-16-3-2 + product_category_id: ae-2-2-6-1 output: product_category_id: - - '505421' + - '218' - input: - product_category_id: ae-2-1-4-16-3-3 + product_category_id: ae-2-2-6-2 output: product_category_id: - - '505421' + - '218' - input: - product_category_id: ae-2-1-4-16-3-4 + product_category_id: ae-2-2-6-3 output: product_category_id: - - '505421' + - '218' - input: - product_category_id: ae-2-1-4-16-4 + product_category_id: ae-2-2-6-4 output: product_category_id: - - '615' + - '218' - input: - product_category_id: ae-2-1-4-16-4-1 + product_category_id: ae-2-2-7 output: product_category_id: - - '615' + - '6000' - input: - product_category_id: ae-2-1-4-16-4-2 + product_category_id: ae-2-2-8 output: product_category_id: - - '615' + - '37' - input: - product_category_id: ae-2-1-4-16-4-3 + product_category_id: ae-2-2-8-1 output: product_category_id: - - '615' + - '37' - input: - product_category_id: ae-2-1-4-16-4-4 + product_category_id: ae-2-2-8-2 output: product_category_id: - - '615' + - '37' - input: - product_category_id: ae-2-1-4-16-5 + product_category_id: ae-2-2-8-3 output: product_category_id: - - '6137' + - '37' - input: - product_category_id: ae-2-1-4-16-5-1 + product_category_id: ae-2-2-8-4 output: product_category_id: - - '6137' + - '37' - input: - product_category_id: ae-2-1-4-16-5-2 + product_category_id: ae-2-2-8-5 output: product_category_id: - - '6137' + - '37' - input: - product_category_id: ae-2-1-4-16-5-3 + product_category_id: ae-2-2-8-6 output: product_category_id: - - '6137' + - '37' - input: - product_category_id: ae-2-1-4-16-5-4 + product_category_id: ae-2-2-8-7 output: product_category_id: - - '6137' + - '37' - input: - product_category_id: ae-2-1-4-17 + product_category_id: ae-2-2-8-8 output: product_category_id: - - '6156' + - '37' - input: - product_category_id: ae-2-1-4-17-1 + product_category_id: ae-2-2-8-9 output: product_category_id: - - '543639' + - '37' - input: - product_category_id: ae-2-1-4-17-2 + product_category_id: ae-2-2-8-10 output: product_category_id: - - '543638' + - '37' - input: - product_category_id: ae-2-1-4-18 + product_category_id: ae-2-2-8-11 output: product_category_id: - - '505387' + - '37' - input: - product_category_id: ae-2-1-4-18-1 + product_category_id: ae-2-2-8-12 output: product_category_id: - - '6164' + - '37' - input: - product_category_id: ae-2-1-4-18-1-1 + product_category_id: ae-2-2-8-13 output: product_category_id: - - '6164' + - '37' - input: - product_category_id: ae-2-1-4-18-1-2 + product_category_id: ae-2-2-8-14 output: product_category_id: - - '6164' + - '37' - input: - product_category_id: ae-2-1-4-18-1-3 + product_category_id: ae-2-2-9 output: product_category_id: - - '6164' + - '1312' - input: - product_category_id: ae-2-1-4-18-1-4 + product_category_id: ae-2-2-10 output: product_category_id: - - '6164' + - '3865' - input: - product_category_id: ae-2-1-4-18-1-5 + product_category_id: ae-2-2-10-1 output: product_category_id: - - '6164' + - '3515' - input: - product_category_id: ae-2-1-4-18-2 + product_category_id: ae-2-2-10-1-1 output: product_category_id: - - '6138' + - '3515' - input: - product_category_id: ae-2-1-4-18-2-1 + product_category_id: ae-2-2-10-1-2 output: product_category_id: - - '6138' + - '3515' - input: - product_category_id: ae-2-1-4-18-2-2 + product_category_id: ae-2-2-10-1-3 output: product_category_id: - - '6138' + - '3515' - input: - product_category_id: ae-2-1-4-18-2-3 + product_category_id: ae-2-2-10-1-4 output: product_category_id: - - '6138' + - '3515' - input: - product_category_id: ae-2-1-4-18-3 + product_category_id: ae-2-2-10-1-5 output: product_category_id: - - '6163' + - '3515' - input: - product_category_id: ae-2-1-4-18-3-1 + product_category_id: ae-2-2-10-1-6 output: product_category_id: - - '6163' + - '3515' - input: - product_category_id: ae-2-1-4-18-3-2 + product_category_id: ae-2-2-10-1-7 output: product_category_id: - - '6163' + - '3515' - input: - product_category_id: ae-2-1-4-18-4 + product_category_id: ae-2-2-10-1-8 output: product_category_id: - - '6155' + - '3515' - input: - product_category_id: ae-2-1-4-18-4-1 + product_category_id: ae-2-2-10-1-9 output: product_category_id: - - '6155' + - '3515' - input: - product_category_id: ae-2-1-4-18-4-2 + product_category_id: ae-2-2-10-1-10 output: product_category_id: - - '6155' + - '3515' - input: - product_category_id: ae-2-1-4-18-4-3 + product_category_id: ae-2-2-10-1-11 output: product_category_id: - - '6155' + - '3515' - input: - product_category_id: ae-2-1-4-18-4-4 + product_category_id: ae-2-2-10-1-12 output: product_category_id: - - '6155' + - '3515' - input: - product_category_id: ae-2-1-4-18-5 + product_category_id: ae-2-2-10-1-14 output: product_category_id: - - '6154' + - '3515' - input: - product_category_id: ae-2-1-4-18-6 + product_category_id: ae-2-2-10-1-15 output: product_category_id: - - '6153' + - '3515' - input: - product_category_id: ae-2-1-4-18-6-1 + product_category_id: ae-2-2-10-1-16 output: product_category_id: - - '6153' + - '3515' - input: - product_category_id: ae-2-1-4-18-6-2 + product_category_id: ae-2-2-11 output: product_category_id: - - '6153' + - '3893' - input: - product_category_id: ae-2-1-4-18-7 + product_category_id: ae-2-3 output: product_category_id: - - '6167' + - '3577' - input: - product_category_id: ae-2-1-4-18-7-1 + product_category_id: ae-2-3-1 output: product_category_id: - - '6167' + - '3014' - input: - product_category_id: ae-2-1-4-18-7-2 + product_category_id: ae-2-3-1-1 output: product_category_id: - - '6167' + - '3014' - input: - product_category_id: ae-2-1-4-18-7-3 + product_category_id: ae-2-3-1-2 output: product_category_id: - - '6167' + - '3014' - input: - product_category_id: ae-2-1-4-18-7-4 + product_category_id: ae-2-3-1-3 output: product_category_id: - - '6167' + - '3014' - input: - product_category_id: ae-2-1-4-18-8 + product_category_id: ae-2-3-1-4 output: product_category_id: - - '6166' + - '3014' - input: - product_category_id: ae-2-1-4-18-8-1 + product_category_id: ae-2-3-2 output: product_category_id: - - '6166' + - '502980' - input: - product_category_id: ae-2-1-4-18-8-2 + product_category_id: ae-2-3-3 output: product_category_id: - - '6166' + - '499891' - input: - product_category_id: ae-2-1-4-18-8-3 + product_category_id: ae-2-3-3-1 output: product_category_id: - - '6166' + - '499891' - input: - product_category_id: ae-2-1-4-18-8-4 + product_category_id: ae-2-3-3-2 output: product_category_id: - - '6166' + - '499891' - input: - product_category_id: ae-2-1-4-2 + product_category_id: ae-2-3-3-3 output: product_category_id: - - '6151' + - '499891' - input: - product_category_id: ae-2-1-4-2-1 + product_category_id: ae-2-3-4 output: product_category_id: - - '6151' + - '2579' - input: - product_category_id: ae-2-1-4-2-2 + product_category_id: ae-2-3-4-1 output: product_category_id: - - '6151' + - '2579' - input: - product_category_id: ae-2-1-4-2-3 + product_category_id: ae-2-3-4-2 output: product_category_id: - - '6151' + - '2579' - input: - product_category_id: ae-2-1-4-2-4 + product_category_id: ae-2-3-4-3 output: product_category_id: - - '6151' + - '2579' - input: - product_category_id: ae-2-1-4-2-5 + product_category_id: ae-2-3-4-4 output: product_category_id: - - '6151' + - '2579' - input: - product_category_id: ae-2-1-4-2-6 + product_category_id: ae-2-4 output: product_category_id: - - '6151' + - '33' - input: - product_category_id: ae-2-1-4-3 + product_category_id: ae-2-4-1 output: product_category_id: - - '505391' + - '33' - input: - product_category_id: ae-2-1-4-3-1 + product_category_id: ae-2-4-2 output: product_category_id: - - '1653' + - '33' - input: - product_category_id: ae-2-1-4-3-1-1 + product_category_id: ae-2-4-3 output: product_category_id: - - '1653' + - '33' - input: - product_category_id: ae-2-1-4-3-1-2 + product_category_id: ae-2-4-4 output: product_category_id: - - '1653' + - '33' - input: - product_category_id: ae-2-1-4-3-1-3 + product_category_id: ae-2-4-5 output: product_category_id: - - '1653' + - '33' - input: - product_category_id: ae-2-1-4-3-1-4 + product_category_id: ae-2-4-6 output: product_category_id: - - '1653' + - '33' - input: - product_category_id: ae-2-1-4-3-1-5 + product_category_id: ae-2-4-7 output: product_category_id: - - '1653' + - '33' - input: - product_category_id: ae-2-1-4-3-1-6 + product_category_id: ae-2-5 output: product_category_id: - - '1653' + - '35' - input: - product_category_id: ae-2-1-4-3-1-7 + product_category_id: ae-2-6 output: product_category_id: - - '1653' + - '5999' - input: - product_category_id: ae-2-1-4-3-1-8 + product_category_id: ae-2-6-1 output: product_category_id: - - '1653' + - '3885' - input: - product_category_id: ae-2-1-4-3-2 + product_category_id: ae-2-6-1-1 output: product_category_id: - - '1719' + - '3885' - input: - product_category_id: ae-2-1-4-4 + product_category_id: ae-2-6-1-2 output: product_category_id: - - '504640' + - '3885' - input: - product_category_id: ae-2-1-4-4-1 + product_category_id: ae-2-6-1-3 output: product_category_id: - - '504641' + - '3885' - input: - product_category_id: ae-2-1-4-4-1-1 + product_category_id: ae-2-6-1-4 output: product_category_id: - - '504641' + - '3885' - input: - product_category_id: ae-2-1-4-4-1-2 + product_category_id: ae-2-6-2 output: product_category_id: - - '504641' + - '5151' - input: - product_category_id: ae-2-1-4-4-1-3 + product_category_id: ae-2-6-3 output: product_category_id: - - '504641' + - '5150' - input: - product_category_id: ae-2-1-4-4-1-4 + product_category_id: ae-2-6-3-1 output: product_category_id: - - '504641' + - '5150' - input: - product_category_id: ae-2-1-4-4-2 + product_category_id: ae-2-6-3-2 output: product_category_id: - - '504642' + - '5150' - input: - product_category_id: ae-2-1-4-4-3 + product_category_id: ae-2-6-3-3 output: product_category_id: - - '5136' + - '5150' - input: - product_category_id: ae-2-1-4-4-4 + product_category_id: ae-2-6-3-4 output: product_category_id: - - '6119' + - '5150' - input: - product_category_id: ae-2-1-4-4-4-1 + product_category_id: ae-2-6-3-5 output: product_category_id: - - '6119' + - '5150' - input: - product_category_id: ae-2-1-4-4-4-2 + product_category_id: ae-2-6-4 output: product_category_id: - - '6119' + - '4175' - input: - product_category_id: ae-2-1-4-4-5 + product_category_id: ae-2-7 output: product_category_id: - - '7340' + - '55' - input: - product_category_id: ae-2-1-4-4-6 + product_category_id: ae-2-7-1 output: product_category_id: - - '6122' + - '57' - input: - product_category_id: ae-2-1-4-4-6-1 + product_category_id: ae-2-7-1-1 output: product_category_id: - - '6122' + - '4797' - input: - product_category_id: ae-2-1-4-4-6-2 + product_category_id: ae-2-7-1-1-1 output: product_category_id: - - '6122' + - '4891' - input: - product_category_id: ae-2-1-4-4-7 + product_category_id: ae-2-7-1-1-2 output: product_category_id: - - '6161' + - '4892' - input: - product_category_id: ae-2-1-4-4-8 + product_category_id: ae-2-7-1-1-2-1 output: product_category_id: - - '6447' + - '4892' - input: - product_category_id: ae-2-1-4-4-8-1 + product_category_id: ae-2-7-1-1-2-2 output: product_category_id: - - '6447' + - '4892' - input: - product_category_id: ae-2-1-4-4-8-2 + product_category_id: ae-2-7-1-1-2-3 output: product_category_id: - - '6447' + - '4892' - input: - product_category_id: ae-2-1-4-4-8-3 + product_category_id: ae-2-7-1-1-2-4 output: product_category_id: - - '6447' + - '4892' - input: - product_category_id: ae-2-1-4-4-8-4 + product_category_id: ae-2-7-1-1-3 output: product_category_id: - - '6447' + - '4890' - input: - product_category_id: ae-2-1-4-5 + product_category_id: ae-2-7-1-1-4 output: product_category_id: - - '505386' + - '4893' - input: - product_category_id: ae-2-1-4-6 + product_category_id: ae-2-7-1-1-4-1 output: product_category_id: - - '505392' + - '4893' - input: - product_category_id: ae-2-1-4-6-1 + product_category_id: ae-2-7-1-1-4-2 output: product_category_id: - - '18' + - '4893' - input: - product_category_id: ae-2-1-4-6-10 + product_category_id: ae-2-7-1-1-4-3 output: product_category_id: - - '505420' + - '4893' - input: - product_category_id: ae-2-1-4-6-2 + product_category_id: ae-2-7-1-1-4-4 output: product_category_id: - - '6126' + - '4893' - input: - product_category_id: ae-2-1-4-6-3 + product_category_id: ae-2-7-1-1-5 output: product_category_id: - - '4032' + - '4894' - input: - product_category_id: ae-2-1-4-6-4 + product_category_id: ae-2-7-1-1-6 output: product_category_id: - - '3083' + - '4895' - input: - product_category_id: ae-2-1-4-6-4-1 + product_category_id: ae-2-7-1-2 output: product_category_id: - - '3083' + - '505310' - input: - product_category_id: ae-2-1-4-6-4-2 + product_category_id: ae-2-7-1-3 output: product_category_id: - - '3083' + - '505308' - input: - product_category_id: ae-2-1-4-6-5 + product_category_id: ae-2-7-1-4 output: product_category_id: - - '6125' + - '505768' - input: - product_category_id: ae-2-1-4-6-6 + product_category_id: ae-2-7-1-4-1 output: product_category_id: - - '5883' + - '505768' - input: - product_category_id: ae-2-1-4-6-6-1 + product_category_id: ae-2-7-1-4-2 output: product_category_id: - - '5883' + - '505768' - input: - product_category_id: ae-2-1-4-6-6-2 + product_category_id: ae-2-7-1-4-3 output: product_category_id: - - '5883' + - '505768' - input: - product_category_id: ae-2-1-4-6-7 + product_category_id: ae-2-7-1-4-4 output: product_category_id: - - '2671' + - '505768' - input: - product_category_id: ae-2-1-4-6-8 + product_category_id: ae-2-7-1-4-5 output: product_category_id: - - '6160' + - '505768' - input: - product_category_id: ae-2-1-4-6-8-1 + product_category_id: ae-2-7-1-5 output: product_category_id: - - '6160' + - '4798' - input: - product_category_id: ae-2-1-4-6-8-2 + product_category_id: ae-2-7-1-6 output: product_category_id: - - '6160' + - '505309' - input: - product_category_id: ae-2-1-4-6-8-3 + product_category_id: ae-2-7-2 output: product_category_id: - - '6160' + - '505288' - input: - product_category_id: ae-2-1-4-6-9 + product_category_id: ae-2-7-3 output: product_category_id: - - '6157' + - '3270' - input: - product_category_id: ae-2-1-4-6-9-1 + product_category_id: ae-2-7-4 output: product_category_id: - - '6157' + - '505365' - input: - product_category_id: ae-2-1-4-6-9-2 + product_category_id: ae-2-7-5 output: product_category_id: - - '6157' + - '505328' - input: - product_category_id: ae-2-1-4-6-9-3 + product_category_id: ae-2-7-6 output: product_category_id: - - '6157' + - '500001' - input: - product_category_id: ae-2-1-4-7 + product_category_id: ae-2-7-7 output: product_category_id: - - '5137' + - '7277' - input: - product_category_id: ae-2-1-4-8 + product_category_id: ae-2-7-7-1 output: product_category_id: - - '6150' + - '7279' - input: - product_category_id: ae-2-1-4-9 + product_category_id: ae-2-7-7-2 output: product_category_id: - - '6133' + - '7280' - input: - product_category_id: ae-2-1-5 + product_category_id: ae-2-7-7-3 output: product_category_id: - - '505369' + - '7278' - input: - product_category_id: ae-2-1-5-1 + product_category_id: ae-2-7-7-3-1 output: product_category_id: - - '505394' + - '7278' - input: - product_category_id: ae-2-1-5-1-1 + product_category_id: ae-2-7-7-3-2 output: product_category_id: - - '505394' + - '7278' - input: - product_category_id: ae-2-1-5-1-2 + product_category_id: ae-2-7-7-3-3 output: product_category_id: - - '505394' + - '7278' - input: - product_category_id: ae-2-1-5-1-3 + product_category_id: ae-2-7-7-3-4 output: product_category_id: - - '505394' + - '7278' - input: - product_category_id: ae-2-1-5-1-4 + product_category_id: ae-2-7-8 output: product_category_id: - - '505394' + - '4142' - input: - product_category_id: ae-2-1-5-2 + product_category_id: ae-2-7-9 output: product_category_id: - - '499971' + - '8072' - input: - product_category_id: ae-2-1-5-2-1 + product_category_id: ae-2-7-9-1 output: product_category_id: - - '499971' + - '6970' - input: - product_category_id: ae-2-1-5-2-2 + product_category_id: ae-2-7-9-2 output: product_category_id: - - '499971' + - '8461' - input: - product_category_id: ae-2-1-5-2-3 + product_category_id: ae-2-7-9-3 output: product_category_id: - - '499971' + - '8073' - input: - product_category_id: ae-2-1-5-3 + product_category_id: ae-2-7-9-4 output: product_category_id: - - '505395' + - '8462' - input: - product_category_id: ae-2-1-5-3-1 + product_category_id: ae-2-7-9-5 output: product_category_id: - - '505395' + - '7364' - input: - product_category_id: ae-2-1-5-3-2 + product_category_id: ae-2-7-9-6 output: product_category_id: - - '505395' + - '8480' - input: - product_category_id: ae-2-1-5-3-3 + product_category_id: ae-2-7-10 output: product_category_id: - - '505395' + - '56' - input: - product_category_id: ae-2-1-5-3-4 + product_category_id: ae-2-7-10-1 output: product_category_id: - - '505395' + - '56' - input: - product_category_id: ae-2-1-5-3-5 + product_category_id: ae-2-7-10-2 output: product_category_id: - - '505395' + - '56' - input: - product_category_id: ae-2-1-6 + product_category_id: ae-2-7-10-3 output: product_category_id: - - '505371' + - '56' - input: - product_category_id: ae-2-1-6-1 + product_category_id: ae-2-7-10-4 output: product_category_id: - - '6999' + - '56' - input: - product_category_id: ae-2-1-6-1-1 + product_category_id: ae-2-7-11 output: product_category_id: - - '6999' + - '60' - input: - product_category_id: ae-2-1-6-1-2 + product_category_id: ae-2-7-11-1 output: product_category_id: - - '6999' + - '7357' - input: - product_category_id: ae-2-1-6-2 + product_category_id: ae-2-7-11-1-1 output: product_category_id: - - '8007' + - '7357' - input: - product_category_id: ae-2-1-6-3 + product_category_id: ae-2-7-11-1-2 output: product_category_id: - - '6135' + - '7357' - input: - product_category_id: ae-2-1-6-3-1 + product_category_id: ae-2-7-11-1-3 output: product_category_id: - - '6135' + - '7357' - input: - product_category_id: ae-2-1-6-3-2 + product_category_id: ae-2-7-11-1-4 output: product_category_id: - - '6135' + - '7357' - input: - product_category_id: ae-2-1-6-4 + product_category_id: ae-2-7-11-2 output: product_category_id: - - '505373' + - '3588' - input: - product_category_id: ae-2-1-6-4-1 + product_category_id: ae-2-7-11-2-1 output: product_category_id: - - '505373' + - '3588' - input: - product_category_id: ae-2-1-6-4-2 + product_category_id: ae-2-7-11-2-2 output: product_category_id: - - '505373' + - '3588' - input: - product_category_id: ae-2-1-6-4-3 + product_category_id: ae-2-7-11-2-3 output: product_category_id: - - '505373' + - '3588' - input: - product_category_id: ae-2-1-6-5 + product_category_id: ae-2-7-11-2-4 output: product_category_id: - - '3697' + - '3588' - input: - product_category_id: ae-2-1-6-5-1 + product_category_id: ae-2-7-11-2-5 output: product_category_id: - - '3697' + - '3588' - input: - product_category_id: ae-2-1-6-5-2 + product_category_id: ae-2-7-11-3 output: product_category_id: - - '3697' + - '3324' - input: - product_category_id: ae-2-1-6-5-3 + product_category_id: ae-2-7-11-3-1 output: product_category_id: - - '3697' + - '3324' - input: - product_category_id: ae-2-2 + product_category_id: ae-2-7-11-3-2 output: product_category_id: - - '216' + - '3324' - input: - product_category_id: ae-2-2-1 + product_category_id: ae-2-7-12 output: product_category_id: - - '3599' + - '3465' - input: - product_category_id: ae-2-2-10 + product_category_id: ae-2-7-12-1 output: product_category_id: - - '3865' + - '7100' - input: - product_category_id: ae-2-2-10-1 + product_category_id: ae-2-7-12-1-1 output: product_category_id: - - '3515' + - '7100' - input: - product_category_id: ae-2-2-10-1-1 + product_category_id: ae-2-7-12-1-2 output: product_category_id: - - '3515' + - '7100' - input: - product_category_id: ae-2-2-10-1-10 + product_category_id: ae-2-7-12-1-3 output: product_category_id: - - '3515' + - '7100' - input: - product_category_id: ae-2-2-10-1-11 + product_category_id: ae-2-7-12-2 output: product_category_id: - - '3515' + - '7231' - input: - product_category_id: ae-2-2-10-1-12 + product_category_id: ae-2-7-12-2-1 output: product_category_id: - - '3515' + - '7231' - input: - product_category_id: ae-2-2-10-1-14 + product_category_id: ae-2-7-12-2-2 output: product_category_id: - - '3515' + - '7231' - input: - product_category_id: ae-2-2-10-1-15 + product_category_id: ae-2-7-12-3 output: product_category_id: - - '3515' + - '7153' - input: - product_category_id: ae-2-2-10-1-16 + product_category_id: ae-2-7-12-3-1 output: product_category_id: - - '3515' + - '7153' - input: - product_category_id: ae-2-2-10-1-2 + product_category_id: ae-2-7-12-3-2 output: product_category_id: - - '3515' + - '7153' - input: - product_category_id: ae-2-2-10-1-3 + product_category_id: ae-2-7-12-3-3 output: product_category_id: - - '3515' + - '7153' - input: - product_category_id: ae-2-2-10-1-4 + product_category_id: ae-2-7-12-4 output: product_category_id: - - '3515' + - '7152' - input: - product_category_id: ae-2-2-10-1-5 + product_category_id: ae-2-7-12-4-1 output: product_category_id: - - '3515' + - '7152' - input: - product_category_id: ae-2-2-10-1-6 + product_category_id: ae-2-7-12-5 output: product_category_id: - - '3515' + - '7099' - input: - product_category_id: ae-2-2-10-1-7 + product_category_id: ae-2-7-12-5-1 output: product_category_id: - - '3515' + - '7103' - input: - product_category_id: ae-2-2-10-1-8 + product_category_id: ae-2-7-12-5-2 output: product_category_id: - - '3515' + - '7102' - input: - product_category_id: ae-2-2-10-1-9 + product_category_id: ae-2-7-12-5-2-1 output: product_category_id: - - '3515' + - '7102' - input: - product_category_id: ae-2-2-11 + product_category_id: ae-2-7-12-5-2-2 output: product_category_id: - - '3893' + - '7102' - input: - product_category_id: ae-2-2-2 + product_category_id: ae-2-7-12-5-2-3 output: product_category_id: - - '217' + - '7102' - input: - product_category_id: ae-2-2-2-1 + product_category_id: ae-2-7-12-5-2-4 output: product_category_id: - - '543607' + - '7102' - input: - product_category_id: ae-2-2-2-2 + product_category_id: ae-2-7-12-5-2-5 output: product_category_id: - - '543606' + - '7102' - input: - product_category_id: ae-2-2-2-2-1 + product_category_id: ae-2-7-12-5-3 output: product_category_id: - - '543606' + - '7101' - input: - product_category_id: ae-2-2-2-2-2 + product_category_id: ae-2-7-12-5-3-1 output: product_category_id: - - '543606' + - '7101' - input: - product_category_id: ae-2-2-2-2-3 + product_category_id: ae-2-7-12-5-3-2 output: product_category_id: - - '543606' + - '7101' - input: - product_category_id: ae-2-2-3 + product_category_id: ae-2-7-12-5-3-3 output: product_category_id: - - '6997' + - '7101' - input: - product_category_id: ae-2-2-3-1 + product_category_id: ae-2-7-12-5-3-4 output: product_category_id: - - '6997' + - '7101' - input: - product_category_id: ae-2-2-3-2 + product_category_id: ae-2-7-12-5-3-5 output: product_category_id: - - '6997' + - '7101' - input: - product_category_id: ae-2-2-3-3 + product_category_id: ae-2-7-12-6 output: product_category_id: - - '6997' + - '7150' - input: - product_category_id: ae-2-2-3-4 + product_category_id: ae-2-7-12-6-1 output: product_category_id: - - '6997' + - '7151' - input: - product_category_id: ae-2-2-4 + product_category_id: ae-2-7-12-7 output: product_category_id: - - '220' + - '59' - input: - product_category_id: ae-2-2-4-1 + product_category_id: ae-2-7-12-7-1 output: product_category_id: - - '499953' + - '59' - input: - product_category_id: ae-2-2-4-1-1 + product_category_id: ae-2-7-12-7-2 output: product_category_id: - - '499953' + - '59' - input: - product_category_id: ae-2-2-4-1-2 + product_category_id: ae-2-7-12-8 output: product_category_id: - - '499953' + - '7455' - input: - product_category_id: ae-2-2-4-1-3 + product_category_id: ae-2-7-12-8-1 output: product_category_id: - - '499953' + - '7455' - input: - product_category_id: ae-2-2-4-1-4 + product_category_id: ae-2-7-12-8-2 output: product_category_id: - - '499953' + - '7455' - input: - product_category_id: ae-2-2-4-1-5 + product_category_id: ae-2-7-12-8-3 output: product_category_id: - - '499953' + - '7455' - input: - product_category_id: ae-2-2-4-2 + product_category_id: ae-2-7-12-9 output: product_category_id: - - '5311' + - '7282' - input: - product_category_id: ae-2-2-4-2-1 + product_category_id: ae-2-7-12-9-1 output: product_category_id: - - '5311' + - '7283' - input: - product_category_id: ae-2-2-4-2-2 + product_category_id: ae-2-7-12-9-2 output: product_category_id: - - '5311' + - '7284' - input: - product_category_id: ae-2-2-4-2-3 + product_category_id: ae-2-7-12-9-2-1 output: product_category_id: - - '5311' + - '7284' - input: - product_category_id: ae-2-2-4-2-4 + product_category_id: ae-2-7-12-9-2-2 output: product_category_id: - - '5311' + - '7284' - input: - product_category_id: ae-2-2-4-2-5 + product_category_id: ae-2-7-12-9-2-3 output: product_category_id: - - '5311' + - '7284' - input: - product_category_id: ae-2-2-4-2-6 + product_category_id: ae-2-7-12-9-2-4 output: product_category_id: - - '5311' + - '7284' - input: - product_category_id: ae-2-2-4-3 + product_category_id: ae-2-7-12-10 output: product_category_id: - - '221' + - '4631' - input: - product_category_id: ae-2-2-4-3-1 + product_category_id: ae-2-7-12-11 output: product_category_id: - - '221' + - '7308' - input: - product_category_id: ae-2-2-4-3-2 + product_category_id: ae-2-7-12-11-1 output: product_category_id: - - '221' + - '7308' - input: - product_category_id: ae-2-2-4-3-3 + product_category_id: ae-2-7-13 output: product_category_id: - - '221' + - '61' - input: - product_category_id: ae-2-2-4-3-4 + product_category_id: ae-2-7-13-1 output: product_category_id: - - '221' + - '3502' - input: - product_category_id: ae-2-2-4-3-5 + product_category_id: ae-2-7-13-1-1 output: product_category_id: - - '221' + - '3775' - input: - product_category_id: ae-2-2-4-4 + product_category_id: ae-2-7-13-1-2 output: product_category_id: - - '1340' + - '5367' - input: - product_category_id: ae-2-2-5 + product_category_id: ae-2-7-13-1-2-1 output: product_category_id: - - '219' + - '5367' - input: - product_category_id: ae-2-2-5-1 + product_category_id: ae-2-7-13-1-2-2 output: product_category_id: - - '219' + - '5367' - input: - product_category_id: ae-2-2-5-2 + product_category_id: ae-2-7-13-1-2-3 output: product_category_id: - - '219' + - '5367' - input: - product_category_id: ae-2-2-5-3 + product_category_id: ae-2-7-13-1-2-4 output: product_category_id: - - '219' + - '5367' - input: - product_category_id: ae-2-2-5-4 + product_category_id: ae-2-7-13-1-3 output: product_category_id: - - '219' + - '3412' - input: - product_category_id: ae-2-2-5-6 + product_category_id: ae-2-7-13-1-4 output: product_category_id: - - '219' + - '3882' - input: - product_category_id: ae-2-2-6 + product_category_id: ae-2-7-13-1-5 output: product_category_id: - - '218' + - '503032' - input: - product_category_id: ae-2-2-6-1 + product_category_id: ae-2-7-13-1-6 output: product_category_id: - - '218' + - '3392' - input: - product_category_id: ae-2-2-6-2 + product_category_id: ae-2-7-13-1-6-1 output: product_category_id: - - '218' + - '3392' - input: - product_category_id: ae-2-2-6-3 + product_category_id: ae-2-7-13-1-6-2 output: product_category_id: - - '218' + - '3392' - input: - product_category_id: ae-2-2-6-4 + product_category_id: ae-2-7-13-1-6-3 output: product_category_id: - - '218' + - '3392' - input: - product_category_id: ae-2-2-7 + product_category_id: ae-2-7-13-1-7 output: product_category_id: - - '6000' + - '4111' - input: - product_category_id: ae-2-2-8 + product_category_id: ae-2-7-13-1-7-1 output: product_category_id: - - '37' + - '4111' - input: - product_category_id: ae-2-2-8-1 + product_category_id: ae-2-7-13-1-7-2 output: product_category_id: - - '37' + - '4111' - input: - product_category_id: ae-2-2-8-10 + product_category_id: ae-2-7-13-1-8 output: product_category_id: - - '37' + - '5368' - input: - product_category_id: ae-2-2-8-11 + product_category_id: ae-2-7-13-1-9 output: product_category_id: - - '37' + - '3646' - input: - product_category_id: ae-2-2-8-12 + product_category_id: ae-2-7-13-1-10 output: product_category_id: - - '37' + - '499688' - input: - product_category_id: ae-2-2-8-13 + product_category_id: ae-2-7-13-1-11 output: product_category_id: - - '37' + - '503721' - input: - product_category_id: ae-2-2-8-14 + product_category_id: ae-2-7-13-1-11-1 output: product_category_id: - - '37' + - '503721' - input: - product_category_id: ae-2-2-8-2 + product_category_id: ae-2-7-13-1-11-2 output: product_category_id: - - '37' + - '503721' - input: - product_category_id: ae-2-2-8-3 + product_category_id: ae-2-7-13-1-12 output: product_category_id: - - '37' + - '3178' - input: - product_category_id: ae-2-2-8-4 + product_category_id: ae-2-7-13-1-12-1 output: product_category_id: - - '37' + - '3178' - input: - product_category_id: ae-2-2-8-5 + product_category_id: ae-2-7-13-1-12-2 output: product_category_id: - - '37' + - '3178' - input: - product_category_id: ae-2-2-8-6 + product_category_id: ae-2-7-13-1-12-3 output: product_category_id: - - '37' + - '3178' - input: - product_category_id: ae-2-2-8-7 + product_category_id: ae-2-7-13-1-12-4 output: product_category_id: - - '37' + - '3178' - input: - product_category_id: ae-2-2-8-8 + product_category_id: ae-2-7-13-1-13 output: product_category_id: - - '37' + - '3176' - input: - product_category_id: ae-2-2-8-9 + product_category_id: ae-2-7-13-2 output: product_category_id: - - '37' + - '503033' - input: - product_category_id: ae-2-2-9 + product_category_id: ae-2-7-13-2-1 output: product_category_id: - - '1312' + - '8209' - input: - product_category_id: ae-2-3 + product_category_id: ae-2-7-13-2-1-1 output: product_category_id: - - '3577' + - '8209' - input: - product_category_id: ae-2-3-1 + product_category_id: ae-2-7-13-2-1-2 output: product_category_id: - - '3014' + - '8209' - input: - product_category_id: ae-2-3-1-1 + product_category_id: ae-2-7-13-2-1-3 output: product_category_id: - - '3014' + - '8209' - input: - product_category_id: ae-2-3-1-2 + product_category_id: ae-2-7-13-2-2 output: product_category_id: - - '3014' + - '503040' - input: - product_category_id: ae-2-3-1-3 + product_category_id: ae-2-7-13-2-3 output: product_category_id: - - '3014' + - '503039' - input: - product_category_id: ae-2-3-1-4 + product_category_id: ae-2-7-13-2-4 output: product_category_id: - - '3014' + - '503038' - input: - product_category_id: ae-2-3-2 + product_category_id: ae-2-7-13-2-5 output: product_category_id: - - '502980' + - '503037' - input: - product_category_id: ae-2-3-3 + product_category_id: ae-2-7-13-2-6 output: product_category_id: - - '499891' + - '503036' - input: - product_category_id: ae-2-3-3-1 + product_category_id: ae-2-7-13-2-7 output: product_category_id: - - '499891' + - '503035' - input: - product_category_id: ae-2-3-3-2 + product_category_id: ae-2-7-13-2-8 output: product_category_id: - - '499891' + - '503034' - input: - product_category_id: ae-2-3-3-3 + product_category_id: ae-2-7-13-3 output: product_category_id: - - '499891' + - '4806' - input: - product_category_id: ae-2-3-4 + product_category_id: ae-2-7-13-3-1 output: product_category_id: - - '2579' + - '3374' - input: - product_category_id: ae-2-3-4-1 + product_category_id: ae-2-7-13-3-2 output: product_category_id: - - '2579' + - '4911' - input: - product_category_id: ae-2-3-4-2 + product_category_id: ae-2-7-13-3-3 output: product_category_id: - - '2579' + - '4912' - input: - product_category_id: ae-2-3-4-3 + product_category_id: ae-2-7-13-3-3-1 output: product_category_id: - - '2579' + - '4912' - input: - product_category_id: ae-2-3-4-4 + product_category_id: ae-2-7-13-3-3-2 output: product_category_id: - - '2579' + - '4912' - input: - product_category_id: ae-2-4 + product_category_id: ae-2-7-13-3-3-3 output: product_category_id: - - '33' + - '4912' - input: - product_category_id: ae-2-4-1 + product_category_id: ae-2-7-14 output: product_category_id: - - '33' + - '62' - input: - product_category_id: ae-2-4-2 + product_category_id: ae-2-7-14-1 output: product_category_id: - - '33' + - '4790' - input: - product_category_id: ae-2-4-3 + product_category_id: ae-2-7-14-1-1 output: product_category_id: - - '33' + - '4809' - input: - product_category_id: ae-2-4-4 + product_category_id: ae-2-7-14-1-1-1 output: product_category_id: - - '33' + - '4815' - input: - product_category_id: ae-2-4-5 + product_category_id: ae-2-7-14-1-2 output: product_category_id: - - '33' + - '4810' - input: - product_category_id: ae-2-4-6 + product_category_id: ae-2-7-14-1-3 output: product_category_id: - - '33' + - '4811' - input: - product_category_id: ae-2-4-7 + product_category_id: ae-2-7-14-1-3-1 output: product_category_id: - - '33' + - '4816' - input: - product_category_id: ae-2-5 + product_category_id: ae-2-7-14-1-3-2 output: product_category_id: - - '35' + - '4817' - input: - product_category_id: ae-2-6 + product_category_id: ae-2-7-14-1-4 output: product_category_id: - - '5999' + - '4812' - input: - product_category_id: ae-2-6-1 + product_category_id: ae-2-7-14-1-4-1 output: product_category_id: - - '3885' + - '4812' - input: - product_category_id: ae-2-6-1-1 + product_category_id: ae-2-7-14-1-4-2 output: product_category_id: - - '3885' + - '4812' - input: - product_category_id: ae-2-6-1-2 + product_category_id: ae-2-7-14-1-4-3 output: product_category_id: - - '3885' + - '4812' - input: - product_category_id: ae-2-6-1-3 + product_category_id: ae-2-7-14-1-4-4 output: product_category_id: - - '3885' + - '4812' - input: - product_category_id: ae-2-6-1-4 + product_category_id: ae-2-7-14-1-5 output: product_category_id: - - '3885' + - '4813' - input: - product_category_id: ae-2-6-2 + product_category_id: ae-2-7-14-1-6 output: product_category_id: - - '5151' + - '4814' - input: - product_category_id: ae-2-6-3 + product_category_id: ae-2-7-14-2 output: product_category_id: - - '5150' + - '4791' - input: - product_category_id: ae-2-6-3-1 + product_category_id: ae-2-7-14-2-1 output: product_category_id: - - '5150' + - '4818' - input: - product_category_id: ae-2-6-3-2 + product_category_id: ae-2-7-14-2-1-1 output: product_category_id: - - '5150' + - '4826' - input: - product_category_id: ae-2-6-3-3 + product_category_id: ae-2-7-14-2-1-2 output: product_category_id: - - '5150' + - '4827' - input: - product_category_id: ae-2-6-3-4 + product_category_id: ae-2-7-14-2-1-3 output: product_category_id: - - '5150' + - '4828' - input: - product_category_id: ae-2-6-3-5 + product_category_id: ae-2-7-14-2-2 output: product_category_id: - - '5150' + - '4819' - input: - product_category_id: ae-2-6-4 + product_category_id: ae-2-7-14-2-3 output: product_category_id: - - '4175' + - '4820' - input: - product_category_id: ae-2-7 + product_category_id: ae-2-7-14-2-3-1 output: product_category_id: - - '55' + - '4820' - input: - product_category_id: ae-2-7-1 + product_category_id: ae-2-7-14-2-3-2 output: product_category_id: - - '57' + - '4820' - input: - product_category_id: ae-2-7-1-1 + product_category_id: ae-2-7-14-2-3-3 output: product_category_id: - - '4797' + - '4820' - input: - product_category_id: ae-2-7-1-1-1 + product_category_id: ae-2-7-14-2-4 output: product_category_id: - - '4891' + - '4822' - input: - product_category_id: ae-2-7-1-1-2 + product_category_id: ae-2-7-14-2-4-1 output: product_category_id: - - '4892' + - '4829' - input: - product_category_id: ae-2-7-1-1-2-1 + product_category_id: ae-2-7-14-2-4-2 output: product_category_id: - - '4892' + - '4830' - input: - product_category_id: ae-2-7-1-1-2-2 + product_category_id: ae-2-7-14-2-4-2-1 output: product_category_id: - - '4892' + - '4830' - input: - product_category_id: ae-2-7-1-1-2-3 + product_category_id: ae-2-7-14-2-4-2-2 output: product_category_id: - - '4892' + - '4830' - input: - product_category_id: ae-2-7-1-1-2-4 + product_category_id: ae-2-7-14-2-4-3 output: product_category_id: - - '4892' + - '4831' - input: - product_category_id: ae-2-7-1-1-3 + product_category_id: ae-2-7-14-2-4-4 output: product_category_id: - - '4890' + - '4832' - input: - product_category_id: ae-2-7-1-1-4 + product_category_id: ae-2-7-14-2-5 output: product_category_id: - - '4893' + - '4823' - input: - product_category_id: ae-2-7-1-1-4-1 + product_category_id: ae-2-7-14-2-6 output: product_category_id: - - '4893' + - '4824' - input: - product_category_id: ae-2-7-1-1-4-2 + product_category_id: ae-2-7-14-2-7 output: product_category_id: - - '4893' + - '4825' - input: - product_category_id: ae-2-7-1-1-4-3 + product_category_id: ae-2-7-14-3 output: product_category_id: - - '4893' + - '4792' - input: - product_category_id: ae-2-7-1-1-4-4 + product_category_id: ae-2-7-14-3-1 output: product_category_id: - - '4893' + - '4833' - input: - product_category_id: ae-2-7-1-1-5 + product_category_id: ae-2-7-14-3-1-1 output: product_category_id: - - '4894' + - '4838' - input: - product_category_id: ae-2-7-1-1-6 + product_category_id: ae-2-7-14-3-1-2 output: product_category_id: - - '4895' + - '4839' - input: - product_category_id: ae-2-7-1-2 + product_category_id: ae-2-7-14-3-1-3 output: product_category_id: - - '505310' + - '4840' - input: - product_category_id: ae-2-7-1-3 + product_category_id: ae-2-7-14-3-2 output: product_category_id: - - '505308' + - '4834' - input: - product_category_id: ae-2-7-1-4 + product_category_id: ae-2-7-14-3-3 output: product_category_id: - - '505768' + - '4836' - input: - product_category_id: ae-2-7-1-4-1 + product_category_id: ae-2-7-14-3-3-1 output: product_category_id: - - '505768' + - '4841' - input: - product_category_id: ae-2-7-1-4-2 + product_category_id: ae-2-7-14-3-3-1-1 output: product_category_id: - - '505768' + - '4841' - input: - product_category_id: ae-2-7-1-4-3 + product_category_id: ae-2-7-14-3-3-1-2 output: product_category_id: - - '505768' + - '4841' - input: - product_category_id: ae-2-7-1-4-4 + product_category_id: ae-2-7-14-3-3-2 output: product_category_id: - - '505768' + - '4842' - input: - product_category_id: ae-2-7-1-4-5 + product_category_id: ae-2-7-14-3-4 output: product_category_id: - - '505768' + - '4837' - input: - product_category_id: ae-2-7-1-5 + product_category_id: ae-2-7-14-4 output: product_category_id: - - '4798' + - '4955' - input: - product_category_id: ae-2-7-1-6 + product_category_id: ae-2-7-14-4-1 output: product_category_id: - - '505309' + - '4956' - input: - product_category_id: ae-2-7-10 + product_category_id: ae-2-7-14-4-2 output: product_category_id: - - '56' + - '5046' - input: - product_category_id: ae-2-7-10-1 + product_category_id: ae-2-7-14-4-2-1 output: product_category_id: - - '56' + - '5046' - input: - product_category_id: ae-2-7-10-2 + product_category_id: ae-2-7-14-4-2-2 output: product_category_id: - - '56' + - '5046' - input: - product_category_id: ae-2-7-10-3 + product_category_id: ae-2-7-14-5 output: product_category_id: - - '56' + - '4793' - input: - product_category_id: ae-2-7-10-4 + product_category_id: ae-2-7-14-5-1 output: product_category_id: - - '56' + - '4843' - input: - product_category_id: ae-2-7-11 + product_category_id: ae-2-7-14-5-1-1 output: product_category_id: - - '60' + - '4849' - input: - product_category_id: ae-2-7-11-1 + product_category_id: ae-2-7-14-5-1-2 output: product_category_id: - - '7357' + - '4850' - input: - product_category_id: ae-2-7-11-1-1 + product_category_id: ae-2-7-14-5-2 output: product_category_id: - - '7357' + - '4844' - input: - product_category_id: ae-2-7-11-1-2 + product_category_id: ae-2-7-14-5-3 output: product_category_id: - - '7357' + - '4845' - input: - product_category_id: ae-2-7-11-1-3 + product_category_id: ae-2-7-14-5-3-1 output: product_category_id: - - '7357' + - '4851' - input: - product_category_id: ae-2-7-11-1-4 + product_category_id: ae-2-7-14-5-4 output: product_category_id: - - '7357' + - '4846' - input: - product_category_id: ae-2-7-11-2 + product_category_id: ae-2-7-14-5-5 output: product_category_id: - - '3588' + - '4847' - input: - product_category_id: ae-2-7-11-2-1 + product_category_id: ae-2-7-14-5-6 output: product_category_id: - - '3588' + - '4848' - input: - product_category_id: ae-2-7-11-2-2 + product_category_id: ae-2-7-14-6 output: product_category_id: - - '3588' + - '503747' - input: - product_category_id: ae-2-7-11-2-3 + product_category_id: ae-2-7-14-6-1 output: product_category_id: - - '3588' + - '503749' - input: - product_category_id: ae-2-7-11-2-4 + product_category_id: ae-2-7-14-6-2 output: product_category_id: - - '3588' + - '503748' - input: - product_category_id: ae-2-7-11-2-5 + product_category_id: ae-2-7-14-6-3 output: product_category_id: - - '3588' + - '503750' - input: - product_category_id: ae-2-7-11-3 + product_category_id: ae-2-7-14-7 output: product_category_id: - - '3324' + - '4794' - input: - product_category_id: ae-2-7-11-3-1 + product_category_id: ae-2-7-14-7-1 output: product_category_id: - - '3324' + - '4852' - input: - product_category_id: ae-2-7-11-3-2 + product_category_id: ae-2-7-14-7-1-1 output: product_category_id: - - '3324' + - '4860' - input: - product_category_id: ae-2-7-12 + product_category_id: ae-2-7-14-7-1-2 output: product_category_id: - - '3465' + - '4861' - input: - product_category_id: ae-2-7-12-1 + product_category_id: ae-2-7-14-7-1-3 output: product_category_id: - - '7100' + - '4862' - input: - product_category_id: ae-2-7-12-1-1 + product_category_id: ae-2-7-14-7-2 output: product_category_id: - - '7100' + - '4853' - input: - product_category_id: ae-2-7-12-1-2 + product_category_id: ae-2-7-14-7-3 output: product_category_id: - - '7100' + - '4854' - input: - product_category_id: ae-2-7-12-1-3 + product_category_id: ae-2-7-14-7-4 output: product_category_id: - - '7100' + - '4856' - input: - product_category_id: ae-2-7-12-10 + product_category_id: ae-2-7-14-7-4-1 output: product_category_id: - - '4631' + - '4863' - input: - product_category_id: ae-2-7-12-11 + product_category_id: ae-2-7-14-7-4-1-1 output: product_category_id: - - '7308' + - '4863' - input: - product_category_id: ae-2-7-12-11-1 + product_category_id: ae-2-7-14-7-4-1-2 output: product_category_id: - - '7308' + - '4863' - input: - product_category_id: ae-2-7-12-2 + product_category_id: ae-2-7-14-7-4-1-3 output: product_category_id: - - '7231' + - '4863' - input: - product_category_id: ae-2-7-12-2-1 + product_category_id: ae-2-7-14-7-4-1-4 output: product_category_id: - - '7231' + - '4863' - input: - product_category_id: ae-2-7-12-2-2 + product_category_id: ae-2-7-14-7-4-2 output: product_category_id: - - '7231' + - '4864' - input: - product_category_id: ae-2-7-12-3 + product_category_id: ae-2-7-14-7-4-3 output: product_category_id: - - '7153' + - '4865' - input: - product_category_id: ae-2-7-12-3-1 + product_category_id: ae-2-7-14-7-5 output: product_category_id: - - '7153' + - '4857' - input: - product_category_id: ae-2-7-12-3-2 + product_category_id: ae-2-7-14-7-6 output: product_category_id: - - '7153' + - '4858' - input: - product_category_id: ae-2-7-12-3-3 + product_category_id: ae-2-7-14-7-7 output: product_category_id: - - '7153' + - '4859' - input: - product_category_id: ae-2-7-12-4 + product_category_id: ae-2-7-14-8 output: product_category_id: - - '7152' + - '4866' - input: - product_category_id: ae-2-7-12-4-1 + product_category_id: ae-2-7-14-9 output: product_category_id: - - '7152' + - '4867' - input: - product_category_id: ae-2-7-12-5 + product_category_id: ae-2-7-14-10 output: product_category_id: - - '7099' + - '4957' - input: - product_category_id: ae-2-7-12-5-1 + product_category_id: ae-2-7-14-11 output: product_category_id: - - '7103' + - '4939' - input: - product_category_id: ae-2-7-12-5-2 + product_category_id: ae-2-8 output: product_category_id: - - '7102' + - '54' - input: - product_category_id: ae-2-7-12-5-2-1 + product_category_id: ae-2-8-1 output: product_category_id: - - '7102' + - '4983' - input: - product_category_id: ae-2-7-12-5-2-2 + product_category_id: ae-2-8-1-1 output: product_category_id: - - '7102' + - '4983' - input: - product_category_id: ae-2-7-12-5-2-3 + product_category_id: ae-2-8-1-2 output: product_category_id: - - '7102' + - '4983' - input: - product_category_id: ae-2-7-12-5-2-4 + product_category_id: ae-2-8-2 output: product_category_id: - - '7102' + - '4984' - input: - product_category_id: ae-2-7-12-5-2-5 + product_category_id: ae-2-8-2-1 output: product_category_id: - - '7102' + - '4984' - input: - product_category_id: ae-2-7-12-5-3 + product_category_id: ae-2-8-2-2 output: product_category_id: - - '7101' + - '4984' - input: - product_category_id: ae-2-7-12-5-3-1 + product_category_id: ae-2-8-2-3 output: product_category_id: - - '7101' + - '4984' - input: - product_category_id: ae-2-7-12-5-3-2 + product_category_id: ae-2-8-2-4 output: product_category_id: - - '7101' + - '4984' - input: - product_category_id: ae-2-7-12-5-3-3 + product_category_id: ae-2-8-2-5 output: product_category_id: - - '7101' + - '4984' - input: - product_category_id: ae-2-7-12-5-3-4 + product_category_id: ae-2-8-3 output: product_category_id: - - '7101' + - '63' - input: - product_category_id: ae-2-7-12-5-3-5 + product_category_id: ae-2-8-3-1 output: product_category_id: - - '7101' + - '505769' - input: - product_category_id: ae-2-7-12-6 + product_category_id: ae-2-8-3-1-1 output: product_category_id: - - '7150' + - '505769' - input: - product_category_id: ae-2-7-12-6-1 + product_category_id: ae-2-8-3-1-2 output: product_category_id: - - '7151' + - '505769' - input: - product_category_id: ae-2-7-12-7 + product_category_id: ae-2-8-3-1-3 output: product_category_id: - - '59' + - '505769' - input: - product_category_id: ae-2-7-12-7-1 + product_category_id: ae-2-8-3-2 output: product_category_id: - - '59' + - '65' - input: - product_category_id: ae-2-7-12-7-2 + product_category_id: ae-2-8-3-3 output: product_category_id: - - '59' + - '67' - input: - product_category_id: ae-2-7-12-8 + product_category_id: ae-2-8-3-3-1 output: product_category_id: - - '7455' + - '67' - input: - product_category_id: ae-2-7-12-8-1 + product_category_id: ae-2-8-3-3-2 output: product_category_id: - - '7455' + - '67' - input: - product_category_id: ae-2-7-12-8-2 + product_category_id: ae-2-8-3-4 output: product_category_id: - - '7455' + - '70' - input: - product_category_id: ae-2-7-12-8-3 + product_category_id: ae-2-8-3-4-1 output: product_category_id: - - '7455' + - '70' - input: - product_category_id: ae-2-7-12-9 + product_category_id: ae-2-8-3-4-2 output: product_category_id: - - '7282' + - '70' - input: - product_category_id: ae-2-7-12-9-1 + product_category_id: ae-2-8-3-5 output: product_category_id: - - '7283' + - '505770' - input: - product_category_id: ae-2-7-12-9-2 + product_category_id: ae-2-8-3-5-1 output: product_category_id: - - '7284' + - '505770' - input: - product_category_id: ae-2-7-12-9-2-1 + product_category_id: ae-2-8-3-5-2 output: product_category_id: - - '7284' + - '505770' - input: - product_category_id: ae-2-7-12-9-2-2 + product_category_id: ae-2-8-3-5-3 output: product_category_id: - - '7284' + - '505770' - input: - product_category_id: ae-2-7-12-9-2-3 + product_category_id: ae-2-8-3-6 output: product_category_id: - - '7284' + - '72' - input: - product_category_id: ae-2-7-12-9-2-4 + product_category_id: ae-2-8-3-6-1 output: product_category_id: - - '7284' + - '72' - input: - product_category_id: ae-2-7-13 + product_category_id: ae-2-8-4 output: product_category_id: - - '61' + - '6001' - input: - product_category_id: ae-2-7-13-1 + product_category_id: ae-2-8-4-1 output: product_category_id: - - '3502' + - '245' - input: - product_category_id: ae-2-7-13-1-1 + product_category_id: ae-2-8-4-1-1 output: product_category_id: - - '3775' + - '245' - input: - product_category_id: ae-2-7-13-1-10 + product_category_id: ae-2-8-4-1-2 output: product_category_id: - - '499688' + - '245' - input: - product_category_id: ae-2-7-13-1-11 + product_category_id: ae-2-8-4-2 output: product_category_id: - - '503721' + - '6002' - input: - product_category_id: ae-2-7-13-1-11-1 + product_category_id: ae-2-8-4-2-1 output: product_category_id: - - '503721' + - '6002' - input: - product_category_id: ae-2-7-13-1-11-2 + product_category_id: ae-2-8-4-2-2 output: product_category_id: - - '503721' + - '6002' - input: - product_category_id: ae-2-7-13-1-12 + product_category_id: ae-2-8-4-3 output: product_category_id: - - '3178' + - '74' - input: - product_category_id: ae-2-7-13-1-12-1 + product_category_id: ae-2-8-4-3-1 output: product_category_id: - - '3178' + - '74' - input: - product_category_id: ae-2-7-13-1-12-2 + product_category_id: ae-2-8-4-3-3 output: product_category_id: - - '3178' + - '74' - input: - product_category_id: ae-2-7-13-1-12-3 + product_category_id: ae-2-8-4-3-4 output: product_category_id: - - '3178' + - '74' - input: - product_category_id: ae-2-7-13-1-12-4 + product_category_id: ae-2-8-4-4 output: product_category_id: - - '3178' + - '6003' - input: - product_category_id: ae-2-7-13-1-13 + product_category_id: ae-2-8-4-4-1 output: product_category_id: - - '3176' + - '6003' - input: - product_category_id: ae-2-7-13-1-2 + product_category_id: ae-2-8-4-4-2 output: product_category_id: - - '5367' + - '6003' - input: - product_category_id: ae-2-7-13-1-2-1 + product_category_id: ae-2-8-4-4-3 output: product_category_id: - - '5367' + - '6003' - input: - product_category_id: ae-2-7-13-1-2-2 + product_category_id: ae-2-8-4-4-4 output: product_category_id: - - '5367' + - '6003' - input: - product_category_id: ae-2-7-13-1-2-3 + product_category_id: ae-2-8-5 output: product_category_id: - - '5367' + - '75' - input: - product_category_id: ae-2-7-13-1-2-4 + product_category_id: ae-2-8-5-1 output: product_category_id: - - '5367' + - '2917' - input: - product_category_id: ae-2-7-13-1-3 + product_category_id: ae-2-8-5-1-1 output: product_category_id: - - '3412' + - '2917' - input: - product_category_id: ae-2-7-13-1-4 + product_category_id: ae-2-8-5-1-2 output: product_category_id: - - '3882' + - '2917' - input: - product_category_id: ae-2-7-13-1-5 + product_category_id: ae-2-8-5-2 output: product_category_id: - - '503032' + - '3043' - input: - product_category_id: ae-2-7-13-1-6 + product_category_id: ae-2-8-5-2-1 output: product_category_id: - - '3392' + - '3043' - input: - product_category_id: ae-2-7-13-1-6-1 + product_category_id: ae-2-8-5-2-2 output: product_category_id: - - '3392' + - '3043' - input: - product_category_id: ae-2-7-13-1-6-2 + product_category_id: ae-2-8-5-2-3 output: product_category_id: - - '3392' + - '3043' - input: - product_category_id: ae-2-7-13-1-6-3 + product_category_id: ae-2-8-5-2-4 output: product_category_id: - - '3392' + - '3043' - input: - product_category_id: ae-2-7-13-1-7 + product_category_id: ae-2-8-5-2-5 output: product_category_id: - - '4111' + - '3043' - input: - product_category_id: ae-2-7-13-1-7-1 + product_category_id: ae-2-8-5-2-6 output: product_category_id: - - '4111' + - '3043' - input: - product_category_id: ae-2-7-13-1-7-2 + product_category_id: ae-2-8-5-3 output: product_category_id: - - '4111' + - '2518' - input: - product_category_id: ae-2-7-13-1-8 + product_category_id: ae-2-8-5-3-1 output: product_category_id: - - '5368' + - '2518' - input: - product_category_id: ae-2-7-13-1-9 + product_category_id: ae-2-8-5-3-2 output: product_category_id: - - '3646' + - '2518' - input: - product_category_id: ae-2-7-13-2 + product_category_id: ae-2-8-5-3-3 output: product_category_id: - - '503033' + - '2518' - input: - product_category_id: ae-2-7-13-2-1 + product_category_id: ae-2-8-5-3-4 output: product_category_id: - - '8209' + - '2518' - input: - product_category_id: ae-2-7-13-2-1-1 + product_category_id: ae-2-8-5-3-5 output: product_category_id: - - '8209' + - '2518' - input: - product_category_id: ae-2-7-13-2-1-2 + product_category_id: ae-2-8-5-3-6 output: product_category_id: - - '8209' + - '2518' - input: - product_category_id: ae-2-7-13-2-1-3 + product_category_id: ae-2-8-5-3-7 output: product_category_id: - - '8209' + - '2518' - input: - product_category_id: ae-2-7-13-2-2 + product_category_id: ae-2-8-5-3-8 output: product_category_id: - - '503040' + - '2518' - input: - product_category_id: ae-2-7-13-2-3 + product_category_id: ae-2-8-5-3-9 output: product_category_id: - - '503039' + - '2518' - input: - product_category_id: ae-2-7-13-2-4 + product_category_id: ae-2-8-5-4 output: product_category_id: - - '503038' + - '2856' - input: - product_category_id: ae-2-7-13-2-5 + product_category_id: ae-2-8-5-4-1 output: product_category_id: - - '503037' + - '2856' - input: - product_category_id: ae-2-7-13-2-6 + product_category_id: ae-2-8-5-4-2 output: product_category_id: - - '503036' + - '2856' - input: - product_category_id: ae-2-7-13-2-7 + product_category_id: ae-2-8-5-4-3 output: product_category_id: - - '503035' + - '2856' - input: - product_category_id: ae-2-7-13-2-8 + product_category_id: ae-2-8-5-5 output: product_category_id: - - '503034' + - '7431' - input: - product_category_id: ae-2-7-13-3 + product_category_id: ae-2-8-5-5-1 output: product_category_id: - - '4806' + - '7431' - input: - product_category_id: ae-2-7-13-3-1 + product_category_id: ae-2-8-5-5-2 output: product_category_id: - - '3374' + - '7431' - input: - product_category_id: ae-2-7-13-3-2 + product_category_id: ae-2-8-5-5-3 output: product_category_id: - - '4911' + - '7431' - input: - product_category_id: ae-2-7-13-3-3 + product_category_id: ae-2-8-5-5-4 output: product_category_id: - - '4912' + - '7431' - input: - product_category_id: ae-2-7-13-3-3-1 + product_category_id: ae-2-8-5-6 output: product_category_id: - - '4912' + - '6098' - input: - product_category_id: ae-2-7-13-3-3-2 + product_category_id: ae-2-8-5-6-1 output: product_category_id: - - '4912' + - '6098' - input: - product_category_id: ae-2-7-13-3-3-3 + product_category_id: ae-2-8-5-6-2 output: product_category_id: - - '4912' + - '6098' - input: - product_category_id: ae-2-7-14 + product_category_id: ae-2-8-5-6-3 output: product_category_id: - - '62' + - '6098' - input: - product_category_id: ae-2-7-14-1 + product_category_id: ae-2-8-5-7 output: product_category_id: - - '4790' + - '7285' - input: - product_category_id: ae-2-7-14-1-1 + product_category_id: ae-2-8-5-7-1 output: product_category_id: - - '4809' + - '7289' - input: - product_category_id: ae-2-7-14-1-1-1 + product_category_id: ae-2-8-5-7-1-1 output: product_category_id: - - '4815' + - '7289' - input: - product_category_id: ae-2-7-14-1-2 + product_category_id: ae-2-8-5-7-1-2 output: product_category_id: - - '4810' + - '7289' - input: - product_category_id: ae-2-7-14-1-3 + product_category_id: ae-2-8-5-7-1-3 output: product_category_id: - - '4811' + - '7289' - input: - product_category_id: ae-2-7-14-1-3-1 + product_category_id: ae-2-8-5-7-2 output: product_category_id: - - '4816' + - '7288' - input: - product_category_id: ae-2-7-14-1-3-2 + product_category_id: ae-2-8-5-7-2-1 output: product_category_id: - - '4817' + - '7288' - input: - product_category_id: ae-2-7-14-1-4 + product_category_id: ae-2-8-5-7-2-2 output: product_category_id: - - '4812' + - '7288' - input: - product_category_id: ae-2-7-14-1-4-1 + product_category_id: ae-2-8-5-7-2-3 output: product_category_id: - - '4812' + - '7288' - input: - product_category_id: ae-2-7-14-1-4-2 + product_category_id: ae-2-8-5-7-3 output: product_category_id: - - '4812' + - '7555' - input: - product_category_id: ae-2-7-14-1-4-3 + product_category_id: ae-2-8-5-7-3-1 output: product_category_id: - - '4812' + - '7555' - input: - product_category_id: ae-2-7-14-1-4-4 + product_category_id: ae-2-8-5-7-3-2 output: product_category_id: - - '4812' + - '7555' - input: - product_category_id: ae-2-7-14-1-5 + product_category_id: ae-2-8-5-7-3-3 output: product_category_id: - - '4813' + - '7555' - input: - product_category_id: ae-2-7-14-1-6 + product_category_id: ae-2-8-5-7-3-4 output: product_category_id: - - '4814' + - '7555' - input: - product_category_id: ae-2-7-14-10 + product_category_id: ae-2-8-5-7-4 output: product_category_id: - - '4957' + - '7295' - input: - product_category_id: ae-2-7-14-11 + product_category_id: ae-2-8-5-7-4-1 output: product_category_id: - - '4939' + - '7298' - input: - product_category_id: ae-2-7-14-2 + product_category_id: ae-2-8-5-7-4-1-1 output: product_category_id: - - '4791' + - '7298' - input: - product_category_id: ae-2-7-14-2-1 + product_category_id: ae-2-8-5-7-4-2 output: product_category_id: - - '4818' + - '7297' - input: - product_category_id: ae-2-7-14-2-1-1 + product_category_id: ae-2-8-5-7-4-2-1 output: product_category_id: - - '4826' + - '7297' - input: - product_category_id: ae-2-7-14-2-1-2 + product_category_id: ae-2-8-5-7-4-2-2 output: product_category_id: - - '4827' + - '7297' - input: - product_category_id: ae-2-7-14-2-1-3 + product_category_id: ae-2-8-5-7-4-2-3 output: product_category_id: - - '4828' + - '7297' - input: - product_category_id: ae-2-7-14-2-2 + product_category_id: ae-2-8-5-7-4-3 output: product_category_id: - - '4819' + - '7296' - input: - product_category_id: ae-2-7-14-2-3 + product_category_id: ae-2-8-5-7-4-3-1 output: product_category_id: - - '4820' + - '7296' - input: - product_category_id: ae-2-7-14-2-3-1 + product_category_id: ae-2-8-5-7-4-3-2 output: product_category_id: - - '4820' + - '7296' - input: - product_category_id: ae-2-7-14-2-3-2 + product_category_id: ae-2-8-5-7-4-3-3 output: product_category_id: - - '4820' + - '7296' - input: - product_category_id: ae-2-7-14-2-3-3 + product_category_id: ae-2-8-5-7-4-4 output: product_category_id: - - '4820' + - '7300' - input: - product_category_id: ae-2-7-14-2-4 + product_category_id: ae-2-8-5-7-4-4-1 output: product_category_id: - - '4822' + - '7300' - input: - product_category_id: ae-2-7-14-2-4-1 + product_category_id: ae-2-8-5-7-4-4-2 output: product_category_id: - - '4829' + - '7300' - input: - product_category_id: ae-2-7-14-2-4-2 + product_category_id: ae-2-8-5-7-4-4-3 output: product_category_id: - - '4830' + - '7300' - input: - product_category_id: ae-2-7-14-2-4-2-1 + product_category_id: ae-2-8-5-7-4-5 output: product_category_id: - - '4830' + - '7299' - input: - product_category_id: ae-2-7-14-2-4-2-2 + product_category_id: ae-2-8-5-7-4-5-1 output: product_category_id: - - '4830' + - '7299' - input: - product_category_id: ae-2-7-14-2-4-3 + product_category_id: ae-2-8-5-7-4-5-2 output: product_category_id: - - '4831' + - '7299' - input: - product_category_id: ae-2-7-14-2-4-4 + product_category_id: ae-2-8-5-7-4-5-3 output: product_category_id: - - '4832' + - '7299' - input: - product_category_id: ae-2-7-14-2-5 + product_category_id: ae-2-8-5-7-4-6 output: product_category_id: - - '4823' + - '7302' - input: - product_category_id: ae-2-7-14-2-6 + product_category_id: ae-2-8-5-7-4-6-1 output: product_category_id: - - '4824' + - '7302' - input: - product_category_id: ae-2-7-14-2-7 + product_category_id: ae-2-8-5-7-4-6-2 output: product_category_id: - - '4825' + - '7302' - input: - product_category_id: ae-2-7-14-3 + product_category_id: ae-2-8-5-7-4-6-3 output: product_category_id: - - '4792' + - '7302' - input: - product_category_id: ae-2-7-14-3-1 + product_category_id: ae-2-8-5-7-4-7 output: product_category_id: - - '4833' + - '7301' - input: - product_category_id: ae-2-7-14-3-1-1 + product_category_id: ae-2-8-5-7-4-7-1 output: product_category_id: - - '4838' + - '7301' - input: - product_category_id: ae-2-7-14-3-1-2 + product_category_id: ae-2-8-5-7-4-7-2 output: product_category_id: - - '4839' + - '7301' - input: - product_category_id: ae-2-7-14-3-1-3 + product_category_id: ae-2-8-5-7-4-7-3 output: product_category_id: - - '4840' + - '7301' - input: - product_category_id: ae-2-7-14-3-2 + product_category_id: ae-2-8-5-7-5 output: product_category_id: - - '4834' + - '7291' - input: - product_category_id: ae-2-7-14-3-3 + product_category_id: ae-2-8-5-7-6 output: product_category_id: - - '4836' + - '7293' - input: - product_category_id: ae-2-7-14-3-3-1 + product_category_id: ae-2-8-5-7-6-1 output: product_category_id: - - '4841' + - '7293' - input: - product_category_id: ae-2-7-14-3-3-1-1 + product_category_id: ae-2-8-5-7-6-2 output: product_category_id: - - '4841' + - '7293' - input: - product_category_id: ae-2-7-14-3-3-1-2 + product_category_id: ae-2-8-5-7-6-3 output: product_category_id: - - '4841' + - '7293' - input: - product_category_id: ae-2-7-14-3-3-2 + product_category_id: ae-2-8-5-7-7 output: product_category_id: - - '4842' + - '7286' - input: - product_category_id: ae-2-7-14-3-4 + product_category_id: ae-2-8-5-7-7-3 output: product_category_id: - - '4837' + - '7286' - input: - product_category_id: ae-2-7-14-4 + product_category_id: ae-2-8-5-7-7-4 output: product_category_id: - - '4955' + - '7286' - input: - product_category_id: ae-2-7-14-4-1 + product_category_id: ae-2-8-5-7-7-5 output: product_category_id: - - '4956' + - '7286' - input: - product_category_id: ae-2-7-14-4-2 + product_category_id: ae-2-8-5-7-8 output: product_category_id: - - '5046' + - '7287' - input: - product_category_id: ae-2-7-14-4-2-1 + product_category_id: ae-2-8-5-7-8-1 output: product_category_id: - - '5046' + - '7287' - input: - product_category_id: ae-2-7-14-4-2-2 + product_category_id: ae-2-8-5-7-8-2 output: product_category_id: - - '5046' + - '7287' - input: - product_category_id: ae-2-7-14-5 + product_category_id: ae-2-8-5-7-8-3 output: product_category_id: - - '4793' + - '7287' - input: - product_category_id: ae-2-7-14-5-1 + product_category_id: ae-2-8-5-7-8-4 output: product_category_id: - - '4843' + - '7287' - input: - product_category_id: ae-2-7-14-5-1-1 + product_category_id: ae-2-8-5-7-9 output: product_category_id: - - '4849' + - '7290' - input: - product_category_id: ae-2-7-14-5-1-2 + product_category_id: ae-2-8-5-7-10 output: product_category_id: - - '4850' + - '2515' - input: - product_category_id: ae-2-7-14-5-2 + product_category_id: ae-2-8-5-7-10-1 output: product_category_id: - - '4844' + - '2515' - input: - product_category_id: ae-2-7-14-5-3 + product_category_id: ae-2-8-5-7-10-2 output: product_category_id: - - '4845' + - '2515' - input: - product_category_id: ae-2-7-14-5-3-1 + product_category_id: ae-2-8-5-7-10-3 output: product_category_id: - - '4851' + - '2515' - input: - product_category_id: ae-2-7-14-5-4 + product_category_id: ae-2-8-5-7-11 output: product_category_id: - - '4846' + - '7294' - input: - product_category_id: ae-2-7-14-5-5 + product_category_id: ae-2-8-5-7-11-1 output: product_category_id: - - '4847' + - '7294' - input: - product_category_id: ae-2-7-14-5-6 + product_category_id: ae-2-8-5-7-11-2 output: product_category_id: - - '4848' + - '7294' - input: - product_category_id: ae-2-7-14-6 + product_category_id: ae-2-8-5-8 output: product_category_id: - - '503747' + - '3015' - input: - product_category_id: ae-2-7-14-6-1 + product_category_id: ae-2-8-5-9 output: product_category_id: - - '503749' + - '7232' - input: - product_category_id: ae-2-7-14-6-2 + product_category_id: ae-2-8-5-10 output: product_category_id: - - '503748' + - '2797' - input: - product_category_id: ae-2-7-14-6-3 + product_category_id: ae-2-8-5-10-1 output: product_category_id: - - '503750' + - '2797' - input: - product_category_id: ae-2-7-14-7 + product_category_id: ae-2-8-5-10-2 output: product_category_id: - - '4794' + - '2797' - input: - product_category_id: ae-2-7-14-7-1 + product_category_id: ae-2-8-5-10-3 output: product_category_id: - - '4852' + - '2797' - input: - product_category_id: ae-2-7-14-7-1-1 + product_category_id: ae-2-8-5-11 output: product_category_id: - - '4860' + - '3005' - input: - product_category_id: ae-2-7-14-7-1-2 + product_category_id: ae-2-8-5-11-1 output: product_category_id: - - '4861' + - '3005' - input: - product_category_id: ae-2-7-14-7-1-3 + product_category_id: ae-2-8-5-11-2 output: product_category_id: - - '4862' + - '3005' - input: - product_category_id: ae-2-7-14-7-2 + product_category_id: ae-2-8-6 output: product_category_id: - - '4853' + - '76' - input: - product_category_id: ae-2-7-14-7-3 + product_category_id: ae-2-8-6-1 output: product_category_id: - - '4854' + - '76' - input: - product_category_id: ae-2-7-14-7-4 + product_category_id: ae-2-8-6-2 output: product_category_id: - - '4856' + - '76' - input: - product_category_id: ae-2-7-14-7-4-1 + product_category_id: ae-2-8-6-3 output: product_category_id: - - '4863' + - '76' - input: - product_category_id: ae-2-7-14-7-4-1-1 + product_category_id: ae-2-8-6-4 output: product_category_id: - - '4863' + - '76' - input: - product_category_id: ae-2-7-14-7-4-1-2 + product_category_id: ae-2-8-7 output: product_category_id: - - '4863' + - '77' - input: - product_category_id: ae-2-7-14-7-4-1-3 + product_category_id: ae-2-8-7-1 output: product_category_id: - - '4863' + - '79' - input: - product_category_id: ae-2-7-14-7-4-1-4 + product_category_id: ae-2-8-7-1-1 output: product_category_id: - - '4863' + - '79' - input: - product_category_id: ae-2-7-14-7-4-2 + product_category_id: ae-2-8-7-1-2 output: product_category_id: - - '4864' + - '79' - input: - product_category_id: ae-2-7-14-7-4-3 + product_category_id: ae-2-8-7-2 output: product_category_id: - - '4865' + - '80' - input: - product_category_id: ae-2-7-14-7-5 + product_category_id: ae-2-8-7-2-1 output: product_category_id: - - '4857' + - '80' - input: - product_category_id: ae-2-7-14-7-6 + product_category_id: ae-2-8-7-2-2 output: product_category_id: - - '4858' + - '80' - input: - product_category_id: ae-2-7-14-7-7 + product_category_id: ae-2-8-7-2-3 output: product_category_id: - - '4859' + - '80' - input: - product_category_id: ae-2-7-14-8 + product_category_id: ae-2-8-7-2-4 output: product_category_id: - - '4866' + - '80' - input: - product_category_id: ae-2-7-14-9 + product_category_id: ae-2-8-7-3 output: product_category_id: - - '4867' + - '84' - input: - product_category_id: ae-2-7-2 + product_category_id: ae-2-8-7-3-1 output: product_category_id: - - '505288' + - '84' - input: - product_category_id: ae-2-7-3 + product_category_id: ae-2-8-7-3-2 output: product_category_id: - - '3270' + - '84' - input: - product_category_id: ae-2-7-4 + product_category_id: ae-2-8-7-3-3 output: product_category_id: - - '505365' + - '84' - input: - product_category_id: ae-2-7-5 + product_category_id: ae-2-8-7-3-4 output: product_category_id: - - '505328' + - '84' - input: - product_category_id: ae-2-7-6 + product_category_id: ae-2-8-7-4 output: product_category_id: - - '500001' + - '78' - input: - product_category_id: ae-2-7-7 + product_category_id: ae-2-8-7-4-1 output: product_category_id: - - '7277' + - '78' - input: - product_category_id: ae-2-7-7-1 + product_category_id: ae-2-8-7-4-2 output: product_category_id: - - '7279' + - '78' - input: - product_category_id: ae-2-7-7-2 + product_category_id: ae-2-8-7-5 output: product_category_id: - - '7280' + - '85' - input: - product_category_id: ae-2-7-7-3 + product_category_id: ae-2-8-7-6 output: product_category_id: - - '7278' + - '86' - input: - product_category_id: ae-2-7-7-3-1 + product_category_id: ae-2-8-8 output: product_category_id: - - '7278' + - '87' - input: - product_category_id: ae-2-7-7-3-2 + product_category_id: ae-2-8-8-1 output: product_category_id: - - '7278' + - '4540' - input: - product_category_id: ae-2-7-7-3-3 + product_category_id: ae-2-8-8-1-1 output: product_category_id: - - '7278' + - '4540' - input: - product_category_id: ae-2-7-7-3-4 + product_category_id: ae-2-8-8-1-2 output: product_category_id: - - '7278' + - '4540' - input: - product_category_id: ae-2-7-8 + product_category_id: ae-2-8-8-1-3 output: product_category_id: - - '4142' + - '4540' - input: - product_category_id: ae-2-7-9 + product_category_id: ae-2-8-8-2 output: product_category_id: - - '8072' + - '88' - input: - product_category_id: ae-2-7-9-1 + product_category_id: ae-2-8-8-2-1 output: product_category_id: - - '6970' + - '88' - input: - product_category_id: ae-2-7-9-2 + product_category_id: ae-2-8-8-2-2 output: product_category_id: - - '8461' + - '88' - input: - product_category_id: ae-2-7-9-3 + product_category_id: ae-2-8-8-2-3 output: product_category_id: - - '8073' + - '88' - input: - product_category_id: ae-2-7-9-4 + product_category_id: ae-2-8-8-2-4 output: product_category_id: - - '8462' + - '88' - input: - product_category_id: ae-2-7-9-5 + product_category_id: ae-2-8-8-2-5 output: product_category_id: - - '7364' + - '88' - input: - product_category_id: ae-2-7-9-6 + product_category_id: ae-2-8-8-2-6 output: product_category_id: - - '8480' + - '88' - input: - product_category_id: ae-2-8 + product_category_id: ae-2-8-8-2-7 output: product_category_id: - - '54' + - '88' - input: - product_category_id: ae-2-8-1 + product_category_id: ae-2-8-8-3 output: product_category_id: - - '4983' + - '89' - input: - product_category_id: ae-2-8-1-1 + product_category_id: ae-2-8-8-3-1 output: product_category_id: - - '4983' + - '89' - input: - product_category_id: ae-2-8-1-2 + product_category_id: ae-2-8-8-3-2 output: product_category_id: - - '4983' + - '89' - input: - product_category_id: ae-2-8-2 + product_category_id: ae-2-8-8-3-3 output: product_category_id: - - '4984' + - '89' - input: - product_category_id: ae-2-8-2-1 + product_category_id: ae-2-8-8-3-4 output: product_category_id: - - '4984' + - '89' - input: - product_category_id: ae-2-8-2-2 + product_category_id: ae-2-8-8-4 output: product_category_id: - - '4984' + - '7188' - input: - product_category_id: ae-2-8-2-3 + product_category_id: ae-2-8-8-4-1 output: product_category_id: - - '4984' + - '7188' - input: - product_category_id: ae-2-8-2-4 + product_category_id: ae-2-8-8-4-2 output: product_category_id: - - '4984' + - '7188' - input: - product_category_id: ae-2-8-2-5 + product_category_id: ae-2-8-8-4-3 output: product_category_id: - - '4984' + - '7188' - input: - product_category_id: ae-2-8-3 + product_category_id: ae-2-8-8-4-4 output: product_category_id: - - '63' + - '7188' - input: - product_category_id: ae-2-8-3-1 + product_category_id: ae-2-8-8-5 output: product_category_id: - - '505769' + - '4743' - input: - product_category_id: ae-2-8-3-1-1 + product_category_id: ae-2-8-8-5-1 output: product_category_id: - - '505769' + - '4743' - input: - product_category_id: ae-2-8-3-1-2 + product_category_id: ae-2-8-8-5-2 output: product_category_id: - - '505769' + - '4743' - input: - product_category_id: ae-2-8-3-1-3 + product_category_id: ae-2-8-8-5-3 output: product_category_id: - - '505769' + - '4743' - input: - product_category_id: ae-2-8-3-2 + product_category_id: ae-2-8-8-5-4 output: product_category_id: - - '65' + - '4743' - input: - product_category_id: ae-2-8-3-3 + product_category_id: ae-2-8-8-5-5 output: product_category_id: - - '67' + - '4743' - input: - product_category_id: ae-2-8-3-3-1 + product_category_id: ae-2-8-8-5-6 output: product_category_id: - - '67' + - '4743' - input: - product_category_id: ae-2-8-3-3-2 + product_category_id: ae-2-8-8-5-7 output: product_category_id: - - '67' + - '4743' - input: - product_category_id: ae-2-8-3-4 + product_category_id: ae-2-8-8-6 output: product_category_id: - - '70' + - '4744' - input: - product_category_id: ae-2-8-3-4-1 + product_category_id: ae-2-8-8-6-1 output: product_category_id: - - '70' + - '4744' - input: - product_category_id: ae-2-8-3-4-2 + product_category_id: ae-2-8-8-6-2 output: product_category_id: - - '70' + - '4744' - input: - product_category_id: ae-2-8-3-5 + product_category_id: ae-2-8-8-7 output: product_category_id: - - '505770' + - '5481' - input: - product_category_id: ae-2-8-3-5-1 + product_category_id: ae-2-8-8-7-1 output: product_category_id: - - '505770' + - '5481' - input: - product_category_id: ae-2-8-3-5-2 + product_category_id: ae-2-8-8-7-2 output: product_category_id: - - '505770' + - '5481' - input: - product_category_id: ae-2-8-3-5-3 + product_category_id: ae-2-8-8-8 output: product_category_id: - - '505770' + - '7250' - input: - product_category_id: ae-2-8-3-6 + product_category_id: ae-2-8-8-8-1 output: product_category_id: - - '72' + - '7250' - input: - product_category_id: ae-2-8-3-6-1 + product_category_id: ae-2-8-8-8-2 output: product_category_id: - - '72' + - '7250' - input: - product_category_id: ae-2-8-4 + product_category_id: ae-2-8-8-8-3 output: product_category_id: - - '6001' + - '7250' - input: - product_category_id: ae-2-8-4-1 + product_category_id: ae-2-8-8-9 output: product_category_id: - - '245' + - '4541' - input: - product_category_id: ae-2-8-4-1-1 + product_category_id: ae-2-8-8-9-1 output: product_category_id: - - '245' + - '4541' - input: - product_category_id: ae-2-8-4-1-2 + product_category_id: ae-2-8-8-9-2 output: product_category_id: - - '245' + - '4541' - input: - product_category_id: ae-2-8-4-2 + product_category_id: ae-2-8-8-10 output: product_category_id: - - '6002' + - '7249' - input: - product_category_id: ae-2-8-4-2-1 + product_category_id: ae-2-8-8-10-1 output: product_category_id: - - '6002' + - '7249' - input: - product_category_id: ae-2-8-4-2-2 + product_category_id: ae-2-8-8-10-2 output: product_category_id: - - '6002' + - '7249' - input: - product_category_id: ae-2-8-4-3 + product_category_id: ae-2-8-8-10-3 output: product_category_id: - - '74' + - '7249' - input: - product_category_id: ae-2-8-4-3-1 + product_category_id: ae-2-8-8-11 output: product_category_id: - - '74' + - '90' - input: - product_category_id: ae-2-8-4-3-3 + product_category_id: ae-2-8-8-11-1 output: product_category_id: - - '74' + - '90' - input: - product_category_id: ae-2-8-4-3-4 + product_category_id: ae-2-8-8-11-2 output: product_category_id: - - '74' + - '90' - input: - product_category_id: ae-2-8-4-4 + product_category_id: ae-2-8-8-11-3 output: product_category_id: - - '6003' + - '90' - input: - product_category_id: ae-2-8-4-4-1 + product_category_id: ae-2-8-8-11-4 output: product_category_id: - - '6003' + - '90' - input: - product_category_id: ae-2-8-4-4-2 + product_category_id: ae-2-8-8-11-5 output: product_category_id: - - '6003' + - '90' - input: - product_category_id: ae-2-8-4-4-3 + product_category_id: ae-2-8-8-11-6 output: product_category_id: - - '6003' + - '90' - input: - product_category_id: ae-2-8-4-4-4 + product_category_id: ae-2-8-8-11-7 output: product_category_id: - - '6003' + - '90' - input: - product_category_id: ae-2-8-5 + product_category_id: ae-2-8-8-12 output: product_category_id: - - '75' + - '91' - input: - product_category_id: ae-2-8-5-1 + product_category_id: ae-2-8-8-12-1 output: product_category_id: - - '2917' + - '91' - input: - product_category_id: ae-2-8-5-1-1 + product_category_id: ae-2-8-8-12-2 output: product_category_id: - - '2917' + - '91' - input: - product_category_id: ae-2-8-5-1-2 + product_category_id: ae-2-8-8-12-3 output: product_category_id: - - '2917' + - '91' - input: - product_category_id: ae-2-8-5-10 + product_category_id: ae-2-8-8-12-4 output: product_category_id: - - '2797' + - '91' - input: - product_category_id: ae-2-8-5-10-1 + product_category_id: ae-2-8-8-12-5 output: product_category_id: - - '2797' + - '91' - input: - product_category_id: ae-2-8-5-10-2 + product_category_id: ae-2-8-8-13 output: product_category_id: - - '2797' + - '6721' - input: - product_category_id: ae-2-8-5-10-3 + product_category_id: ae-2-8-8-13-1 output: product_category_id: - - '2797' + - '6721' - input: - product_category_id: ae-2-8-5-11 + product_category_id: ae-2-8-8-13-2 output: product_category_id: - - '3005' + - '6721' - input: - product_category_id: ae-2-8-5-11-1 + product_category_id: ae-2-8-8-13-3 output: product_category_id: - - '3005' + - '6721' - input: - product_category_id: ae-2-8-5-11-2 + product_category_id: ae-2-8-8-13-4 output: product_category_id: - - '3005' + - '6721' - input: - product_category_id: ae-2-8-5-2 + product_category_id: ae-2-8-8-13-5 output: product_category_id: - - '3043' + - '6721' - input: - product_category_id: ae-2-8-5-2-1 + product_category_id: ae-2-8-8-14 output: product_category_id: - - '3043' + - '6728' - input: - product_category_id: ae-2-8-5-2-2 + product_category_id: ae-2-8-8-14-1 output: product_category_id: - - '3043' + - '6728' - input: - product_category_id: ae-2-8-5-2-3 + product_category_id: ae-2-8-8-14-2 output: product_category_id: - - '3043' + - '6728' - input: - product_category_id: ae-2-8-5-2-4 + product_category_id: ae-3 output: product_category_id: - - '3043' + - '5709' - input: - product_category_id: ae-2-8-5-2-5 + product_category_id: ae-3-1 output: product_category_id: - - '3043' + - '2559' - input: - product_category_id: ae-2-8-5-2-6 + product_category_id: ae-3-1-1 output: product_category_id: - - '3043' + - '6100' - input: - product_category_id: ae-2-8-5-3 + product_category_id: ae-3-1-2 output: product_category_id: - - '2518' + - '5916' - input: - product_category_id: ae-2-8-5-3-1 + product_category_id: ae-3-1-3 output: product_category_id: - - '2518' + - '2899' - input: - product_category_id: ae-2-8-5-3-2 + product_category_id: ae-3-1-3-1 output: product_category_id: - - '2518' + - '2899' - input: - product_category_id: ae-2-8-5-3-3 + product_category_id: ae-3-1-3-2 output: product_category_id: - - '2518' + - '2899' - input: - product_category_id: ae-2-8-5-3-4 + product_category_id: ae-3-1-3-3 output: product_category_id: - - '2518' + - '2899' - input: - product_category_id: ae-2-8-5-3-5 + product_category_id: ae-3-1-3-4 output: product_category_id: - - '2518' + - '2899' - input: - product_category_id: ae-2-8-5-3-6 + product_category_id: ae-3-1-3-5 output: product_category_id: - - '2518' + - '2899' - input: - product_category_id: ae-2-8-5-3-7 + product_category_id: ae-3-1-3-6 output: product_category_id: - - '2518' + - '2899' - input: - product_category_id: ae-2-8-5-3-8 + product_category_id: ae-3-1-5 output: product_category_id: - - '2518' + - '94' - input: - product_category_id: ae-2-8-5-3-9 + product_category_id: ae-3-1-5-1 output: product_category_id: - - '2518' + - '5838' - input: - product_category_id: ae-2-8-5-4 + product_category_id: ae-3-1-5-2 output: product_category_id: - - '2856' + - '5091' - input: - product_category_id: ae-2-8-5-4-1 + product_category_id: ae-3-1-5-3 output: product_category_id: - - '2856' + - '8213' - input: - product_category_id: ae-2-8-5-4-2 + product_category_id: ae-3-1-5-4 output: product_category_id: - - '2856' + - '6712' - input: - product_category_id: ae-2-8-5-4-3 + product_category_id: ae-3-1-5-5 output: product_category_id: - - '2856' + - '2816' - input: - product_category_id: ae-2-8-5-5 + product_category_id: ae-3-1-6 output: product_category_id: - - '7431' + - '95' - input: - product_category_id: ae-2-8-5-5-1 + product_category_id: ae-3-1-6-2 output: product_category_id: - - '7431' + - '95' - input: - product_category_id: ae-2-8-5-5-2 + product_category_id: ae-3-1-6-3 output: product_category_id: - - '7431' + - '95' - input: - product_category_id: ae-2-8-5-5-3 + product_category_id: ae-3-1-6-4 output: product_category_id: - - '7431' + - '95' - input: - product_category_id: ae-2-8-5-5-4 + product_category_id: ae-3-2 output: product_category_id: - - '7431' + - '96' - input: - product_category_id: ae-2-8-5-6 + product_category_id: ae-3-2-1 output: product_category_id: - - '6098' + - '328061' - input: - product_category_id: ae-2-8-5-6-1 + product_category_id: ae-3-2-2 output: product_category_id: - - '6098' + - '6311' - input: - product_category_id: ae-2-8-5-6-2 + product_category_id: ae-3-2-3 output: product_category_id: - - '6098' + - '2587' - input: - product_category_id: ae-2-8-5-6-3 + product_category_id: ae-3-2-4 output: product_category_id: - - '6098' + - '2531' - input: - product_category_id: ae-2-8-5-7 + product_category_id: ae-3-2-5 output: product_category_id: - - '7285' + - '4730' - input: - product_category_id: ae-2-8-5-7-1 + product_category_id: ae-3-2-6 output: product_category_id: - - '7289' + - '505763' - input: - product_category_id: ae-2-8-5-7-1-1 + product_category_id: ae-3-2-6-1 output: product_category_id: - - '7289' + - '505763' - input: - product_category_id: ae-2-8-5-7-1-2 + product_category_id: ae-3-2-6-2 output: product_category_id: - - '7289' + - '505763' - input: - product_category_id: ae-2-8-5-7-1-3 + product_category_id: ae-3-2-6-3 output: product_category_id: - - '7289' + - '505763' - input: - product_category_id: ae-2-8-5-7-10 + product_category_id: ae-3-2-6-4 output: product_category_id: - - '2515' + - '505763' - input: - product_category_id: ae-2-8-5-7-10-1 + product_category_id: ae-3-2-7 output: product_category_id: - - '2515' + - '7007' - input: - product_category_id: ae-2-8-5-7-10-2 + product_category_id: ae-3-2-7-1 output: product_category_id: - - '2515' + - '7007' - input: - product_category_id: ae-2-8-5-7-10-3 + product_category_id: ae-3-2-7-2 output: product_category_id: - - '2515' + - '7007' - input: - product_category_id: ae-2-8-5-7-11 + product_category_id: ae-3-2-7-3 output: product_category_id: - - '7294' + - '7007' - input: - product_category_id: ae-2-8-5-7-11-1 + product_category_id: ae-3-2-7-4 output: product_category_id: - - '7294' + - '7007' - input: - product_category_id: ae-2-8-5-7-11-2 + product_category_id: ae-3-2-7-5 output: product_category_id: - - '7294' + - '7007' - input: - product_category_id: ae-2-8-5-7-2 + product_category_id: ae-3-2-8 output: product_category_id: - - '7288' + - '2781' - input: - product_category_id: ae-2-8-5-7-2-1 + product_category_id: ae-3-2-9 output: product_category_id: - - '7288' + - '8216' - input: - product_category_id: ae-2-8-5-7-2-2 + product_category_id: ae-3-2-10 output: product_category_id: - - '7288' + - '3735' - input: - product_category_id: ae-2-8-5-7-2-3 + product_category_id: ae-3-2-11 output: product_category_id: - - '7288' + - '5043' - input: - product_category_id: ae-2-8-5-7-3 + product_category_id: ae-3-2-12 output: product_category_id: - - '7555' + - '1484' - input: - product_category_id: ae-2-8-5-7-3-1 + product_category_id: ae-3-2-13 output: product_category_id: - - '7555' + - '8038' - input: - product_category_id: ae-2-8-5-7-3-2 + product_category_id: ae-3-2-14 output: product_category_id: - - '7555' + - '4914' - input: - product_category_id: ae-2-8-5-7-3-3 + product_category_id: ae-3-2-14-1 output: product_category_id: - - '7555' + - '4914' - input: - product_category_id: ae-2-8-5-7-3-4 + product_category_id: ae-3-2-14-2 output: product_category_id: - - '7555' + - '4914' - input: - product_category_id: ae-2-8-5-7-4 + product_category_id: ae-3-2-14-3 output: product_category_id: - - '7295' + - '4914' - input: - product_category_id: ae-2-8-5-7-4-1 + product_category_id: ae-3-2-15 output: product_category_id: - - '7298' + - '8110' - input: - product_category_id: ae-2-8-5-7-4-1-1 + product_category_id: ae-3-2-16 output: product_category_id: - - '7298' + - '1371' - input: - product_category_id: ae-2-8-5-7-4-2 + product_category_id: ae-3-2-17 output: product_category_id: - - '7297' + - '2783' - input: - product_category_id: ae-2-8-5-7-4-2-1 + product_category_id: ae-3-2-17-1 output: product_category_id: - - '7297' + - '2783' - input: - product_category_id: ae-2-8-5-7-4-2-2 + product_category_id: ae-3-2-17-2 output: product_category_id: - - '7297' + - '2783' - input: - product_category_id: ae-2-8-5-7-4-2-3 + product_category_id: ae-3-2-17-3 output: product_category_id: - - '7297' + - '2783' - input: - product_category_id: ae-2-8-5-7-4-3 + product_category_id: ae-3-2-17-4 output: product_category_id: - - '7296' + - '2783' - input: - product_category_id: ae-2-8-5-7-4-3-1 + product_category_id: ae-3-2-17-5 output: product_category_id: - - '7296' + - '2783' - input: - product_category_id: ae-2-8-5-7-4-3-2 + product_category_id: ae-3-2-18 output: product_category_id: - - '7296' + - '5452' - input: - product_category_id: ae-2-8-5-7-4-3-3 + product_category_id: ae-3-2-19 output: product_category_id: - - '7296' + - '7160' - input: - product_category_id: ae-2-8-5-7-4-4 + product_category_id: ae-3-2-20 output: product_category_id: - - '7300' + - '6906' - input: - product_category_id: ae-2-8-5-7-4-4-1 + product_category_id: ae-3-2-21 output: product_category_id: - - '7300' + - '502981' - input: - product_category_id: ae-2-8-5-7-4-4-2 + product_category_id: ae-3-2-21-1 output: product_category_id: - - '7300' + - '502981' - input: - product_category_id: ae-2-8-5-7-4-4-3 + product_category_id: ae-3-2-21-2 output: product_category_id: - - '7300' + - '502981' - input: - product_category_id: ae-2-8-5-7-4-5 + product_category_id: ae-3-2-21-3 output: product_category_id: - - '7299' + - '502981' - input: - product_category_id: ae-2-8-5-7-4-5-1 + product_category_id: ae-3-2-21-4 output: product_category_id: - - '7299' + - '502981' - input: - product_category_id: ae-2-8-5-7-4-5-2 + product_category_id: ae-3-2-21-5 output: product_category_id: - - '7299' + - '502981' - input: - product_category_id: ae-2-8-5-7-4-5-3 + product_category_id: ae-3-2-22 output: product_category_id: - - '7299' + - '502972' - input: - product_category_id: ae-2-8-5-7-4-6 + product_category_id: ae-3-2-23 output: product_category_id: - - '7302' + - '3994' - input: - product_category_id: ae-2-8-5-7-4-6-1 + product_category_id: ae-3-2-24 output: product_category_id: - - '7302' + - '5472' - input: - product_category_id: ae-2-8-5-7-4-6-2 + product_category_id: ae-3-2-25 output: product_category_id: - - '7302' + - '2104' - input: - product_category_id: ae-2-8-5-7-4-6-3 + product_category_id: ae-3-2-26 output: product_category_id: - - '7302' + - '1887' - input: - product_category_id: ae-2-8-5-7-4-7 + product_category_id: ae-3-2-27 output: product_category_id: - - '7301' + - '4915' - input: - product_category_id: ae-2-8-5-7-4-7-1 + product_category_id: ae-3-2-28 output: product_category_id: - - '7301' + - '7097' - input: - product_category_id: ae-2-8-5-7-4-7-2 + product_category_id: ae-3-2-29 output: product_category_id: - - '7301' + - '4351' - input: - product_category_id: ae-2-8-5-7-4-7-3 + product_category_id: ae-3-3 output: product_category_id: - - '7301' + - '408' - input: - product_category_id: ae-2-8-5-7-5 + product_category_id: ae-3-3-1 output: product_category_id: - - '7291' + - '5711' - input: - product_category_id: ae-2-8-5-7-6 + product_category_id: ae-3-3-2 output: product_category_id: - - '7293' + - '409' - input: - product_category_id: ae-2-8-5-7-6-1 + product_category_id: ae-3-3-3 output: product_category_id: - - '7293' + - '5967' - input: - product_category_id: ae-2-8-5-7-6-2 + product_category_id: ae-3-3-3-1 output: product_category_id: - - '7293' + - '5967' - input: - product_category_id: ae-2-8-5-7-6-3 + product_category_id: ae-3-3-3-2 output: product_category_id: - - '7293' + - '5967' - input: - product_category_id: ae-2-8-5-7-7 + product_category_id: ae-3-3-3-3 output: product_category_id: - - '7286' + - '5967' - input: - product_category_id: ae-2-8-5-7-7-3 + product_category_id: ae-3-3-4 output: product_category_id: - - '7286' + - '503028' - input: - product_category_id: ae-2-8-5-7-7-4 + product_category_id: ae-3-3-5 output: product_category_id: - - '7286' + - '410' - input: - product_category_id: ae-2-8-5-7-7-5 + product_category_id: ae-3-3-5-1 output: product_category_id: - - '7286' + - '410' - input: - product_category_id: ae-2-8-5-7-8 + product_category_id: ae-3-3-5-2 output: product_category_id: - - '7287' + - '410' - input: - product_category_id: ae-2-8-5-7-8-1 + product_category_id: ae-3-3-5-3 output: product_category_id: - - '7287' + - '410' - input: - product_category_id: ae-2-8-5-7-8-2 + product_category_id: ae-3-3-5-4 output: product_category_id: - - '7287' + - '410' - input: - product_category_id: ae-2-8-5-7-8-3 + product_category_id: ae-3-3-5-5 output: product_category_id: - - '7287' + - '410' - input: - product_category_id: ae-2-8-5-7-8-4 + product_category_id: ae-3-4 output: product_category_id: - - '7287' + - '5868' - input: - product_category_id: ae-2-8-5-7-9 + product_category_id: ae-3-4-1 output: product_category_id: - - '7290' + - '543656' - input: - product_category_id: ae-2-8-5-8 + product_category_id: ae-3-4-2 output: product_category_id: - - '3015' + - '543655' - input: - product_category_id: ae-2-8-5-9 + product_category_id: ae-3-4-2-1 output: product_category_id: - - '7232' + - '543655' - input: - product_category_id: ae-2-8-6 + product_category_id: ae-3-4-2-2 output: product_category_id: - - '76' + - '543655' - input: - product_category_id: ae-2-8-6-1 + product_category_id: ae-3-4-2-3 output: product_category_id: - - '76' + - '543655' - input: - product_category_id: ae-2-8-6-2 + product_category_id: ae-3-4-2-4 output: product_category_id: - - '76' + - '543655' - input: - product_category_id: ae-2-8-6-3 + product_category_id: ae-3-4-3 output: product_category_id: - - '76' + - '543657' - input: - product_category_id: ae-2-8-6-4 + product_category_id: ae-3-4-4 output: product_category_id: - - '76' + - '543654' - input: - product_category_id: ae-2-8-7 + product_category_id: ae-3-4-4-1 output: product_category_id: - - '77' + - '543654' - input: - product_category_id: ae-2-8-7-1 + product_category_id: ae-3-4-4-2 output: product_category_id: - - '79' + - '543654' - input: - product_category_id: ae-2-8-7-1-1 + product_category_id: ae-3-4-5 output: product_category_id: - - '79' + - '543653' - input: - product_category_id: ae-2-8-7-1-2 + product_category_id: ap output: product_category_id: - - '79' + - '1' - input: - product_category_id: ae-2-8-7-2 + product_category_id: ap-1 output: product_category_id: - - '80' + - '3237' - input: - product_category_id: ae-2-8-7-2-1 + product_category_id: ap-2 output: product_category_id: - - '80' + - '2' - input: - product_category_id: ae-2-8-7-2-2 + product_category_id: ap-2-1 output: product_category_id: - - '80' + - '3' - input: - product_category_id: ae-2-8-7-2-3 + product_category_id: ap-2-1-1 output: product_category_id: - - '80' + - '7385' - input: - product_category_id: ae-2-8-7-2-4 + product_category_id: ap-2-1-1-1 output: product_category_id: - - '80' + - '499954' - input: - product_category_id: ae-2-8-7-3 + product_category_id: ap-2-1-1-2 output: product_category_id: - - '84' + - '7386' - input: - product_category_id: ae-2-8-7-3-1 + product_category_id: ap-2-1-1-2-1 output: product_category_id: - - '84' + - '7386' - input: - product_category_id: ae-2-8-7-3-2 + product_category_id: ap-2-1-1-2-2 output: product_category_id: - - '84' + - '7386' - input: - product_category_id: ae-2-8-7-3-3 + product_category_id: ap-2-1-1-2-3 output: product_category_id: - - '84' + - '7386' - input: - product_category_id: ae-2-8-7-3-4 + product_category_id: ap-2-1-2 output: product_category_id: - - '84' + - '4989' - input: - product_category_id: ae-2-8-7-4 + product_category_id: ap-2-1-3 output: product_category_id: - - '78' + - '4990' - input: - product_category_id: ae-2-8-7-4-1 + product_category_id: ap-2-1-3-1 output: product_category_id: - - '78' + - '4990' - input: - product_category_id: ae-2-8-7-4-2 + product_category_id: ap-2-1-3-2 output: product_category_id: - - '78' + - '4990' - input: - product_category_id: ae-2-8-7-5 + product_category_id: ap-2-1-3-3 output: product_category_id: - - '85' + - '4990' - input: - product_category_id: ae-2-8-7-6 + product_category_id: ap-2-1-4 output: product_category_id: - - '86' + - '7398' - input: - product_category_id: ae-2-8-8 + product_category_id: ap-2-1-5 output: product_category_id: - - '87' + - '4991' - input: - product_category_id: ae-2-8-8-1 + product_category_id: ap-2-1-5-1 output: product_category_id: - - '4540' + - '4991' - input: - product_category_id: ae-2-8-8-1-1 + product_category_id: ap-2-1-5-2 output: product_category_id: - - '4540' + - '4991' - input: - product_category_id: ae-2-8-8-1-2 + product_category_id: ap-2-1-6 output: product_category_id: - - '4540' + - '4992' - input: - product_category_id: ae-2-8-8-1-3 + product_category_id: ap-2-1-6-1 output: product_category_id: - - '4540' + - '4992' - input: - product_category_id: ae-2-8-8-10 + product_category_id: ap-2-1-6-2 output: product_category_id: - - '7249' + - '4992' - input: - product_category_id: ae-2-8-8-10-1 + product_category_id: ap-2-1-6-3 output: product_category_id: - - '7249' + - '4992' - input: - product_category_id: ae-2-8-8-10-2 + product_category_id: ap-2-1-6-4 output: product_category_id: - - '7249' + - '4992' - input: - product_category_id: ae-2-8-8-10-3 + product_category_id: ap-2-1-6-5 output: product_category_id: - - '7249' + - '4992' - input: - product_category_id: ae-2-8-8-11 + product_category_id: ap-2-1-6-7 output: product_category_id: - - '90' + - '4992' - input: - product_category_id: ae-2-8-8-11-1 + product_category_id: ap-2-1-6-8 output: product_category_id: - - '90' + - '4992' - input: - product_category_id: ae-2-8-8-11-2 + product_category_id: ap-2-1-6-9 output: product_category_id: - - '90' + - '4992' - input: - product_category_id: ae-2-8-8-11-3 + product_category_id: ap-2-1-7 output: product_category_id: - - '90' + - '4993' - input: - product_category_id: ae-2-8-8-11-4 + product_category_id: ap-2-1-7-1 output: product_category_id: - - '90' + - '4993' - input: - product_category_id: ae-2-8-8-11-5 + product_category_id: ap-2-1-7-2 output: product_category_id: - - '90' + - '4993' - input: - product_category_id: ae-2-8-8-11-6 + product_category_id: ap-2-1-7-3 output: product_category_id: - - '90' + - '4993' - input: - product_category_id: ae-2-8-8-11-7 + product_category_id: ap-2-1-7-4 output: product_category_id: - - '90' + - '4993' - input: - product_category_id: ae-2-8-8-12 + product_category_id: ap-2-1-7-5 output: product_category_id: - - '91' + - '4993' - input: - product_category_id: ae-2-8-8-12-1 + product_category_id: ap-2-1-7-6 output: product_category_id: - - '91' + - '4993' - input: - product_category_id: ae-2-8-8-12-2 + product_category_id: ap-2-1-7-7 output: product_category_id: - - '91' + - '4993' - input: - product_category_id: ae-2-8-8-12-3 + product_category_id: ap-2-1-7-8 output: product_category_id: - - '91' + - '4993' - input: - product_category_id: ae-2-8-8-12-4 + product_category_id: ap-2-1-7-9 output: product_category_id: - - '91' + - '4993' - input: - product_category_id: ae-2-8-8-12-5 + product_category_id: ap-2-2 output: product_category_id: - - '91' + - '4' - input: - product_category_id: ae-2-8-8-13 + product_category_id: ap-2-2-1 output: product_category_id: - - '6721' + - '3367' - input: - product_category_id: ae-2-8-8-13-1 + product_category_id: ap-2-2-1-1 output: product_category_id: - - '6721' + - '543684' - input: - product_category_id: ae-2-8-8-13-2 + product_category_id: ap-2-2-1-2 output: product_category_id: - - '6721' + - '543683' - input: - product_category_id: ae-2-8-8-13-3 + product_category_id: ap-2-2-2 output: product_category_id: - - '6721' + - '4997' - input: - product_category_id: ae-2-8-8-13-4 + product_category_id: ap-2-2-2-1 output: product_category_id: - - '6721' + - '4997' - input: - product_category_id: ae-2-8-8-13-5 + product_category_id: ap-2-2-2-2 output: product_category_id: - - '6721' + - '4997' - input: - product_category_id: ae-2-8-8-14 + product_category_id: ap-2-2-2-3 output: product_category_id: - - '6728' + - '4997' - input: - product_category_id: ae-2-8-8-14-1 + product_category_id: ap-2-2-2-4 output: product_category_id: - - '6728' + - '4997' - input: - product_category_id: ae-2-8-8-14-2 + product_category_id: ap-2-2-2-5 output: product_category_id: - - '6728' + - '4997' - input: - product_category_id: ae-2-8-8-2 + product_category_id: ap-2-2-2-6 output: product_category_id: - - '88' + - '4997' - input: - product_category_id: ae-2-8-8-2-1 + product_category_id: ap-2-2-2-7 output: product_category_id: - - '88' + - '4997' - input: - product_category_id: ae-2-8-8-2-2 + product_category_id: ap-2-2-3 output: product_category_id: - - '88' + - '500059' - input: - product_category_id: ae-2-8-8-2-3 + product_category_id: ap-2-2-4 output: product_category_id: - - '88' + - '4999' - input: - product_category_id: ae-2-8-8-2-4 + product_category_id: ap-2-2-4-1 output: product_category_id: - - '88' + - '8069' - input: - product_category_id: ae-2-8-8-2-5 + product_category_id: ap-2-2-4-2 output: product_category_id: - - '88' + - '7142' - input: - product_category_id: ae-2-8-8-2-6 + product_category_id: ap-2-2-4-3 output: product_category_id: - - '88' + - '5000' - input: - product_category_id: ae-2-8-8-2-7 + product_category_id: ap-2-2-5 output: product_category_id: - - '88' + - '5001' - input: - product_category_id: ae-2-8-8-3 + product_category_id: ap-2-2-5-1 output: product_category_id: - - '89' + - '5001' - input: - product_category_id: ae-2-8-8-3-1 + product_category_id: ap-2-2-5-2 output: product_category_id: - - '89' + - '5001' - input: - product_category_id: ae-2-8-8-3-2 + product_category_id: ap-2-2-5-3 output: product_category_id: - - '89' + - '5001' - input: - product_category_id: ae-2-8-8-3-3 + product_category_id: ap-2-2-5-4 output: product_category_id: - - '89' + - '5001' - input: - product_category_id: ae-2-8-8-3-4 + product_category_id: ap-2-2-5-5 output: product_category_id: - - '89' + - '5001' - input: - product_category_id: ae-2-8-8-4 + product_category_id: ap-2-2-5-6 output: product_category_id: - - '7188' + - '5001' - input: - product_category_id: ae-2-8-8-4-1 + product_category_id: ap-2-2-5-7 output: product_category_id: - - '7188' + - '5001' - input: - product_category_id: ae-2-8-8-4-2 + product_category_id: ap-2-2-5-9 output: product_category_id: - - '7188' + - '5001' - input: - product_category_id: ae-2-8-8-4-3 + product_category_id: ap-2-2-5-10 output: product_category_id: - - '7188' + - '5001' - input: - product_category_id: ae-2-8-8-4-4 + product_category_id: ap-2-2-5-11 output: product_category_id: - - '7188' + - '5001' - input: - product_category_id: ae-2-8-8-5 + product_category_id: ap-2-2-5-12 output: product_category_id: - - '4743' + - '5001' - input: - product_category_id: ae-2-8-8-5-1 + product_category_id: ap-2-2-6 output: product_category_id: - - '4743' + - '5002' - input: - product_category_id: ae-2-8-8-5-2 + product_category_id: ap-2-2-6-1 output: product_category_id: - - '4743' + - '5002' - input: - product_category_id: ae-2-8-8-5-3 + product_category_id: ap-2-2-6-3 output: product_category_id: - - '4743' + - '5002' - input: - product_category_id: ae-2-8-8-5-4 + product_category_id: ap-2-2-6-4 output: product_category_id: - - '4743' + - '5002' - input: - product_category_id: ae-2-8-8-5-5 + product_category_id: ap-2-2-6-5 output: product_category_id: - - '4743' + - '5002' - input: - product_category_id: ae-2-8-8-5-6 + product_category_id: ap-2-3 output: product_category_id: - - '4743' + - '5' - input: - product_category_id: ae-2-8-8-5-7 + product_category_id: ap-2-3-1 output: product_category_id: - - '4743' + - '7372' - input: - product_category_id: ae-2-8-8-6 + product_category_id: ap-2-3-2 output: product_category_id: - - '4744' + - '499900' - input: - product_category_id: ae-2-8-8-6-1 + product_category_id: ap-2-3-3 output: product_category_id: - - '4744' + - '3530' - input: - product_category_id: ae-2-8-8-6-2 + product_category_id: ap-2-3-3-1 output: product_category_id: - - '4744' + - '543682' - input: - product_category_id: ae-2-8-8-7 + product_category_id: ap-2-3-3-2 output: product_category_id: - - '5481' + - '543681' - input: - product_category_id: ae-2-8-8-7-1 + product_category_id: ap-2-3-4 output: product_category_id: - - '5481' + - '5094' - input: - product_category_id: ae-2-8-8-7-2 + product_category_id: ap-2-3-5 output: product_category_id: - - '5481' + - '7428' - input: - product_category_id: ae-2-8-8-8 + product_category_id: ap-2-3-6 output: product_category_id: - - '7250' + - '7274' - input: - product_category_id: ae-2-8-8-8-1 + product_category_id: ap-2-3-6-1 output: product_category_id: - - '7250' + - '7274' - input: - product_category_id: ae-2-8-8-8-2 + product_category_id: ap-2-3-6-2 output: product_category_id: - - '7250' + - '7274' - input: - product_category_id: ae-2-8-8-8-3 + product_category_id: ap-2-3-6-3 output: product_category_id: - - '7250' + - '7274' - input: - product_category_id: ae-2-8-8-9 + product_category_id: ap-2-3-6-4 output: product_category_id: - - '4541' + - '7274' - input: - product_category_id: ae-2-8-8-9-1 + product_category_id: ap-2-3-6-5 output: product_category_id: - - '4541' + - '7274' - input: - product_category_id: ae-2-8-8-9-2 + product_category_id: ap-2-3-7 output: product_category_id: - - '4541' + - '5010' - input: - product_category_id: ae-3 + product_category_id: ap-2-3-8 output: product_category_id: - - '5709' + - '8123' - input: - product_category_id: ae-3-1 + product_category_id: ap-2-3-9 output: product_category_id: - - '2559' + - '5011' - input: - product_category_id: ae-3-1-1 + product_category_id: ap-2-3-9-1 output: product_category_id: - - '6100' + - '5011' - input: - product_category_id: ae-3-1-2 + product_category_id: ap-2-3-9-2 output: product_category_id: - - '5916' + - '5011' - input: - product_category_id: ae-3-1-3 + product_category_id: ap-2-3-9-3 output: product_category_id: - - '2899' + - '5011' - input: - product_category_id: ae-3-1-3-1 + product_category_id: ap-2-3-9-4 output: product_category_id: - - '2899' + - '5011' - input: - product_category_id: ae-3-1-3-2 + product_category_id: ap-2-3-9-5 output: product_category_id: - - '2899' + - '5011' - input: - product_category_id: ae-3-1-3-3 + product_category_id: ap-2-4 output: product_category_id: - - '2899' + - '6' - input: - product_category_id: ae-3-1-3-4 + product_category_id: ap-2-4-1 output: product_category_id: - - '2899' + - '505303' - input: - product_category_id: ae-3-1-3-5 + product_category_id: ap-2-4-1-1 output: product_category_id: - - '2899' + - '505303' - input: - product_category_id: ae-3-1-3-6 + product_category_id: ap-2-4-1-2 output: product_category_id: - - '2899' + - '505303' - input: - product_category_id: ae-3-1-5 + product_category_id: ap-2-4-1-3 output: product_category_id: - - '94' + - '505303' - input: - product_category_id: ae-3-1-5-1 + product_category_id: ap-2-4-1-4 output: product_category_id: - - '5838' + - '505303' - input: - product_category_id: ae-3-1-5-2 + product_category_id: ap-2-4-1-5 output: product_category_id: - - '5091' + - '505303' - input: - product_category_id: ae-3-1-5-3 + product_category_id: ap-2-4-2 output: product_category_id: - - '8213' + - '505307' - input: - product_category_id: ae-3-1-5-4 + product_category_id: ap-2-4-2-1 output: product_category_id: - - '6712' + - '505307' - input: - product_category_id: ae-3-1-5-5 + product_category_id: ap-2-4-2-2 output: product_category_id: - - '2816' + - '505307' - input: - product_category_id: ae-3-1-6 + product_category_id: ap-2-4-2-3 output: product_category_id: - - '95' + - '505307' - input: - product_category_id: ae-3-1-6-2 + product_category_id: ap-2-4-2-4 output: product_category_id: - - '95' + - '505307' - input: - product_category_id: ae-3-1-6-3 + product_category_id: ap-2-4-2-5 output: product_category_id: - - '95' + - '505307' - input: - product_category_id: ae-3-1-6-4 + product_category_id: ap-2-4-3 output: product_category_id: - - '95' + - '500038' - input: - product_category_id: ae-3-2 + product_category_id: ap-2-4-3-1 output: product_category_id: - - '96' + - '500038' - input: - product_category_id: ae-3-2-1 + product_category_id: ap-2-4-3-2 output: product_category_id: - - '328061' + - '500038' - input: - product_category_id: ae-3-2-10 + product_category_id: ap-2-4-3-3 output: product_category_id: - - '3735' + - '500038' - input: - product_category_id: ae-3-2-11 + product_category_id: ap-2-4-3-4 output: product_category_id: - - '5043' + - '500038' - input: - product_category_id: ae-3-2-12 + product_category_id: ap-2-4-3-5 output: product_category_id: - - '1484' + - '500038' - input: - product_category_id: ae-3-2-13 + product_category_id: ap-2-4-3-6 output: product_category_id: - - '8038' + - '500038' - input: - product_category_id: ae-3-2-14 + product_category_id: ap-2-4-3-7 output: product_category_id: - - '4914' + - '500038' - input: - product_category_id: ae-3-2-14-1 + product_category_id: ap-2-4-3-8 output: product_category_id: - - '4914' + - '500038' - input: - product_category_id: ae-3-2-14-2 + product_category_id: ap-2-4-4 output: product_category_id: - - '4914' + - '5019' - input: - product_category_id: ae-3-2-14-3 + product_category_id: ap-2-4-4-1 output: product_category_id: - - '4914' + - '5019' - input: - product_category_id: ae-3-2-15 + product_category_id: ap-2-4-4-2 output: product_category_id: - - '8110' + - '5019' - input: - product_category_id: ae-3-2-16 + product_category_id: ap-2-4-4-3 output: product_category_id: - - '1371' + - '5019' - input: - product_category_id: ae-3-2-17 + product_category_id: ap-2-4-4-4 output: product_category_id: - - '2783' + - '5019' - input: - product_category_id: ae-3-2-17-1 + product_category_id: ap-2-4-4-5 output: product_category_id: - - '2783' + - '5019' - input: - product_category_id: ae-3-2-17-2 + product_category_id: ap-2-4-4-6 output: product_category_id: - - '2783' + - '5019' - input: - product_category_id: ae-3-2-17-3 + product_category_id: ap-2-4-4-7 output: product_category_id: - - '2783' + - '5019' - input: - product_category_id: ae-3-2-17-4 + product_category_id: ap-2-4-4-8 output: product_category_id: - - '2783' + - '5019' - input: - product_category_id: ae-3-2-17-5 + product_category_id: ap-2-4-4-9 output: product_category_id: - - '2783' + - '5019' - input: - product_category_id: ae-3-2-18 + product_category_id: ap-2-4-5 output: product_category_id: - - '5452' + - '5020' - input: - product_category_id: ae-3-2-19 + product_category_id: ap-2-4-5-1 output: product_category_id: - - '7160' + - '5020' - input: - product_category_id: ae-3-2-2 + product_category_id: ap-2-4-5-2 output: product_category_id: - - '6311' + - '5020' - input: - product_category_id: ae-3-2-20 + product_category_id: ap-2-4-5-3 output: product_category_id: - - '6906' + - '5020' - input: - product_category_id: ae-3-2-21 + product_category_id: ap-2-4-5-4 output: product_category_id: - - '502981' + - '5020' - input: - product_category_id: ae-3-2-21-1 + product_category_id: ap-2-4-5-5 output: product_category_id: - - '502981' + - '5020' - input: - product_category_id: ae-3-2-21-2 + product_category_id: ap-2-4-6 output: product_category_id: - - '502981' + - '505306' - input: - product_category_id: ae-3-2-21-3 + product_category_id: ap-2-4-6-1 output: product_category_id: - - '502981' + - '505306' - input: - product_category_id: ae-3-2-21-4 + product_category_id: ap-2-4-6-2 output: product_category_id: - - '502981' + - '505306' - input: - product_category_id: ae-3-2-21-5 + product_category_id: ap-2-4-6-3 output: product_category_id: - - '502981' + - '505306' - input: - product_category_id: ae-3-2-22 + product_category_id: ap-2-4-6-4 output: product_category_id: - - '502972' + - '505306' - input: - product_category_id: ae-3-2-23 + product_category_id: ap-2-4-7 output: product_category_id: - - '3994' + - '5021' - input: - product_category_id: ae-3-2-24 + product_category_id: ap-2-4-7-1 output: product_category_id: - - '5472' + - '5021' - input: - product_category_id: ae-3-2-25 + product_category_id: ap-2-4-7-2 output: product_category_id: - - '2104' + - '5021' - input: - product_category_id: ae-3-2-26 + product_category_id: ap-2-4-7-3 output: product_category_id: - - '1887' + - '5021' - input: - product_category_id: ae-3-2-27 + product_category_id: ap-2-4-7-4 output: product_category_id: - - '4915' + - '5021' - input: - product_category_id: ae-3-2-28 + product_category_id: ap-2-4-7-5 output: product_category_id: - - '7097' + - '5021' - input: - product_category_id: ae-3-2-29 + product_category_id: ap-2-4-7-6 output: product_category_id: - - '4351' + - '5021' - input: - product_category_id: ae-3-2-3 + product_category_id: ap-2-4-7-7 output: product_category_id: - - '2587' + - '5021' - input: - product_category_id: ae-3-2-4 + product_category_id: ap-2-4-8 output: product_category_id: - - '2531' + - '5079' - input: - product_category_id: ae-3-2-5 + product_category_id: ap-2-4-9 output: product_category_id: - - '4730' + - '6951' - input: - product_category_id: ae-3-2-6 + product_category_id: ap-2-4-10 output: product_category_id: - - '505763' + - '5023' - input: - product_category_id: ae-3-2-6-1 + product_category_id: ap-2-4-10-1 output: product_category_id: - - '505763' + - '5023' - input: - product_category_id: ae-3-2-6-2 + product_category_id: ap-2-4-10-2 output: product_category_id: - - '505763' + - '5023' - input: - product_category_id: ae-3-2-6-3 + product_category_id: ap-2-4-10-3 output: product_category_id: - - '505763' + - '5023' - input: - product_category_id: ae-3-2-6-4 + product_category_id: ap-2-4-10-4 output: product_category_id: - - '505763' + - '5023' - input: - product_category_id: ae-3-2-7 + product_category_id: ap-2-4-11 output: product_category_id: - - '7007' + - '500062' - input: - product_category_id: ae-3-2-7-1 + product_category_id: ap-2-4-11-1 output: product_category_id: - - '7007' + - '500062' - input: - product_category_id: ae-3-2-7-2 + product_category_id: ap-2-4-11-2 output: product_category_id: - - '7007' + - '500062' - input: - product_category_id: ae-3-2-7-3 + product_category_id: ap-2-4-12 output: product_category_id: - - '7007' + - '5161' - input: - product_category_id: ae-3-2-7-4 + product_category_id: ap-2-4-12-1 output: product_category_id: - - '7007' + - '5161' - input: - product_category_id: ae-3-2-7-5 + product_category_id: ap-2-4-12-2 output: product_category_id: - - '7007' + - '5161' - input: - product_category_id: ae-3-2-8 + product_category_id: ap-2-4-12-3 output: product_category_id: - - '2781' + - '5161' - input: - product_category_id: ae-3-2-9 + product_category_id: ap-2-4-12-4 output: product_category_id: - - '8216' + - '5161' - input: - product_category_id: ae-3-3 + product_category_id: ap-2-4-12-5 output: product_category_id: - - '408' + - '5161' - input: - product_category_id: ae-3-3-1 + product_category_id: ap-2-4-12-6 output: product_category_id: - - '5711' + - '5161' - input: - product_category_id: ae-3-3-2 + product_category_id: ap-2-4-12-7 output: product_category_id: - - '409' + - '5161' - input: - product_category_id: ae-3-3-3 + product_category_id: ap-2-4-12-8 output: product_category_id: - - '5967' + - '5161' - input: - product_category_id: ae-3-3-3-1 + product_category_id: ap-2-4-13 output: product_category_id: - - '5967' + - '3238' - input: - product_category_id: ae-3-3-3-2 + product_category_id: ap-2-4-14 output: product_category_id: - - '5967' + - '6085' - input: - product_category_id: ae-3-3-3-3 + product_category_id: ap-2-4-14-1 output: product_category_id: - - '5967' + - '6085' - input: - product_category_id: ae-3-3-4 + product_category_id: ap-2-4-14-2 output: product_category_id: - - '503028' + - '6085' - input: - product_category_id: ae-3-3-5 + product_category_id: ap-2-4-14-3 output: product_category_id: - - '410' + - '6085' - input: - product_category_id: ae-3-3-5-1 + product_category_id: ap-2-4-14-4 output: product_category_id: - - '410' + - '6085' - input: - product_category_id: ae-3-3-5-2 + product_category_id: ap-2-4-15 output: product_category_id: - - '410' + - '6403' - input: - product_category_id: ae-3-3-5-3 + product_category_id: ap-2-4-16 output: product_category_id: - - '410' + - '5024' - input: - product_category_id: ae-3-3-5-4 + product_category_id: ap-2-4-16-1 output: product_category_id: - - '410' + - '5024' - input: - product_category_id: ae-3-3-5-5 + product_category_id: ap-2-4-16-2 output: product_category_id: - - '410' + - '5024' - input: - product_category_id: ae-3-4 + product_category_id: ap-2-4-16-3 output: product_category_id: - - '5868' + - '5024' - input: - product_category_id: ae-3-4-1 + product_category_id: ap-2-4-16-4 output: product_category_id: - - '543656' + - '5024' - input: - product_category_id: ae-3-4-2 + product_category_id: ap-2-4-16-5 output: product_category_id: - - '543655' + - '5024' - input: - product_category_id: ae-3-4-2-1 + product_category_id: ap-2-4-16-6 output: product_category_id: - - '543655' + - '5024' - input: - product_category_id: ae-3-4-2-2 + product_category_id: ap-2-4-16-7 output: product_category_id: - - '543655' + - '5024' - input: - product_category_id: ae-3-4-2-3 + product_category_id: ap-2-4-16-8 output: product_category_id: - - '543655' + - '5024' - input: - product_category_id: ae-3-4-2-4 + product_category_id: ap-2-4-16-9 output: product_category_id: - - '543655' + - '5024' - input: - product_category_id: ae-3-4-3 + product_category_id: ap-2-5 output: product_category_id: - - '543657' + - '6983' - input: - product_category_id: ae-3-4-4 + product_category_id: ap-2-5-1 output: product_category_id: - - '543654' + - '6983' - input: - product_category_id: ae-3-4-4-1 + product_category_id: ap-2-5-2 output: product_category_id: - - '543654' + - '6983' - input: - product_category_id: ae-3-4-4-2 + product_category_id: ap-2-5-3 output: product_category_id: - - '543654' + - '6983' - input: - product_category_id: ae-3-4-5 + product_category_id: ap-2-5-4 output: product_category_id: - - '543653' + - '6983' - input: - product_category_id: ap + product_category_id: ap-2-5-5 output: product_category_id: - - '1' + - '6983' - input: - product_category_id: ap-1 + product_category_id: ap-2-5-6 output: product_category_id: - - '3237' + - '6983' - input: - product_category_id: ap-2 + product_category_id: ap-2-5-7 output: product_category_id: - - '2' + - '6983' - input: - product_category_id: ap-2-1 + product_category_id: ap-2-5-8 output: product_category_id: - - '3' + - '6983' - input: - product_category_id: ap-2-1-1 + product_category_id: ap-2-6 output: product_category_id: - - '7385' + - '2' - input: - product_category_id: ap-2-1-1-1 + product_category_id: ap-2-6-1 output: product_category_id: - - '499954' + - '2' - input: - product_category_id: ap-2-1-1-2 + product_category_id: ap-2-6-2 output: product_category_id: - - '7386' + - '2' - input: - product_category_id: ap-2-1-1-2-1 + product_category_id: ap-2-6-3 output: product_category_id: - - '7386' + - '2' - input: - product_category_id: ap-2-1-1-2-2 + product_category_id: ap-2-6-4 output: product_category_id: - - '7386' + - '2' - input: - product_category_id: ap-2-1-1-2-3 + product_category_id: ap-2-6-5 output: product_category_id: - - '7386' + - '2' - input: - product_category_id: ap-2-1-2 + product_category_id: ap-2-6-6 output: product_category_id: - - '4989' + - '2' - input: - product_category_id: ap-2-1-3 + product_category_id: ap-2-6-7 output: product_category_id: - - '4990' + - '2' - input: - product_category_id: ap-2-1-3-1 + product_category_id: ap-2-6-8 output: product_category_id: - - '4990' + - '2' - input: - product_category_id: ap-2-1-3-2 + product_category_id: ap-2-6-9 output: product_category_id: - - '4990' + - '2' - input: - product_category_id: ap-2-1-3-3 + product_category_id: ap-2-6-10 output: product_category_id: - - '4990' + - '2' - input: - product_category_id: ap-2-1-4 + product_category_id: ap-2-6-11 output: product_category_id: - - '7398' + - '2' - input: - product_category_id: ap-2-1-5 + product_category_id: ap-2-6-12 output: product_category_id: - - '4991' + - '2' - input: - product_category_id: ap-2-1-5-1 + product_category_id: ap-2-6-13 output: product_category_id: - - '4991' + - '2' - input: - product_category_id: ap-2-1-5-2 + product_category_id: ap-2-6-14 output: product_category_id: - - '4991' + - '2' - input: - product_category_id: ap-2-1-6 + product_category_id: ap-2-6-15 output: product_category_id: - - '4992' + - '2' - input: - product_category_id: ap-2-1-6-1 + product_category_id: ap-2-6-16 output: product_category_id: - - '4992' + - '2' - input: - product_category_id: ap-2-1-6-2 + product_category_id: ap-2-6-17 output: product_category_id: - - '4992' + - '2' - input: - product_category_id: ap-2-1-6-3 + product_category_id: ap-2-7 output: product_category_id: - - '4992' + - '6811' - input: - product_category_id: ap-2-1-6-4 + product_category_id: ap-2-8 output: product_category_id: - - '4992' + - '500084' - input: - product_category_id: ap-2-1-6-5 + product_category_id: ap-2-9 output: product_category_id: - - '4992' + - '2' - input: - product_category_id: ap-2-1-6-7 + product_category_id: ap-2-9-1 output: product_category_id: - - '4992' + - '2' - input: - product_category_id: ap-2-1-6-8 + product_category_id: ap-2-9-2 output: product_category_id: - - '4992' + - '2' - input: - product_category_id: ap-2-1-6-9 + product_category_id: ap-2-9-3 output: product_category_id: - - '4992' + - '2' - input: - product_category_id: ap-2-1-7 + product_category_id: ap-2-9-4 output: product_category_id: - - '4993' + - '2' - input: - product_category_id: ap-2-1-7-1 + product_category_id: ap-2-9-5 output: product_category_id: - - '4993' + - '2' - input: - product_category_id: ap-2-1-7-2 + product_category_id: ap-2-9-6 output: product_category_id: - - '4993' + - '2' - input: - product_category_id: ap-2-1-7-3 + product_category_id: ap-2-9-7 output: product_category_id: - - '4993' + - '2' - input: - product_category_id: ap-2-1-7-4 + product_category_id: ap-2-9-8 output: product_category_id: - - '4993' + - '2' - input: - product_category_id: ap-2-1-7-5 + product_category_id: ap-2-9-9 output: product_category_id: - - '4993' + - '2' - input: - product_category_id: ap-2-1-7-6 + product_category_id: ap-2-9-10 output: product_category_id: - - '4993' + - '2' - input: - product_category_id: ap-2-1-7-7 + product_category_id: ap-2-9-11 output: product_category_id: - - '4993' + - '2' - input: - product_category_id: ap-2-1-7-8 + product_category_id: ap-2-9-12 output: product_category_id: - - '4993' + - '2' - input: - product_category_id: ap-2-1-7-9 + product_category_id: ap-2-9-13 output: product_category_id: - - '4993' + - '2' - input: product_category_id: ap-2-10 output: @@ -8468,47 +9398,47 @@ rules: product_category_id: - '6251' - input: - product_category_id: ap-2-16-10 + product_category_id: ap-2-16-2 output: product_category_id: - '6251' - input: - product_category_id: ap-2-16-11 + product_category_id: ap-2-16-3 output: product_category_id: - '6251' - input: - product_category_id: ap-2-16-12 + product_category_id: ap-2-16-4 output: product_category_id: - '6251' - input: - product_category_id: ap-2-16-2 + product_category_id: ap-2-16-5 output: product_category_id: - '6251' - input: - product_category_id: ap-2-16-3 + product_category_id: ap-2-16-8 output: product_category_id: - '6251' - input: - product_category_id: ap-2-16-4 + product_category_id: ap-2-16-9 output: product_category_id: - '6251' - input: - product_category_id: ap-2-16-5 + product_category_id: ap-2-16-10 output: product_category_id: - '6251' - input: - product_category_id: ap-2-16-8 + product_category_id: ap-2-16-11 output: product_category_id: - '6251' - input: - product_category_id: ap-2-16-9 + product_category_id: ap-2-16-12 output: product_category_id: - '6251' @@ -8522,11 +9452,6 @@ rules: output: product_category_id: - '6250' -- input: - product_category_id: ap-2-17-10 - output: - product_category_id: - - '6250' - input: product_category_id: ap-2-17-2 output: @@ -8567,6 +9492,11 @@ rules: output: product_category_id: - '6250' +- input: + product_category_id: ap-2-17-10 + output: + product_category_id: + - '6250' - input: product_category_id: ap-2-18 output: @@ -8607,176 +9537,6 @@ rules: output: product_category_id: - '505811' -- input: - product_category_id: ap-2-2 - output: - product_category_id: - - '4' -- input: - product_category_id: ap-2-2-1 - output: - product_category_id: - - '3367' -- input: - product_category_id: ap-2-2-1-1 - output: - product_category_id: - - '543684' -- input: - product_category_id: ap-2-2-1-2 - output: - product_category_id: - - '543683' -- input: - product_category_id: ap-2-2-2 - output: - product_category_id: - - '4997' -- input: - product_category_id: ap-2-2-2-1 - output: - product_category_id: - - '4997' -- input: - product_category_id: ap-2-2-2-2 - output: - product_category_id: - - '4997' -- input: - product_category_id: ap-2-2-2-3 - output: - product_category_id: - - '4997' -- input: - product_category_id: ap-2-2-2-4 - output: - product_category_id: - - '4997' -- input: - product_category_id: ap-2-2-2-5 - output: - product_category_id: - - '4997' -- input: - product_category_id: ap-2-2-2-6 - output: - product_category_id: - - '4997' -- input: - product_category_id: ap-2-2-2-7 - output: - product_category_id: - - '4997' -- input: - product_category_id: ap-2-2-3 - output: - product_category_id: - - '500059' -- input: - product_category_id: ap-2-2-4 - output: - product_category_id: - - '4999' -- input: - product_category_id: ap-2-2-4-1 - output: - product_category_id: - - '8069' -- input: - product_category_id: ap-2-2-4-2 - output: - product_category_id: - - '7142' -- input: - product_category_id: ap-2-2-4-3 - output: - product_category_id: - - '5000' -- input: - product_category_id: ap-2-2-5 - output: - product_category_id: - - '5001' -- input: - product_category_id: ap-2-2-5-1 - output: - product_category_id: - - '5001' -- input: - product_category_id: ap-2-2-5-10 - output: - product_category_id: - - '5001' -- input: - product_category_id: ap-2-2-5-11 - output: - product_category_id: - - '5001' -- input: - product_category_id: ap-2-2-5-12 - output: - product_category_id: - - '5001' -- input: - product_category_id: ap-2-2-5-2 - output: - product_category_id: - - '5001' -- input: - product_category_id: ap-2-2-5-3 - output: - product_category_id: - - '5001' -- input: - product_category_id: ap-2-2-5-4 - output: - product_category_id: - - '5001' -- input: - product_category_id: ap-2-2-5-5 - output: - product_category_id: - - '5001' -- input: - product_category_id: ap-2-2-5-6 - output: - product_category_id: - - '5001' -- input: - product_category_id: ap-2-2-5-7 - output: - product_category_id: - - '5001' -- input: - product_category_id: ap-2-2-5-9 - output: - product_category_id: - - '5001' -- input: - product_category_id: ap-2-2-6 - output: - product_category_id: - - '5002' -- input: - product_category_id: ap-2-2-6-1 - output: - product_category_id: - - '5002' -- input: - product_category_id: ap-2-2-6-3 - output: - product_category_id: - - '5002' -- input: - product_category_id: ap-2-2-6-4 - output: - product_category_id: - - '5002' -- input: - product_category_id: ap-2-2-6-5 - output: - product_category_id: - - '5002' - input: product_category_id: ap-2-20 output: @@ -9053,200 +9813,90 @@ rules: product_category_id: - '6406' - input: - product_category_id: ap-2-26-7-3 - output: - product_category_id: - - '6406' -- input: - product_category_id: ap-2-26-8 - output: - product_category_id: - - '499917' -- input: - product_category_id: ap-2-26-8-1 - output: - product_category_id: - - '499917' -- input: - product_category_id: ap-2-26-8-2 - output: - product_category_id: - - '499917' -- input: - product_category_id: ap-2-26-8-3 - output: - product_category_id: - - '499917' -- input: - product_category_id: ap-2-26-8-4 - output: - product_category_id: - - '499917' -- input: - product_category_id: ap-2-26-8-5 - output: - product_category_id: - - '499917' -- input: - product_category_id: ap-2-26-8-6 - output: - product_category_id: - - '499917' -- input: - product_category_id: ap-2-26-8-7 - output: - product_category_id: - - '499917' -- input: - product_category_id: ap-2-26-8-8 - output: - product_category_id: - - '499917' -- input: - product_category_id: ap-2-27 - output: - product_category_id: - - '500110' -- input: - product_category_id: ap-2-28 - output: - product_category_id: - - '499743' -- input: - product_category_id: ap-2-29 - output: - product_category_id: - - '5093' -- input: - product_category_id: ap-2-29-1 - output: - product_category_id: - - '5093' -- input: - product_category_id: ap-2-29-2 - output: - product_category_id: - - '5093' -- input: - product_category_id: ap-2-29-3 - output: - product_category_id: - - '5093' -- input: - product_category_id: ap-2-29-4 - output: - product_category_id: - - '5093' -- input: - product_category_id: ap-2-3 - output: - product_category_id: - - '5' -- input: - product_category_id: ap-2-3-1 - output: - product_category_id: - - '7372' -- input: - product_category_id: ap-2-3-2 - output: - product_category_id: - - '499900' -- input: - product_category_id: ap-2-3-3 - output: - product_category_id: - - '3530' -- input: - product_category_id: ap-2-3-3-1 - output: - product_category_id: - - '543682' -- input: - product_category_id: ap-2-3-3-2 + product_category_id: ap-2-26-7-3 output: product_category_id: - - '543681' + - '6406' - input: - product_category_id: ap-2-3-4 + product_category_id: ap-2-26-8 output: product_category_id: - - '5094' + - '499917' - input: - product_category_id: ap-2-3-5 + product_category_id: ap-2-26-8-1 output: product_category_id: - - '7428' + - '499917' - input: - product_category_id: ap-2-3-6 + product_category_id: ap-2-26-8-2 output: product_category_id: - - '7274' + - '499917' - input: - product_category_id: ap-2-3-6-1 + product_category_id: ap-2-26-8-3 output: product_category_id: - - '7274' + - '499917' - input: - product_category_id: ap-2-3-6-2 + product_category_id: ap-2-26-8-4 output: product_category_id: - - '7274' + - '499917' - input: - product_category_id: ap-2-3-6-3 + product_category_id: ap-2-26-8-5 output: product_category_id: - - '7274' + - '499917' - input: - product_category_id: ap-2-3-6-4 + product_category_id: ap-2-26-8-6 output: product_category_id: - - '7274' + - '499917' - input: - product_category_id: ap-2-3-6-5 + product_category_id: ap-2-26-8-7 output: product_category_id: - - '7274' + - '499917' - input: - product_category_id: ap-2-3-7 + product_category_id: ap-2-26-8-8 output: product_category_id: - - '5010' + - '499917' - input: - product_category_id: ap-2-3-8 + product_category_id: ap-2-27 output: product_category_id: - - '8123' + - '500110' - input: - product_category_id: ap-2-3-9 + product_category_id: ap-2-28 output: product_category_id: - - '5011' + - '499743' - input: - product_category_id: ap-2-3-9-1 + product_category_id: ap-2-29 output: product_category_id: - - '5011' + - '5093' - input: - product_category_id: ap-2-3-9-2 + product_category_id: ap-2-29-1 output: product_category_id: - - '5011' + - '5093' - input: - product_category_id: ap-2-3-9-3 + product_category_id: ap-2-29-2 output: product_category_id: - - '5011' + - '5093' - input: - product_category_id: ap-2-3-9-4 + product_category_id: ap-2-29-3 output: product_category_id: - - '5011' + - '5093' - input: - product_category_id: ap-2-3-9-5 + product_category_id: ap-2-29-4 output: product_category_id: - - '5011' + - '5093' - input: product_category_id: ap-2-30 output: @@ -9418,1055 +10068,870 @@ rules: product_category_id: - '6276' - input: - product_category_id: ap-2-4 - output: - product_category_id: - - '6' -- input: - product_category_id: ap-2-4-1 - output: - product_category_id: - - '505303' -- input: - product_category_id: ap-2-4-1-1 - output: - product_category_id: - - '505303' -- input: - product_category_id: ap-2-4-1-2 - output: - product_category_id: - - '505303' -- input: - product_category_id: ap-2-4-1-3 - output: - product_category_id: - - '505303' -- input: - product_category_id: ap-2-4-1-4 - output: - product_category_id: - - '505303' -- input: - product_category_id: ap-2-4-1-5 - output: - product_category_id: - - '505303' -- input: - product_category_id: ap-2-4-10 - output: - product_category_id: - - '5023' -- input: - product_category_id: ap-2-4-10-1 - output: - product_category_id: - - '5023' -- input: - product_category_id: ap-2-4-10-2 - output: - product_category_id: - - '5023' -- input: - product_category_id: ap-2-4-10-3 - output: - product_category_id: - - '5023' -- input: - product_category_id: ap-2-4-10-4 - output: - product_category_id: - - '5023' -- input: - product_category_id: ap-2-4-11 - output: - product_category_id: - - '500062' -- input: - product_category_id: ap-2-4-11-1 - output: - product_category_id: - - '500062' -- input: - product_category_id: ap-2-4-11-2 - output: - product_category_id: - - '500062' -- input: - product_category_id: ap-2-4-12 - output: - product_category_id: - - '5161' -- input: - product_category_id: ap-2-4-12-1 - output: - product_category_id: - - '5161' -- input: - product_category_id: ap-2-4-12-2 - output: - product_category_id: - - '5161' -- input: - product_category_id: ap-2-4-12-3 - output: - product_category_id: - - '5161' -- input: - product_category_id: ap-2-4-12-4 - output: - product_category_id: - - '5161' -- input: - product_category_id: ap-2-4-12-5 - output: - product_category_id: - - '5161' -- input: - product_category_id: ap-2-4-12-6 - output: - product_category_id: - - '5161' -- input: - product_category_id: ap-2-4-12-7 - output: - product_category_id: - - '5161' -- input: - product_category_id: ap-2-4-12-8 - output: - product_category_id: - - '5161' -- input: - product_category_id: ap-2-4-13 - output: - product_category_id: - - '3238' -- input: - product_category_id: ap-2-4-14 - output: - product_category_id: - - '6085' -- input: - product_category_id: ap-2-4-14-1 - output: - product_category_id: - - '6085' -- input: - product_category_id: ap-2-4-14-2 - output: - product_category_id: - - '6085' -- input: - product_category_id: ap-2-4-14-3 - output: - product_category_id: - - '6085' -- input: - product_category_id: ap-2-4-14-4 - output: - product_category_id: - - '6085' -- input: - product_category_id: ap-2-4-15 - output: - product_category_id: - - '6403' -- input: - product_category_id: ap-2-4-16 - output: - product_category_id: - - '5024' -- input: - product_category_id: ap-2-4-16-1 - output: - product_category_id: - - '5024' -- input: - product_category_id: ap-2-4-16-2 - output: - product_category_id: - - '5024' -- input: - product_category_id: ap-2-4-16-3 - output: - product_category_id: - - '5024' -- input: - product_category_id: ap-2-4-16-4 - output: - product_category_id: - - '5024' -- input: - product_category_id: ap-2-4-16-5 - output: - product_category_id: - - '5024' -- input: - product_category_id: ap-2-4-16-6 + product_category_id: ap-2-40 output: product_category_id: - - '5024' + - '7396' - input: - product_category_id: ap-2-4-16-7 + product_category_id: ap-2-41 output: product_category_id: - - '5024' + - '505314' - input: - product_category_id: ap-2-4-16-8 + product_category_id: ap-2-41-1 output: product_category_id: - - '5024' + - '505313' - input: - product_category_id: ap-2-4-16-9 + product_category_id: ap-2-41-2 output: product_category_id: - - '5024' + - '505304' - input: - product_category_id: ap-2-4-2 + product_category_id: ap-2-41-2-1 output: product_category_id: - - '505307' + - '505304' - input: - product_category_id: ap-2-4-2-1 + product_category_id: ap-2-41-2-2 output: product_category_id: - - '505307' + - '505304' - input: - product_category_id: ap-2-4-2-2 + product_category_id: ap-2-41-2-3 output: product_category_id: - - '505307' + - '505304' - input: - product_category_id: ap-2-4-2-3 + product_category_id: ap-2-41-3 output: product_category_id: - - '505307' + - '6846' - input: - product_category_id: ap-2-4-2-4 + product_category_id: ap-2-41-4 output: product_category_id: - - '505307' + - '505311' - input: - product_category_id: ap-2-4-2-5 + product_category_id: ap-2-42 output: product_category_id: - - '505307' + - '5081' - input: - product_category_id: ap-2-4-3 + product_category_id: ap-2-42-2 output: product_category_id: - - '500038' + - '5081' - input: - product_category_id: ap-2-4-3-1 + product_category_id: ap-2-42-3 output: product_category_id: - - '500038' + - '5081' - input: - product_category_id: ap-2-4-3-2 + product_category_id: ap-2-42-4 output: product_category_id: - - '500038' + - '5081' - input: - product_category_id: ap-2-4-3-3 + product_category_id: ap-2-42-5 output: product_category_id: - - '500038' + - '5081' - input: - product_category_id: ap-2-4-3-4 + product_category_id: ap-2-42-6 output: product_category_id: - - '500038' + - '5081' - input: - product_category_id: ap-2-4-3-5 + product_category_id: ap-2-42-7 output: product_category_id: - - '500038' + - '5081' - input: - product_category_id: ap-2-4-3-6 + product_category_id: ap-2-42-8 output: product_category_id: - - '500038' + - '5081' - input: - product_category_id: ap-2-4-3-7 + product_category_id: ap-2-42-9 output: product_category_id: - - '500038' + - '5081' - input: - product_category_id: ap-2-4-3-8 + product_category_id: ap-2-42-10 output: product_category_id: - - '500038' + - '5081' - input: - product_category_id: ap-2-4-4 + product_category_id: ap-2-43 output: product_category_id: - - '5019' + - '502982' - input: - product_category_id: ap-2-4-4-1 + product_category_id: ap-2-43-1 output: product_category_id: - - '5019' + - '502982' - input: - product_category_id: ap-2-4-4-2 + product_category_id: ap-2-43-2 output: product_category_id: - - '5019' + - '502982' - input: - product_category_id: ap-2-4-4-3 + product_category_id: ap-2-43-3 output: product_category_id: - - '5019' + - '502982' - input: - product_category_id: ap-2-4-4-4 + product_category_id: ap-2-44 output: product_category_id: - - '5019' + - '8070' - input: - product_category_id: ap-2-4-4-5 + product_category_id: ap-2-45 output: product_category_id: - - '5019' + - '505297' - input: - product_category_id: ap-2-4-4-6 + product_category_id: ap-2-45-1 output: product_category_id: - - '5019' + - '505297' - input: - product_category_id: ap-2-4-4-7 + product_category_id: ap-2-45-2 output: product_category_id: - - '5019' + - '505297' - input: - product_category_id: ap-2-4-4-8 + product_category_id: ap-2-45-3 output: product_category_id: - - '5019' + - '505297' - input: - product_category_id: ap-2-4-4-9 + product_category_id: ap-2-45-4 output: product_category_id: - - '5019' + - '505297' - input: - product_category_id: ap-2-4-5 + product_category_id: ap-2-46 output: product_category_id: - - '5020' + - '7' - input: - product_category_id: ap-2-4-5-1 + product_category_id: ap-2-46-1 output: product_category_id: - - '5020' + - '5026' - input: - product_category_id: ap-2-4-5-2 + product_category_id: ap-2-46-2 output: product_category_id: - - '5020' + - '5027' - input: - product_category_id: ap-2-4-5-3 + product_category_id: ap-2-46-3 output: product_category_id: - - '5020' + - '5028' - input: - product_category_id: ap-2-4-5-4 + product_category_id: ap-2-46-4 output: product_category_id: - - '5020' + - '5029' - input: - product_category_id: ap-2-4-5-5 + product_category_id: ap-2-46-4-1 output: product_category_id: - - '5020' + - '5029' - input: - product_category_id: ap-2-4-6 + product_category_id: ap-2-46-4-2 output: product_category_id: - - '505306' + - '5029' - input: - product_category_id: ap-2-4-6-1 + product_category_id: ap-2-46-4-3 output: product_category_id: - - '505306' + - '5029' - input: - product_category_id: ap-2-4-6-2 + product_category_id: ap-2-46-4-4 output: product_category_id: - - '505306' + - '5029' - input: - product_category_id: ap-2-4-6-3 + product_category_id: ap-2-46-5 output: product_category_id: - - '505306' + - '5030' - input: - product_category_id: ap-2-4-6-4 + product_category_id: ap-2-47 output: product_category_id: - - '505306' + - '5013' - input: - product_category_id: ap-2-4-7 + product_category_id: ap-2-47-1 output: product_category_id: - - '5021' + - '5014' - input: - product_category_id: ap-2-4-7-1 + product_category_id: ap-2-47-2 output: product_category_id: - - '5021' + - '5015' - input: - product_category_id: ap-2-4-7-2 + product_category_id: ap-2-47-3 output: product_category_id: - - '5021' + - '5016' - input: - product_category_id: ap-2-4-7-3 + product_category_id: ap-2-47-4 output: product_category_id: - - '5021' + - '5017' - input: - product_category_id: ap-2-4-7-4 + product_category_id: ap-2-47-5 output: product_category_id: - - '5021' + - '7517' - input: - product_category_id: ap-2-4-7-5 + product_category_id: ap-2-47-5-1 output: product_category_id: - - '5021' + - '7517' - input: - product_category_id: ap-2-4-7-6 + product_category_id: ap-2-47-5-2 output: product_category_id: - - '5021' + - '7517' - input: - product_category_id: ap-2-4-7-7 + product_category_id: ap-2-47-5-3 output: product_category_id: - - '5021' + - '7517' - input: - product_category_id: ap-2-4-8 + product_category_id: ap-2-47-5-4 output: product_category_id: - - '5079' + - '7517' - input: - product_category_id: ap-2-4-9 + product_category_id: ap-2-47-5-5 output: product_category_id: - - '6951' + - '7517' - input: - product_category_id: ap-2-40 + product_category_id: ap-2-47-5-6 output: product_category_id: - - '7396' + - '7517' - input: - product_category_id: ap-2-41 + product_category_id: ap-2-48 output: product_category_id: - - '505314' + - '8474' - input: - product_category_id: ap-2-41-1 + product_category_id: ap-2-48-1 output: product_category_id: - - '505313' + - '8474' - input: - product_category_id: ap-2-41-2 + product_category_id: ap-2-48-2 output: product_category_id: - - '505304' + - '8474' - input: - product_category_id: ap-2-41-2-1 + product_category_id: ap-2-48-3 output: product_category_id: - - '505304' + - '8474' - input: - product_category_id: ap-2-41-2-2 + product_category_id: ap-2-48-4 output: product_category_id: - - '505304' + - '8474' - input: - product_category_id: ap-2-41-2-3 + product_category_id: ap-2-48-5 output: product_category_id: - - '505304' + - '8474' - input: - product_category_id: ap-2-41-3 + product_category_id: ap-2-49 output: product_category_id: - - '6846' + - '6973' - input: - product_category_id: ap-2-41-4 + product_category_id: bi output: product_category_id: - - '505311' + - '111' - input: - product_category_id: ap-2-42 + product_category_id: bi-1 output: product_category_id: - - '5081' + - '5863' - input: - product_category_id: ap-2-42-10 + product_category_id: bi-1-1 output: product_category_id: - - '5081' + - '5884' - input: - product_category_id: ap-2-42-2 + product_category_id: bi-1-2 output: product_category_id: - - '5081' + - '5864' - input: - product_category_id: ap-2-42-3 + product_category_id: bi-1-2-1 output: product_category_id: - - '5081' + - '5864' - input: - product_category_id: ap-2-42-4 + product_category_id: bi-1-2-2 output: product_category_id: - - '5081' + - '5864' - input: - product_category_id: ap-2-42-5 + product_category_id: bi-1-2-3 output: product_category_id: - - '5081' + - '5864' - input: - product_category_id: ap-2-42-6 + product_category_id: bi-1-2-4 output: product_category_id: - - '5081' + - '5864' - input: - product_category_id: ap-2-42-7 + product_category_id: bi-1-3 output: product_category_id: - - '5081' + - '5865' - input: - product_category_id: ap-2-42-8 + product_category_id: bi-1-3-1 output: product_category_id: - - '5081' + - '5865' - input: - product_category_id: ap-2-42-9 + product_category_id: bi-1-3-2 output: product_category_id: - - '5081' + - '5865' - input: - product_category_id: ap-2-43 + product_category_id: bi-1-3-3 output: product_category_id: - - '502982' + - '5865' - input: - product_category_id: ap-2-43-1 + product_category_id: bi-1-3-4 output: product_category_id: - - '502982' + - '5865' - input: - product_category_id: ap-2-43-2 + product_category_id: bi-1-3-6 output: product_category_id: - - '502982' + - '5865' - input: - product_category_id: ap-2-43-3 + product_category_id: bi-1-3-7 output: product_category_id: - - '502982' + - '5865' - input: - product_category_id: ap-2-44 + product_category_id: bi-1-3-8 output: product_category_id: - - '8070' + - '5865' - input: - product_category_id: ap-2-45 + product_category_id: bi-1-3-9 output: product_category_id: - - '505297' + - '5865' - input: - product_category_id: ap-2-45-1 + product_category_id: bi-1-3-10 output: product_category_id: - - '505297' + - '5865' - input: - product_category_id: ap-2-45-2 + product_category_id: bi-1-3-11 output: product_category_id: - - '505297' + - '5865' - input: - product_category_id: ap-2-45-3 + product_category_id: bi-1-3-12 output: product_category_id: - - '505297' + - '5865' - input: - product_category_id: ap-2-45-4 + product_category_id: bi-1-3-13 output: product_category_id: - - '505297' + - '5865' - input: - product_category_id: ap-2-46 + product_category_id: bi-1-3-14 output: product_category_id: - - '7' + - '5865' - input: - product_category_id: ap-2-46-1 + product_category_id: bi-2 output: product_category_id: - - '5026' + - '112' - input: - product_category_id: ap-2-46-2 + product_category_id: bi-2-1 output: product_category_id: - - '5027' + - '6991' - input: - product_category_id: ap-2-46-3 + product_category_id: bi-2-1-1 output: product_category_id: - - '5028' + - '499997' - input: - product_category_id: ap-2-46-4 + product_category_id: bi-2-1-2 output: product_category_id: - - '5029' + - '505821' - input: - product_category_id: ap-2-46-4-1 + product_category_id: bi-2-1-2-1 output: product_category_id: - - '5029' + - '543545' - input: - product_category_id: ap-2-46-4-2 + product_category_id: bi-2-1-2-2 output: product_category_id: - - '5029' + - '543544' - input: - product_category_id: ap-2-46-4-3 + product_category_id: bi-2-1-2-3 output: product_category_id: - - '5029' + - '543547' - input: - product_category_id: ap-2-46-4-4 + product_category_id: bi-2-1-2-4 output: product_category_id: - - '5029' + - '543548' - input: - product_category_id: ap-2-46-5 + product_category_id: bi-2-1-2-5 output: product_category_id: - - '5030' + - '543546' - input: - product_category_id: ap-2-47 + product_category_id: bi-2-1-3 output: product_category_id: - - '5013' + - '6990' - input: - product_category_id: ap-2-47-1 + product_category_id: bi-2-1-3-1 output: product_category_id: - - '5014' + - '6990' - input: - product_category_id: ap-2-47-2 + product_category_id: bi-2-1-3-2 output: product_category_id: - - '5015' + - '6990' - input: - product_category_id: ap-2-47-3 + product_category_id: bi-2-1-4 output: product_category_id: - - '5016' + - '499946' - input: - product_category_id: ap-2-47-4 + product_category_id: bi-3 output: product_category_id: - - '5017' + - '7261' - input: - product_category_id: ap-2-47-5 + product_category_id: bi-3-1 output: product_category_id: - - '7517' + - '7263' - input: - product_category_id: ap-2-47-5-1 + product_category_id: bi-3-1-2 output: product_category_id: - - '7517' + - '7263' - input: - product_category_id: ap-2-47-5-2 + product_category_id: bi-3-1-4 output: product_category_id: - - '7517' + - '7263' - input: - product_category_id: ap-2-47-5-3 + product_category_id: bi-3-1-5 output: product_category_id: - - '7517' + - '7263' - input: - product_category_id: ap-2-47-5-4 + product_category_id: bi-3-1-7 output: product_category_id: - - '7517' + - '7263' - input: - product_category_id: ap-2-47-5-5 + product_category_id: bi-3-1-9 output: product_category_id: - - '7517' + - '7263' - input: - product_category_id: ap-2-47-5-6 + product_category_id: bi-3-2 output: product_category_id: - - '7517' + - '7262' - input: - product_category_id: ap-2-48 + product_category_id: bi-4 output: product_category_id: - - '8474' + - '114' - input: - product_category_id: ap-2-48-1 + product_category_id: bi-4-1 output: product_category_id: - - '8474' + - '134' - input: - product_category_id: ap-2-48-2 + product_category_id: bi-4-1-1 output: product_category_id: - - '8474' + - '134' - input: - product_category_id: ap-2-48-3 + product_category_id: bi-4-1-2 output: product_category_id: - - '8474' + - '134' - input: - product_category_id: ap-2-48-4 + product_category_id: bi-4-1-4 output: product_category_id: - - '8474' + - '134' - input: - product_category_id: ap-2-48-5 + product_category_id: bi-4-2 output: product_category_id: - - '8474' + - '8278' - input: - product_category_id: ap-2-49 + product_category_id: bi-4-2-1 output: product_category_id: - - '6973' + - '8278' - input: - product_category_id: ap-2-5 + product_category_id: bi-4-2-2 output: product_category_id: - - '6983' + - '8278' - input: - product_category_id: ap-2-5-1 + product_category_id: bi-5 output: product_category_id: - - '6983' + - '7497' - input: - product_category_id: ap-2-5-2 + product_category_id: bi-5-1 output: product_category_id: - - '6983' + - '7500' - input: - product_category_id: ap-2-5-3 + product_category_id: bi-5-1-1 output: product_category_id: - - '6983' + - '7500' - input: - product_category_id: ap-2-5-4 + product_category_id: bi-5-1-2 output: product_category_id: - - '6983' + - '7500' - input: - product_category_id: ap-2-5-5 + product_category_id: bi-5-1-3 output: product_category_id: - - '6983' + - '7500' - input: - product_category_id: ap-2-5-6 + product_category_id: bi-5-1-5 output: product_category_id: - - '6983' + - '7500' - input: - product_category_id: ap-2-5-7 + product_category_id: bi-5-2 output: product_category_id: - - '6983' + - '7499' - input: - product_category_id: ap-2-5-8 + product_category_id: bi-5-2-1 output: product_category_id: - - '6983' + - '8490' - input: - product_category_id: ap-2-6 + product_category_id: bi-5-2-2 output: product_category_id: - - '2' + - '7498' - input: - product_category_id: ap-2-6-1 + product_category_id: bi-5-2-3 output: product_category_id: - - '2' + - '7531' - input: - product_category_id: ap-2-6-10 + product_category_id: bi-5-2-4 output: product_category_id: - - '2' + - '8121' - input: - product_category_id: ap-2-6-11 + product_category_id: bi-5-2-5 output: product_category_id: - - '2' + - '8120' - input: - product_category_id: ap-2-6-12 + product_category_id: bi-5-3 output: product_category_id: - - '2' + - '8130' - input: - product_category_id: ap-2-6-13 + product_category_id: bi-6 output: product_category_id: - - '2' + - '2155' - input: - product_category_id: ap-2-6-14 + product_category_id: bi-6-1 output: product_category_id: - - '2' + - '2155' - input: - product_category_id: ap-2-6-15 + product_category_id: bi-6-2 output: product_category_id: - - '2' + - '2155' - input: - product_category_id: ap-2-6-16 + product_category_id: bi-6-3 output: product_category_id: - - '2' + - '2155' - input: - product_category_id: ap-2-6-17 + product_category_id: bi-6-3-1 output: product_category_id: - - '2' + - '2155' - input: - product_category_id: ap-2-6-2 + product_category_id: bi-6-3-2 output: product_category_id: - - '2' + - '2155' - input: - product_category_id: ap-2-6-3 + product_category_id: bi-6-3-3 output: product_category_id: - - '2' + - '2155' - input: - product_category_id: ap-2-6-4 + product_category_id: bi-7 output: product_category_id: - - '2' + - '1813' - input: - product_category_id: ap-2-6-5 + product_category_id: bi-7-1 output: product_category_id: - - '2' + - '7565' - input: - product_category_id: ap-2-6-6 + product_category_id: bi-8 output: product_category_id: - - '2' + - '135' - input: - product_category_id: ap-2-6-7 + product_category_id: bi-8-1 output: product_category_id: - - '2' + - '7303' - input: - product_category_id: ap-2-6-8 + product_category_id: bi-8-2 output: product_category_id: - - '2' + - '4217' - input: - product_category_id: ap-2-6-9 + product_category_id: bi-8-3 output: product_category_id: - - '2' + - '8532' - input: - product_category_id: ap-2-7 + product_category_id: bi-8-4 output: product_category_id: - - '6811' + - '5102' - input: - product_category_id: ap-2-8 + product_category_id: bi-8-5 output: product_category_id: - - '500084' + - '8059' - input: - product_category_id: ap-2-9 + product_category_id: bi-8-6 output: product_category_id: - - '2' + - '7088' - input: - product_category_id: ap-2-9-1 + product_category_id: bi-8-6-1 output: product_category_id: - - '2' + - '7089' - input: - product_category_id: ap-2-9-10 + product_category_id: bi-8-7 output: product_category_id: - - '2' + - '4632' - input: - product_category_id: ap-2-9-11 + product_category_id: bi-8-7-1 output: product_category_id: - - '2' + - '5098' - input: - product_category_id: ap-2-9-12 + product_category_id: bi-8-7-2 output: product_category_id: - - '2' + - '5099' - input: - product_category_id: ap-2-9-13 + product_category_id: bi-8-7-3 output: product_category_id: - - '2' + - '5100' - input: - product_category_id: ap-2-9-2 + product_category_id: bi-8-7-3-1 output: product_category_id: - - '2' + - '5100' - input: - product_category_id: ap-2-9-3 + product_category_id: bi-8-7-3-2 output: product_category_id: - - '2' + - '5100' - input: - product_category_id: ap-2-9-4 + product_category_id: bi-8-7-3-3 output: product_category_id: - - '2' + - '5100' - input: - product_category_id: ap-2-9-5 + product_category_id: bi-8-7-4 output: product_category_id: - - '2' + - '5101' - input: - product_category_id: ap-2-9-6 + product_category_id: bi-8-8 output: product_category_id: - - '2' + - '4096' - input: - product_category_id: ap-2-9-7 + product_category_id: bi-8-9 output: product_category_id: - - '2' + - '4742' - input: - product_category_id: ap-2-9-8 + product_category_id: bi-8-10 output: product_category_id: - - '2' + - '6786' - input: - product_category_id: ap-2-9-9 + product_category_id: bi-8-11 output: product_category_id: - - '2' + - '6517' - input: - product_category_id: bi + product_category_id: bi-8-12 output: product_category_id: - - '111' + - '7353' - input: - product_category_id: bi-1 + product_category_id: bi-8-13 output: product_category_id: - - '5863' + - '5104' - input: - product_category_id: bi-1-1 + product_category_id: bi-8-14 output: product_category_id: - - '5884' + - '8533' - input: - product_category_id: bi-1-2 + product_category_id: bi-8-15 output: product_category_id: - - '5864' + - '5097' - input: - product_category_id: bi-1-2-1 + product_category_id: bi-8-16 output: product_category_id: - - '5864' + - '7553' - input: - product_category_id: bi-1-2-2 + product_category_id: bi-8-17 output: product_category_id: - - '5864' + - '137' - input: - product_category_id: bi-1-2-3 + product_category_id: bi-8-17-1 output: product_category_id: - - '5864' + - '137' - input: - product_category_id: bi-1-2-4 + product_category_id: bi-8-17-2 output: product_category_id: - - '5864' + - '137' - input: - product_category_id: bi-1-3 + product_category_id: bi-8-17-3 output: product_category_id: - - '5865' + - '137' - input: - product_category_id: bi-1-3-1 + product_category_id: bi-9 output: product_category_id: - - '5865' + - '1827' - input: - product_category_id: bi-1-3-10 + product_category_id: bi-9-1 output: product_category_id: - - '5865' + - '1827' - input: - product_category_id: bi-1-3-11 + product_category_id: bi-9-1-1 output: product_category_id: - - '5865' + - '1827' - input: - product_category_id: bi-1-3-12 + product_category_id: bi-9-2 output: product_category_id: - - '5865' + - '1827' - input: - product_category_id: bi-1-3-13 + product_category_id: bi-9-2-1 output: product_category_id: - - '5865' + - '1827' - input: - product_category_id: bi-1-3-14 + product_category_id: bi-9-2-2 output: product_category_id: - - '5865' + - '1827' - input: - product_category_id: bi-1-3-2 + product_category_id: bi-9-2-3 output: product_category_id: - - '5865' + - '1827' - input: - product_category_id: bi-1-3-3 + product_category_id: bi-9-2-4 output: product_category_id: - - '5865' + - '1827' - input: - product_category_id: bi-1-3-4 + product_category_id: bi-9-2-5 output: product_category_id: - - '5865' + - '1827' - input: - product_category_id: bi-1-3-6 + product_category_id: bi-9-3 output: product_category_id: - - '5865' + - '1827' - input: - product_category_id: bi-1-3-7 + product_category_id: bi-9-3-1 output: product_category_id: - - '5865' + - '1827' - input: - product_category_id: bi-1-3-8 + product_category_id: bi-9-3-2 output: product_category_id: - - '5865' + - '1827' - input: - product_category_id: bi-1-3-9 + product_category_id: bi-9-3-3 output: product_category_id: - - '5865' + - '1827' - input: product_category_id: bi-10 output: @@ -10518,192 +10983,192 @@ rules: product_category_id: - '1795' - input: - product_category_id: bi-11-10 + product_category_id: bi-11-2 output: product_category_id: - '1795' - input: - product_category_id: bi-11-10-1 + product_category_id: bi-11-3 output: product_category_id: - - '1795' + - '2072' - input: - product_category_id: bi-11-10-2 + product_category_id: bi-11-4 output: product_category_id: - '1795' - input: - product_category_id: bi-11-10-3 + product_category_id: bi-11-5 output: product_category_id: - '1795' - input: - product_category_id: bi-11-11 + product_category_id: bi-11-6 output: product_category_id: - '1795' - input: - product_category_id: bi-11-12 + product_category_id: bi-11-6-1 output: product_category_id: - '1795' - input: - product_category_id: bi-11-12-1 + product_category_id: bi-11-6-2 output: product_category_id: - '1795' - input: - product_category_id: bi-11-12-2 + product_category_id: bi-11-6-3 output: product_category_id: - '1795' - input: - product_category_id: bi-11-12-3 + product_category_id: bi-11-6-4 output: product_category_id: - '1795' - input: - product_category_id: bi-11-12-4 + product_category_id: bi-11-7 output: product_category_id: - '1795' - input: - product_category_id: bi-11-13 + product_category_id: bi-11-7-1 output: product_category_id: - '1795' - input: - product_category_id: bi-11-13-1 + product_category_id: bi-11-7-2 output: product_category_id: - '1795' - input: - product_category_id: bi-11-13-2 + product_category_id: bi-11-7-3 output: product_category_id: - '1795' - input: - product_category_id: bi-11-14 + product_category_id: bi-11-7-4 output: product_category_id: - '1795' - input: - product_category_id: bi-11-15 + product_category_id: bi-11-7-5 output: product_category_id: - '1795' - input: - product_category_id: bi-11-15-1 + product_category_id: bi-11-8 output: product_category_id: - '1795' - input: - product_category_id: bi-11-15-2 + product_category_id: bi-11-9 output: product_category_id: - '1795' - input: - product_category_id: bi-11-15-3 + product_category_id: bi-11-9-1 output: product_category_id: - '1795' - input: - product_category_id: bi-11-16 + product_category_id: bi-11-9-2 output: product_category_id: - '1795' - input: - product_category_id: bi-11-2 + product_category_id: bi-11-10 output: product_category_id: - '1795' - input: - product_category_id: bi-11-3 + product_category_id: bi-11-10-1 output: product_category_id: - - '2072' + - '1795' - input: - product_category_id: bi-11-4 + product_category_id: bi-11-10-2 output: product_category_id: - '1795' - input: - product_category_id: bi-11-5 + product_category_id: bi-11-10-3 output: product_category_id: - '1795' - input: - product_category_id: bi-11-6 + product_category_id: bi-11-11 output: product_category_id: - '1795' - input: - product_category_id: bi-11-6-1 + product_category_id: bi-11-12 output: product_category_id: - '1795' - input: - product_category_id: bi-11-6-2 + product_category_id: bi-11-12-1 output: product_category_id: - '1795' - input: - product_category_id: bi-11-6-3 + product_category_id: bi-11-12-2 output: product_category_id: - '1795' - input: - product_category_id: bi-11-6-4 + product_category_id: bi-11-12-3 output: product_category_id: - '1795' - input: - product_category_id: bi-11-7 + product_category_id: bi-11-12-4 output: product_category_id: - '1795' - input: - product_category_id: bi-11-7-1 + product_category_id: bi-11-13 output: product_category_id: - '1795' - input: - product_category_id: bi-11-7-2 + product_category_id: bi-11-13-1 output: product_category_id: - '1795' - input: - product_category_id: bi-11-7-3 + product_category_id: bi-11-13-2 output: product_category_id: - '1795' - input: - product_category_id: bi-11-7-4 + product_category_id: bi-11-14 output: product_category_id: - '1795' - input: - product_category_id: bi-11-7-5 + product_category_id: bi-11-15 output: product_category_id: - '1795' - input: - product_category_id: bi-11-8 + product_category_id: bi-11-15-1 output: product_category_id: - '1795' - input: - product_category_id: bi-11-9 + product_category_id: bi-11-15-2 output: product_category_id: - '1795' - input: - product_category_id: bi-11-9-1 + product_category_id: bi-11-15-3 output: product_category_id: - '1795' - input: - product_category_id: bi-11-9-2 + product_category_id: bi-11-16 output: product_category_id: - '1795' @@ -11122,16 +11587,6 @@ rules: output: product_category_id: - '6275' -- input: - product_category_id: bi-19-10 - output: - product_category_id: - - '2928' -- input: - product_category_id: bi-19-11 - output: - product_category_id: - - '1645' - input: product_category_id: bi-19-2 output: @@ -11608,1505 +12063,1915 @@ rules: product_category_id: - '5602' - input: - product_category_id: bi-2 + product_category_id: bi-19-10 output: product_category_id: - - '112' + - '2928' - input: - product_category_id: bi-2-1 + product_category_id: bi-19-11 output: product_category_id: - - '6991' + - '1645' - input: - product_category_id: bi-2-1-1 + product_category_id: bi-20 output: product_category_id: - - '499997' + - '2187' - input: - product_category_id: bi-2-1-2 + product_category_id: bi-20-1 output: product_category_id: - - '505821' + - '2187' - input: - product_category_id: bi-2-1-2-1 + product_category_id: bi-20-1-1 output: product_category_id: - - '543545' + - '2187' - input: - product_category_id: bi-2-1-2-2 + product_category_id: bi-20-1-1-1 output: product_category_id: - - '543544' + - '2187' - input: - product_category_id: bi-2-1-2-3 + product_category_id: bi-20-1-1-2 output: product_category_id: - - '543547' + - '2187' - input: - product_category_id: bi-2-1-2-4 + product_category_id: bi-20-1-1-3 output: product_category_id: - - '543548' + - '2187' - input: - product_category_id: bi-2-1-2-5 + product_category_id: bi-20-1-1-4 output: product_category_id: - - '543546' + - '2187' - input: - product_category_id: bi-2-1-3 + product_category_id: bi-20-1-2 output: product_category_id: - - '6990' + - '2187' - input: - product_category_id: bi-2-1-3-1 + product_category_id: bi-20-2 output: product_category_id: - - '6990' + - '2187' - input: - product_category_id: bi-2-1-3-2 + product_category_id: bi-21 output: product_category_id: - - '6990' + - '4285' - input: - product_category_id: bi-2-1-4 + product_category_id: bi-21-1 output: product_category_id: - - '499946' + - '4350' - input: - product_category_id: bi-20 + product_category_id: bi-21-1-1 output: product_category_id: - - '2187' + - '4122' - input: - product_category_id: bi-20-1 + product_category_id: bi-21-1-1-1 output: product_category_id: - - '2187' + - '4122' - input: - product_category_id: bi-20-1-1 + product_category_id: bi-21-1-1-2 output: product_category_id: - - '2187' + - '4122' - input: - product_category_id: bi-20-1-1-1 + product_category_id: bi-21-2 output: product_category_id: - - '2187' + - '4326' +- input: + product_category_id: bi-21-2-1 + output: + product_category_id: + - '5853' +- input: + product_category_id: bi-21-2-2 + output: + product_category_id: + - '4215' +- input: + product_category_id: bi-21-2-3 + output: + product_category_id: + - '4379' +- input: + product_category_id: bi-21-2-3-1 + output: + product_category_id: + - '4379' +- input: + product_category_id: bi-21-2-3-2 + output: + product_category_id: + - '4379' +- input: + product_category_id: bi-21-2-3-3 + output: + product_category_id: + - '4379' +- input: + product_category_id: bi-21-2-4 + output: + product_category_id: + - '4072' +- input: + product_category_id: bi-21-2-4-1 + output: + product_category_id: + - '4072' +- input: + product_category_id: bi-21-2-4-2 + output: + product_category_id: + - '4072' +- input: + product_category_id: bi-21-2-4-3 + output: + product_category_id: + - '4072' +- input: + product_category_id: bi-21-2-4-4 + output: + product_category_id: + - '4072' +- input: + product_category_id: bi-22 + output: + product_category_id: + - '138' +- input: + product_category_id: bi-22-1 + output: + product_category_id: + - '4244' +- input: + product_category_id: bi-22-1-1 + output: + product_category_id: + - '4244' +- input: + product_category_id: bi-22-1-2 + output: + product_category_id: + - '4244' +- input: + product_category_id: bi-22-1-3 + output: + product_category_id: + - '4244' +- input: + product_category_id: bi-22-1-4 + output: + product_category_id: + - '4244' +- input: + product_category_id: bi-22-2 + output: + product_category_id: + - '3803' +- input: + product_category_id: bi-22-2-1 + output: + product_category_id: + - '3803' +- input: + product_category_id: bi-22-2-2 + output: + product_category_id: + - '3803' +- input: + product_category_id: bi-22-2-3 + output: + product_category_id: + - '3803' +- input: + product_category_id: bi-22-2-4 + output: + product_category_id: + - '3803' +- input: + product_category_id: bi-22-3 + output: + product_category_id: + - '7128' +- input: + product_category_id: bi-22-3-1 + output: + product_category_id: + - '7128' +- input: + product_category_id: bi-22-3-2 + output: + product_category_id: + - '7128' +- input: + product_category_id: bi-22-3-3 + output: + product_category_id: + - '7128' +- input: + product_category_id: bi-22-3-4 + output: + product_category_id: + - '7128' +- input: + product_category_id: bi-22-4 + output: + product_category_id: + - '4181' +- input: + product_category_id: bi-22-4-1 + output: + product_category_id: + - '4290' +- input: + product_category_id: bi-22-4-2 + output: + product_category_id: + - '505825' +- input: + product_category_id: bi-22-4-2-1 + output: + product_category_id: + - '4283' +- input: + product_category_id: bi-22-4-2-1-2 + output: + product_category_id: + - '4283' +- input: + product_category_id: bi-22-4-2-1-3 + output: + product_category_id: + - '4283' +- input: + product_category_id: bi-22-4-2-2 + output: + product_category_id: + - '505808' +- input: + product_category_id: bi-22-4-2-3 + output: + product_category_id: + - '5310' +- input: + product_category_id: bi-22-4-3 + output: + product_category_id: + - '505824' +- input: + product_category_id: bi-22-4-3-1 + output: + product_category_id: + - '543647' +- input: + product_category_id: bi-22-4-3-2 + output: + product_category_id: + - '543648' +- input: + product_category_id: bi-22-4-4 + output: + product_category_id: + - '4151' +- input: + product_category_id: bi-22-4-5 + output: + product_category_id: + - '3273' +- input: + product_category_id: bi-22-4-6 + output: + product_category_id: + - '4329' +- input: + product_category_id: bi-22-4-7 + output: + product_category_id: + - '4055' +- input: + product_category_id: bi-22-5 + output: + product_category_id: + - '1837' +- input: + product_category_id: bi-22-5-1 + output: + product_category_id: + - '1837' +- input: + product_category_id: bi-22-5-2 + output: + product_category_id: + - '1837' +- input: + product_category_id: bi-22-5-3 + output: + product_category_id: + - '1837' +- input: + product_category_id: bi-22-5-4 + output: + product_category_id: + - '1837' +- input: + product_category_id: bi-22-6 + output: + product_category_id: + - '4127' +- input: + product_category_id: bi-22-7 + output: + product_category_id: + - '4160' +- input: + product_category_id: bi-22-8 + output: + product_category_id: + - '499897' +- input: + product_category_id: bi-23 + output: + product_category_id: + - '1624' +- input: + product_category_id: bi-23-1 + output: + product_category_id: + - '6975' +- input: + product_category_id: bi-23-1-1 + output: + product_category_id: + - '6975' +- input: + product_category_id: bi-23-1-2 + output: + product_category_id: + - '6975' +- input: + product_category_id: bi-23-1-3 + output: + product_category_id: + - '6975' +- input: + product_category_id: bi-23-2 + output: + product_category_id: + - '7325' +- input: + product_category_id: bi-23-2-1 + output: + product_category_id: + - '7325' +- input: + product_category_id: bi-23-2-2 + output: + product_category_id: + - '7325' +- input: + product_category_id: bi-23-3 + output: + product_category_id: + - '3002' +- input: + product_category_id: bi-23-3-1 + output: + product_category_id: + - '3002' +- input: + product_category_id: bi-23-3-2 + output: + product_category_id: + - '3002' +- input: + product_category_id: bi-23-3-3 + output: + product_category_id: + - '3002' +- input: + product_category_id: bi-23-3-4 + output: + product_category_id: + - '3002' +- input: + product_category_id: bi-23-4 + output: + product_category_id: + - '4335' +- input: + product_category_id: bi-23-4-1 + output: + product_category_id: + - '4116' +- input: + product_category_id: bi-23-4-2 + output: + product_category_id: + - '4336' +- input: + product_category_id: bi-23-4-3 + output: + product_category_id: + - '7218' +- input: + product_category_id: bi-23-4-4 + output: + product_category_id: + - '500057' +- input: + product_category_id: bi-23-4-5 + output: + product_category_id: + - '4474' +- input: + product_category_id: bi-23-4-6 + output: + product_category_id: + - '500114' +- input: + product_category_id: bi-23-4-7 + output: + product_category_id: + - '503722' +- input: + product_category_id: bi-23-4-7-1 + output: + product_category_id: + - '503722' +- input: + product_category_id: bi-23-4-7-2 + output: + product_category_id: + - '503722' +- input: + product_category_id: bi-23-4-7-3 + output: + product_category_id: + - '503722' +- input: + product_category_id: bi-23-4-7-4 + output: + product_category_id: + - '503722' +- input: + product_category_id: bi-23-4-8 + output: + product_category_id: + - '4133' +- input: + product_category_id: bi-23-4-9 + output: + product_category_id: + - '4231' +- input: + product_category_id: bi-23-4-9-1 + output: + product_category_id: + - '4231' +- input: + product_category_id: bi-23-4-9-2 + output: + product_category_id: + - '4231' +- input: + product_category_id: bi-23-4-9-3 + output: + product_category_id: + - '4231' +- input: + product_category_id: bi-23-4-10 + output: + product_category_id: + - '4555' +- input: + product_category_id: bi-23-4-10-1 + output: + product_category_id: + - '4557' - input: - product_category_id: bi-20-1-1-2 + product_category_id: bi-23-4-10-2 output: product_category_id: - - '2187' + - '4556' - input: - product_category_id: bi-20-1-1-3 + product_category_id: bi-23-4-10-2-1 output: product_category_id: - - '2187' + - '4556' - input: - product_category_id: bi-20-1-1-4 + product_category_id: bi-23-4-10-2-2 output: product_category_id: - - '2187' + - '4556' - input: - product_category_id: bi-20-1-2 + product_category_id: bi-23-4-10-2-3 output: product_category_id: - - '2187' + - '4556' - input: - product_category_id: bi-20-2 + product_category_id: bi-23-4-10-2-4 output: product_category_id: - - '2187' + - '4556' - input: - product_category_id: bi-21 + product_category_id: bi-23-4-10-3 output: product_category_id: - - '4285' + - '4665' - input: - product_category_id: bi-21-1 + product_category_id: bi-23-4-10-3-1 output: product_category_id: - - '4350' + - '4665' - input: - product_category_id: bi-21-1-1 + product_category_id: bi-23-4-10-3-2 output: product_category_id: - - '4122' + - '4665' - input: - product_category_id: bi-21-1-1-1 + product_category_id: bi-23-4-10-3-3 output: product_category_id: - - '4122' + - '4665' - input: - product_category_id: bi-21-1-1-2 + product_category_id: bi-23-4-10-4 output: product_category_id: - - '4122' + - '4664' - input: - product_category_id: bi-21-2 + product_category_id: bi-23-4-10-5 output: product_category_id: - - '4326' + - '4558' - input: - product_category_id: bi-21-2-1 + product_category_id: bi-23-4-10-5-1 output: product_category_id: - - '5853' + - '4558' - input: - product_category_id: bi-21-2-2 + product_category_id: bi-23-4-10-5-2 output: product_category_id: - - '4215' + - '4558' - input: - product_category_id: bi-21-2-3 + product_category_id: bi-23-4-10-5-3 output: product_category_id: - - '4379' + - '4558' - input: - product_category_id: bi-21-2-3-1 + product_category_id: bi-23-4-10-5-4 output: product_category_id: - - '4379' + - '4558' - input: - product_category_id: bi-21-2-3-2 + product_category_id: bi-23-4-11 output: product_category_id: - - '4379' + - '158' - input: - product_category_id: bi-21-2-3-3 + product_category_id: bi-23-4-11-2 output: product_category_id: - - '4379' + - '158' - input: - product_category_id: bi-21-2-4 + product_category_id: bi-23-4-11-3 output: product_category_id: - - '4072' + - '158' - input: - product_category_id: bi-21-2-4-1 + product_category_id: bi-23-4-11-4 output: product_category_id: - - '4072' + - '158' - input: - product_category_id: bi-21-2-4-2 + product_category_id: bi-23-4-12 output: product_category_id: - - '4072' + - '7437' - input: - product_category_id: bi-21-2-4-3 + product_category_id: bi-23-4-12-1 output: product_category_id: - - '4072' + - '7437' - input: - product_category_id: bi-21-2-4-4 + product_category_id: bi-23-4-12-2 output: product_category_id: - - '4072' + - '7437' - input: - product_category_id: bi-22 + product_category_id: bi-23-4-12-3 output: product_category_id: - - '138' + - '7437' - input: - product_category_id: bi-22-1 + product_category_id: bi-23-4-13 output: product_category_id: - - '4244' + - '7468' - input: - product_category_id: bi-22-1-1 + product_category_id: bi-23-4-13-1 output: product_category_id: - - '4244' + - '7468' - input: - product_category_id: bi-22-1-2 + product_category_id: bi-23-4-13-2 output: product_category_id: - - '4244' + - '7468' - input: - product_category_id: bi-22-1-3 + product_category_id: bi-23-4-14 output: product_category_id: - - '4244' + - '7393' - input: - product_category_id: bi-22-1-4 + product_category_id: bi-23-4-14-1 output: product_category_id: - - '4244' + - '7393' - input: - product_category_id: bi-22-2 + product_category_id: bi-23-4-14-2 output: product_category_id: - - '3803' + - '7393' - input: - product_category_id: bi-22-2-1 + product_category_id: bi-23-4-14-3 output: product_category_id: - - '3803' + - '7393' - input: - product_category_id: bi-22-2-2 + product_category_id: bi-23-4-14-4 output: product_category_id: - - '3803' + - '7393' - input: - product_category_id: bi-22-2-3 + product_category_id: bi-23-5 output: product_category_id: - - '3803' + - '8119' - input: - product_category_id: bi-22-2-4 + product_category_id: bi-23-6 output: product_category_id: - - '3803' + - '4255' - input: - product_category_id: bi-22-3 + product_category_id: bi-23-6-1 output: product_category_id: - - '7128' + - '4310' - input: - product_category_id: bi-22-3-1 + product_category_id: bi-23-6-2 output: product_category_id: - - '7128' + - '4061' - input: - product_category_id: bi-22-3-2 + product_category_id: bi-23-6-3 output: product_category_id: - - '7128' + - '4036' - input: - product_category_id: bi-22-3-3 + product_category_id: bi-23-6-3-1 output: product_category_id: - - '7128' + - '4036' - input: - product_category_id: bi-22-3-4 + product_category_id: bi-23-6-3-2 output: product_category_id: - - '7128' + - '4036' - input: - product_category_id: bi-22-4 + product_category_id: bi-23-6-3-3 output: product_category_id: - - '4181' + - '4036' - input: - product_category_id: bi-22-4-1 + product_category_id: bi-23-6-3-4 output: product_category_id: - - '4290' + - '4036' - input: - product_category_id: bi-22-4-2 + product_category_id: bi-23-6-4 output: product_category_id: - - '505825' + - '4276' - input: - product_category_id: bi-22-4-2-1 + product_category_id: bi-23-6-5 output: product_category_id: - - '4283' + - '4075' - input: - product_category_id: bi-22-4-2-1-2 + product_category_id: bi-23-6-5-1 output: product_category_id: - - '4283' + - '4075' - input: - product_category_id: bi-22-4-2-1-3 + product_category_id: bi-23-6-5-2 output: product_category_id: - - '4283' + - '4075' - input: - product_category_id: bi-22-4-2-2 + product_category_id: bi-23-6-5-3 output: product_category_id: - - '505808' + - '4075' - input: - product_category_id: bi-22-4-2-3 + product_category_id: bi-23-6-6 output: product_category_id: - - '5310' + - '4155' - input: - product_category_id: bi-22-4-3 + product_category_id: bi-23-6-7 output: product_category_id: - - '505824' + - '4306' - input: - product_category_id: bi-22-4-3-1 + product_category_id: bi-23-6-8 output: product_category_id: - - '543647' + - '4140' - input: - product_category_id: bi-22-4-3-2 + product_category_id: bi-24 output: product_category_id: - - '543648' + - '976' - input: - product_category_id: bi-22-4-4 + product_category_id: bi-24-1 output: product_category_id: - - '4151' + - '7322' - input: - product_category_id: bi-22-4-5 + product_category_id: bi-24-2 output: product_category_id: - - '3273' + - '8155' - input: - product_category_id: bi-22-4-6 + product_category_id: bi-24-3 output: product_category_id: - - '4329' + - '4297' - input: - product_category_id: bi-22-4-7 + product_category_id: bi-24-3-1 output: product_category_id: - - '4055' + - '4131' - input: - product_category_id: bi-22-5 + product_category_id: bi-24-3-2 output: product_category_id: - - '1837' + - '4070' - input: - product_category_id: bi-22-5-1 + product_category_id: bi-24-4 output: product_category_id: - - '1837' + - '5894' - input: - product_category_id: bi-22-5-2 + product_category_id: bi-24-5 output: product_category_id: - - '1837' + - '5897' - input: - product_category_id: bi-22-5-3 + product_category_id: bi-24-6 output: product_category_id: - - '1837' + - '7323' - input: - product_category_id: bi-22-5-4 + product_category_id: bi-24-7 output: product_category_id: - - '1837' + - '5896' - input: - product_category_id: bi-22-6 + product_category_id: bi-24-8 output: product_category_id: - - '4127' + - '5900' - input: - product_category_id: bi-22-7 + product_category_id: bi-24-9 output: product_category_id: - - '4160' + - '5898' - input: - product_category_id: bi-22-8 + product_category_id: bi-24-10 output: product_category_id: - - '499897' + - '5895' - input: - product_category_id: bi-23 + product_category_id: bi-24-11 output: product_category_id: - - '1624' + - '5892' - input: - product_category_id: bi-23-1 + product_category_id: bi-24-12 output: product_category_id: - - '6975' + - '5893' - input: - product_category_id: bi-23-1-1 + product_category_id: bi-24-13 output: product_category_id: - - '6975' + - '5899' - input: - product_category_id: bi-23-1-2 + product_category_id: bi-25 output: product_category_id: - - '6975' + - '2047' - input: - product_category_id: bi-23-1-3 + product_category_id: bi-25-1 output: product_category_id: - - '6975' + - '2389' - input: - product_category_id: bi-23-2 + product_category_id: bi-25-2 output: product_category_id: - - '7325' + - '8269' - input: - product_category_id: bi-23-2-1 + product_category_id: bi-25-2-1 output: product_category_id: - - '7325' + - '8269' - input: - product_category_id: bi-23-2-2 + product_category_id: bi-25-2-2 output: product_category_id: - - '7325' + - '8269' - input: - product_category_id: bi-23-3 + product_category_id: bi-25-2-3 output: product_category_id: - - '3002' + - '8269' - input: - product_category_id: bi-23-3-1 + product_category_id: bi-25-3 output: product_category_id: - - '3002' + - '2723' - input: - product_category_id: bi-23-3-2 + product_category_id: bi-25-4 output: product_category_id: - - '3002' + - '2808' - input: - product_category_id: bi-23-3-3 + product_category_id: bi-25-5 output: product_category_id: - - '3002' + - '6764' - input: - product_category_id: bi-23-3-4 + product_category_id: bi-25-5-1 output: product_category_id: - - '3002' + - '6764' - input: - product_category_id: bi-23-4 + product_category_id: bi-25-5-2 output: product_category_id: - - '4335' + - '6764' - input: - product_category_id: bi-23-4-1 + product_category_id: bi-25-5-3 output: product_category_id: - - '4116' + - '6764' - input: - product_category_id: bi-23-4-10 + product_category_id: bi-25-6 output: product_category_id: - - '4555' + - '2227' - input: - product_category_id: bi-23-4-10-1 + product_category_id: bi-25-6-1 output: product_category_id: - - '4557' + - '2227' - input: - product_category_id: bi-23-4-10-2 + product_category_id: bi-25-6-2 output: product_category_id: - - '4556' + - '2227' - input: - product_category_id: bi-23-4-10-2-1 + product_category_id: bi-25-6-3 output: product_category_id: - - '4556' + - '2227' - input: - product_category_id: bi-23-4-10-2-2 + product_category_id: bi-25-7 output: product_category_id: - - '4556' + - '503724' - input: - product_category_id: bi-23-4-10-2-3 + product_category_id: bi-25-7-1 output: product_category_id: - - '4556' + - '7407' - input: - product_category_id: bi-23-4-10-2-4 + product_category_id: bi-25-7-2 output: product_category_id: - - '4556' + - '2349' - input: - product_category_id: bi-23-4-10-3 + product_category_id: bi-25-7-3 output: product_category_id: - - '4665' + - '2473' - input: - product_category_id: bi-23-4-10-3-1 + product_category_id: bi-25-7-4 output: product_category_id: - - '4665' + - '513' - input: - product_category_id: bi-23-4-10-3-2 + product_category_id: bi-25-8 output: product_category_id: - - '4665' + - '5591' - input: - product_category_id: bi-23-4-10-3-3 + product_category_id: bi-25-8-1 output: product_category_id: - - '4665' + - '5591' - input: - product_category_id: bi-23-4-10-4 + product_category_id: bi-25-8-2 output: product_category_id: - - '4664' + - '5591' - input: - product_category_id: bi-23-4-10-5 + product_category_id: bi-25-8-3 output: product_category_id: - - '4558' + - '5591' - input: - product_category_id: bi-23-4-10-5-1 + product_category_id: bi-25-8-4 output: product_category_id: - - '4558' + - '5591' - input: - product_category_id: bi-23-4-10-5-2 + product_category_id: bi-25-9 output: product_category_id: - - '4558' + - '499961' - input: - product_category_id: bi-23-4-10-5-3 + product_category_id: bi-25-10 output: product_category_id: - - '4558' + - '499927' - input: - product_category_id: bi-23-4-10-5-4 + product_category_id: bi-25-11 output: product_category_id: - - '4558' + - '499708' - input: - product_category_id: bi-23-4-11 + product_category_id: bi-25-11-1 output: product_category_id: - - '158' + - '499708' - input: - product_category_id: bi-23-4-11-2 + product_category_id: bi-25-11-2 output: product_category_id: - - '158' + - '499708' - input: - product_category_id: bi-23-4-11-3 + product_category_id: bi-25-11-3 output: product_category_id: - - '158' + - '499708' - input: - product_category_id: bi-23-4-11-4 + product_category_id: bi-25-12 output: product_category_id: - - '158' + - '7085' - input: - product_category_id: bi-23-4-12 + product_category_id: bi-25-12-1 output: product_category_id: - - '7437' + - '7085' - input: - product_category_id: bi-23-4-12-1 + product_category_id: bi-25-12-2 output: product_category_id: - - '7437' + - '7085' - input: - product_category_id: bi-23-4-12-2 + product_category_id: bi-25-12-3 output: product_category_id: - - '7437' + - '7085' - input: - product_category_id: bi-23-4-12-3 + product_category_id: bt output: product_category_id: - - '7437' + - '537' - input: - product_category_id: bi-23-4-13 + product_category_id: bt-1 output: product_category_id: - - '7468' + - '4678' - input: - product_category_id: bi-23-4-13-1 + product_category_id: bt-1-1 output: product_category_id: - - '7468' + - '4679' - input: - product_category_id: bi-23-4-13-2 + product_category_id: bt-1-1-1 output: product_category_id: - - '7468' + - '4679' - input: - product_category_id: bi-23-4-14 + product_category_id: bt-1-1-2 output: product_category_id: - - '7393' + - '4679' - input: - product_category_id: bi-23-4-14-1 + product_category_id: bt-1-1-3 output: product_category_id: - - '7393' + - '4679' - input: - product_category_id: bi-23-4-14-2 + product_category_id: bt-1-1-4 output: product_category_id: - - '7393' + - '4679' - input: - product_category_id: bi-23-4-14-3 + product_category_id: bt-1-1-5 output: product_category_id: - - '7393' + - '4679' - input: - product_category_id: bi-23-4-14-4 + product_category_id: bt-1-2 output: product_category_id: - - '7393' + - '7082' - input: - product_category_id: bi-23-4-2 + product_category_id: bt-1-2-1 output: product_category_id: - - '4336' + - '7082' - input: - product_category_id: bi-23-4-3 + product_category_id: bt-2 output: product_category_id: - - '7218' + - '5859' - input: - product_category_id: bi-23-4-4 + product_category_id: bt-3 output: product_category_id: - - '500057' + - '5252' - input: - product_category_id: bi-23-4-5 + product_category_id: bt-3-1 output: product_category_id: - - '4474' + - '6290' - input: - product_category_id: bi-23-4-6 + product_category_id: bt-3-2 output: product_category_id: - - '500114' + - '5253' - input: - product_category_id: bi-23-4-7 + product_category_id: bt-3-3 output: product_category_id: - - '503722' + - '7016' - input: - product_category_id: bi-23-4-7-1 + product_category_id: bt-3-4 output: product_category_id: - - '503722' + - '7309' - input: - product_category_id: bi-23-4-7-2 + product_category_id: bt-3-5 output: product_category_id: - - '503722' + - '566' - input: - product_category_id: bi-23-4-7-3 + product_category_id: bt-3-5-1 output: product_category_id: - - '503722' + - '566' - input: - product_category_id: bi-23-4-7-4 + product_category_id: bt-3-5-2 output: product_category_id: - - '503722' + - '566' - input: - product_category_id: bi-23-4-8 + product_category_id: bt-4 output: product_category_id: - - '4133' + - '540' - input: - product_category_id: bi-23-4-9 + product_category_id: bt-4-1 output: product_category_id: - - '4231' + - '6869' - input: - product_category_id: bi-23-4-9-1 + product_category_id: bt-4-1-1 output: product_category_id: - - '4231' + - '6869' - input: - product_category_id: bi-23-4-9-2 + product_category_id: bt-4-1-2 output: product_category_id: - - '4231' + - '6869' - input: - product_category_id: bi-23-4-9-3 + product_category_id: bt-4-1-3 output: product_category_id: - - '4231' + - '6869' - input: - product_category_id: bi-23-5 + product_category_id: bt-4-1-4 output: product_category_id: - - '8119' + - '6869' - input: - product_category_id: bi-23-6 + product_category_id: bt-4-1-5 output: product_category_id: - - '4255' + - '6869' - input: - product_category_id: bi-23-6-1 + product_category_id: bt-4-2 output: product_category_id: - - '4310' + - '542' - input: - product_category_id: bi-23-6-2 + product_category_id: bt-4-2-1 output: product_category_id: - - '4061' + - '542' - input: - product_category_id: bi-23-6-3 + product_category_id: bt-4-2-2 output: product_category_id: - - '4036' + - '542' - input: - product_category_id: bi-23-6-3-1 + product_category_id: bt-4-2-3 output: product_category_id: - - '4036' + - '542' - input: - product_category_id: bi-23-6-3-2 + product_category_id: bt-4-3 output: product_category_id: - - '4036' + - '541' - input: - product_category_id: bi-23-6-3-3 + product_category_id: bt-4-3-1 output: product_category_id: - - '4036' + - '541' - input: - product_category_id: bi-23-6-3-4 + product_category_id: bt-4-3-2 output: product_category_id: - - '4036' + - '541' - input: - product_category_id: bi-23-6-4 + product_category_id: bt-4-3-3 output: product_category_id: - - '4276' + - '541' - input: - product_category_id: bi-23-6-5 + product_category_id: bt-4-4 output: product_category_id: - - '4075' + - '5049' - input: - product_category_id: bi-23-6-5-1 + product_category_id: bt-4-4-1 output: product_category_id: - - '4075' + - '5049' - input: - product_category_id: bi-23-6-5-2 + product_category_id: bt-4-4-2 output: product_category_id: - - '4075' + - '5049' - input: - product_category_id: bi-23-6-5-3 + product_category_id: bt-4-4-3 output: product_category_id: - - '4075' + - '5049' - input: - product_category_id: bi-23-6-6 + product_category_id: bt-4-5 output: product_category_id: - - '4155' + - '543' - input: - product_category_id: bi-23-6-7 + product_category_id: bt-4-5-1 output: product_category_id: - - '4306' + - '543' - input: - product_category_id: bi-23-6-8 + product_category_id: bt-4-5-2 output: product_category_id: - - '4140' + - '543' - input: - product_category_id: bi-24 + product_category_id: bt-4-5-3 output: product_category_id: - - '976' + - '543' - input: - product_category_id: bi-24-1 + product_category_id: bt-4-5-4 output: product_category_id: - - '7322' + - '543' - input: - product_category_id: bi-24-10 + product_category_id: bt-4-5-5 output: product_category_id: - - '5895' + - '543' - input: - product_category_id: bi-24-11 + product_category_id: bt-4-6 output: product_category_id: - - '5892' + - '544' - input: - product_category_id: bi-24-12 + product_category_id: bt-4-6-1 output: product_category_id: - - '5893' + - '544' - input: - product_category_id: bi-24-13 + product_category_id: bt-4-6-2 output: product_category_id: - - '5899' + - '544' - input: - product_category_id: bi-24-2 + product_category_id: bt-5 output: product_category_id: - - '8155' + - '2847' - input: - product_category_id: bi-24-3 + product_category_id: bt-5-1 output: product_category_id: - - '4297' + - '3661' - input: - product_category_id: bi-24-3-1 + product_category_id: bt-5-1-1 output: product_category_id: - - '4131' + - '3661' - input: - product_category_id: bi-24-3-2 + product_category_id: bt-5-1-2 output: product_category_id: - - '4070' + - '3661' - input: - product_category_id: bi-24-4 + product_category_id: bt-5-1-3 output: product_category_id: - - '5894' + - '3661' - input: - product_category_id: bi-24-5 + product_category_id: bt-5-1-4 output: product_category_id: - - '5897' + - '3661' - input: - product_category_id: bi-24-6 + product_category_id: bt-5-1-5 output: product_category_id: - - '7323' + - '3661' - input: - product_category_id: bi-24-7 + product_category_id: bt-5-2 output: product_category_id: - - '5896' + - '7198' - input: - product_category_id: bi-24-8 + product_category_id: bt-5-2-1 output: product_category_id: - - '5900' + - '7198' - input: - product_category_id: bi-24-9 + product_category_id: bt-5-2-2 output: product_category_id: - - '5898' + - '7198' - input: - product_category_id: bi-25 + product_category_id: bt-5-2-3 output: product_category_id: - - '2047' + - '1244' - input: - product_category_id: bi-25-1 + product_category_id: bt-5-2-4 output: product_category_id: - - '2389' + - '7198' - input: - product_category_id: bi-25-10 + product_category_id: bt-5-3 output: product_category_id: - - '499927' + - '555' - input: - product_category_id: bi-25-11 + product_category_id: bt-5-3-1 output: product_category_id: - - '499708' + - '555' - input: - product_category_id: bi-25-11-1 + product_category_id: bt-5-3-2 output: product_category_id: - - '499708' + - '555' - input: - product_category_id: bi-25-11-2 + product_category_id: bt-5-4 output: product_category_id: - - '499708' + - '560' - input: - product_category_id: bi-25-11-3 + product_category_id: bt-5-4-1 output: product_category_id: - - '499708' + - '560' - input: - product_category_id: bi-25-12 + product_category_id: bt-5-4-2 output: product_category_id: - - '7085' + - '560' - input: - product_category_id: bi-25-12-1 + product_category_id: bt-5-5 output: product_category_id: - - '7085' + - '7191' - input: - product_category_id: bi-25-12-2 + product_category_id: bt-5-5-1 output: product_category_id: - - '7085' + - '7191' - input: - product_category_id: bi-25-12-3 + product_category_id: bt-5-5-2 output: product_category_id: - - '7085' + - '7191' - input: - product_category_id: bi-25-2 + product_category_id: bt-5-5-3 output: product_category_id: - - '8269' + - '7191' - input: - product_category_id: bi-25-2-1 + product_category_id: bt-5-6 output: product_category_id: - - '8269' + - '1242' - input: - product_category_id: bi-25-2-2 + product_category_id: bt-5-6-1 output: product_category_id: - - '8269' + - '1242' - input: - product_category_id: bi-25-2-3 + product_category_id: bt-5-6-2 output: product_category_id: - - '8269' + - '1242' - input: - product_category_id: bi-25-3 + product_category_id: bt-5-6-3 output: product_category_id: - - '2723' + - '1242' - input: - product_category_id: bi-25-4 + product_category_id: bt-5-7 output: product_category_id: - - '2808' + - '7360' - input: - product_category_id: bi-25-5 + product_category_id: bt-5-7-1 output: product_category_id: - - '6764' + - '7360' - input: - product_category_id: bi-25-5-1 + product_category_id: bt-5-7-2 output: product_category_id: - - '6764' + - '7360' - input: - product_category_id: bi-25-5-2 + product_category_id: bt-5-7-3 output: product_category_id: - - '6764' + - '7360' - input: - product_category_id: bi-25-5-3 + product_category_id: bt-5-8 output: product_category_id: - - '6764' + - '1241' - input: - product_category_id: bi-25-6 + product_category_id: bt-5-8-1 output: product_category_id: - - '2227' + - '1241' - input: - product_category_id: bi-25-6-1 + product_category_id: bt-5-8-2 output: product_category_id: - - '2227' + - '1241' - input: - product_category_id: bi-25-6-2 + product_category_id: bt-5-9 output: product_category_id: - - '2227' + - '1243' - input: - product_category_id: bi-25-6-3 + product_category_id: bt-5-9-1 output: product_category_id: - - '2227' + - '543613' - input: - product_category_id: bi-25-7 + product_category_id: bt-5-9-2 output: product_category_id: - - '503724' + - '543612' - input: - product_category_id: bi-25-7-1 + product_category_id: bt-5-10 output: product_category_id: - - '7407' + - '539' - input: - product_category_id: bi-25-7-2 + product_category_id: bt-5-11 output: product_category_id: - - '2349' + - '3459' - input: - product_category_id: bi-25-7-3 + product_category_id: bt-5-12 output: product_category_id: - - '2473' + - '3860' - input: - product_category_id: bi-25-7-4 + product_category_id: bt-6 output: product_category_id: - - '513' + - '2764' - input: - product_category_id: bi-25-8 + product_category_id: bt-6-1 output: product_category_id: - - '5591' + - '547' - input: - product_category_id: bi-25-8-1 + product_category_id: bt-6-1-1 output: product_category_id: - - '5591' + - '547' - input: - product_category_id: bi-25-8-2 + product_category_id: bt-6-1-2 output: product_category_id: - - '5591' + - '547' - input: - product_category_id: bi-25-8-3 + product_category_id: bt-6-1-3 output: product_category_id: - - '5591' + - '547' - input: - product_category_id: bi-25-8-4 + product_category_id: bt-6-1-4 output: product_category_id: - - '5591' + - '547' - input: - product_category_id: bi-25-9 + product_category_id: bt-6-2 output: product_category_id: - - '499961' + - '538' - input: - product_category_id: bi-3 + product_category_id: bt-6-2-1 output: product_category_id: - - '7261' + - '538' - input: - product_category_id: bi-3-1 + product_category_id: bt-6-2-2 output: product_category_id: - - '7263' + - '538' - input: - product_category_id: bi-3-1-2 + product_category_id: bt-6-2-3 output: product_category_id: - - '7263' + - '538' - input: - product_category_id: bi-3-1-4 + product_category_id: bt-6-2-4 output: product_category_id: - - '7263' + - '538' - input: - product_category_id: bi-3-1-5 + product_category_id: bt-6-2-5 output: product_category_id: - - '7263' + - '538' - input: - product_category_id: bi-3-1-7 + product_category_id: bt-6-3 output: product_category_id: - - '7263' + - '568' - input: - product_category_id: bi-3-1-9 + product_category_id: bt-6-3-1 output: product_category_id: - - '7263' + - '568' - input: - product_category_id: bi-3-2 + product_category_id: bt-6-3-2 output: product_category_id: - - '7262' + - '568' - input: - product_category_id: bi-4 + product_category_id: bt-6-3-3 output: product_category_id: - - '114' + - '568' - input: - product_category_id: bi-4-1 + product_category_id: bt-6-3-4 output: product_category_id: - - '134' + - '568' - input: - product_category_id: bi-4-1-1 + product_category_id: bt-6-3-5 output: product_category_id: - - '134' + - '568' - input: - product_category_id: bi-4-1-2 + product_category_id: bt-6-3-6 output: product_category_id: - - '134' + - '568' - input: - product_category_id: bi-4-1-4 + product_category_id: bt-7 output: product_category_id: - - '134' + - '4386' - input: - product_category_id: bi-4-2 + product_category_id: bt-7-1 output: product_category_id: - - '8278' + - '4486' - input: - product_category_id: bi-4-2-1 + product_category_id: bt-7-1-1 output: product_category_id: - - '8278' + - '4486' - input: - product_category_id: bi-4-2-2 + product_category_id: bt-7-1-2 output: product_category_id: - - '8278' + - '4486' - input: - product_category_id: bi-5 + product_category_id: bt-7-1-3 output: product_category_id: - - '7497' + - '4486' - input: - product_category_id: bi-5-1 + product_category_id: bt-7-1-4 output: product_category_id: - - '7500' + - '4486' - input: - product_category_id: bi-5-1-1 + product_category_id: bt-7-1-5 output: product_category_id: - - '7500' + - '4486' - input: - product_category_id: bi-5-1-2 + product_category_id: bt-7-1-6 output: product_category_id: - - '7500' + - '4486' - input: - product_category_id: bi-5-1-3 + product_category_id: bt-7-2 output: product_category_id: - - '7500' + - '4916' - input: - product_category_id: bi-5-1-5 + product_category_id: bt-7-2-1 output: product_category_id: - - '7500' + - '4916' - input: - product_category_id: bi-5-2 + product_category_id: bt-7-2-2 output: product_category_id: - - '7499' + - '4916' - input: - product_category_id: bi-5-2-1 + product_category_id: bt-7-2-3 output: product_category_id: - - '8490' + - '4916' - input: - product_category_id: bi-5-2-2 + product_category_id: bt-7-2-4 output: product_category_id: - - '7498' + - '4916' - input: - product_category_id: bi-5-2-3 + product_category_id: bt-7-2-5 output: product_category_id: - - '7531' + - '4916' - input: - product_category_id: bi-5-2-4 + product_category_id: bt-7-2-6 output: product_category_id: - - '8121' + - '4916' - input: - product_category_id: bi-5-2-5 + product_category_id: bt-7-3 output: product_category_id: - - '8120' + - '4387' - input: - product_category_id: bi-5-3 + product_category_id: bt-7-3-1 output: product_category_id: - - '8130' + - '4387' - input: - product_category_id: bi-6 + product_category_id: bt-7-3-2 output: product_category_id: - - '2155' + - '4387' - input: - product_category_id: bi-6-1 + product_category_id: bt-7-3-3 output: product_category_id: - - '2155' + - '4387' - input: - product_category_id: bi-6-2 + product_category_id: bt-7-3-4 output: product_category_id: - - '2155' + - '4387' - input: - product_category_id: bi-6-3 + product_category_id: bt-7-3-5 output: product_category_id: - - '2155' + - '4387' - input: - product_category_id: bi-6-3-1 + product_category_id: bt-7-3-6 output: product_category_id: - - '2155' + - '4387' - input: - product_category_id: bi-6-3-2 + product_category_id: bt-7-3-7 output: product_category_id: - - '2155' + - '4387' - input: - product_category_id: bi-6-3-3 + product_category_id: bt-7-4 output: product_category_id: - - '2155' + - '8537' - input: - product_category_id: bi-7 + product_category_id: bt-7-5 output: product_category_id: - - '1813' + - '5845' - input: - product_category_id: bi-7-1 + product_category_id: bt-8 output: product_category_id: - - '7565' + - '537' - input: - product_category_id: bi-8 + product_category_id: bt-9 output: product_category_id: - - '135' + - '548' - input: - product_category_id: bi-8-1 + product_category_id: bt-9-1 output: product_category_id: - - '7303' + - '7200' - input: - product_category_id: bi-8-10 + product_category_id: bt-9-1-1 output: product_category_id: - - '6786' + - '7200' - input: - product_category_id: bi-8-11 + product_category_id: bt-9-1-2 output: product_category_id: - - '6517' + - '7200' - input: - product_category_id: bi-8-12 + product_category_id: bt-9-1-3 output: product_category_id: - - '7353' + - '7200' - input: - product_category_id: bi-8-13 + product_category_id: bt-9-2 output: product_category_id: - - '5104' + - '553' - input: - product_category_id: bi-8-14 + product_category_id: bt-9-2-1 output: product_category_id: - - '8533' + - '553' - input: - product_category_id: bi-8-15 + product_category_id: bt-9-2-2 output: product_category_id: - - '5097' + - '553' - input: - product_category_id: bi-8-16 + product_category_id: bt-9-2-3 output: product_category_id: - - '7553' + - '553' - input: - product_category_id: bi-8-17 + product_category_id: bt-9-3 output: product_category_id: - - '137' + - '502999' - input: - product_category_id: bi-8-17-1 + product_category_id: bt-9-3-1 output: product_category_id: - - '137' + - '502999' - input: - product_category_id: bi-8-17-2 + product_category_id: bt-9-3-2 output: product_category_id: - - '137' + - '502999' - input: - product_category_id: bi-8-17-3 + product_category_id: bt-9-3-3 output: product_category_id: - - '137' + - '502999' - input: - product_category_id: bi-8-2 + product_category_id: bt-9-4 output: product_category_id: - - '4217' + - '5628' - input: - product_category_id: bi-8-3 + product_category_id: bt-9-4-1 output: product_category_id: - - '8532' + - '5628' - input: - product_category_id: bi-8-4 + product_category_id: bt-9-4-2 output: product_category_id: - - '5102' + - '5628' - input: - product_category_id: bi-8-5 + product_category_id: bt-9-4-3 output: product_category_id: - - '8059' + - '5628' - input: - product_category_id: bi-8-6 + product_category_id: bt-9-5 output: product_category_id: - - '7088' + - '7014' - input: - product_category_id: bi-8-6-1 + product_category_id: bt-9-5-1 output: product_category_id: - - '7089' + - '7014' - input: - product_category_id: bi-8-7 + product_category_id: bt-9-5-2 output: product_category_id: - - '4632' + - '7014' - input: - product_category_id: bi-8-7-1 + product_category_id: bt-9-5-3 output: product_category_id: - - '5098' + - '7014' - input: - product_category_id: bi-8-7-2 + product_category_id: bt-9-6 output: product_category_id: - - '5099' + - '6949' - input: - product_category_id: bi-8-7-3 + product_category_id: bt-9-6-1 output: product_category_id: - - '5100' + - '6949' - input: - product_category_id: bi-8-7-3-1 + product_category_id: bt-9-6-2 output: product_category_id: - - '5100' + - '6949' - input: - product_category_id: bi-8-7-3-2 + product_category_id: bt-9-6-3 output: product_category_id: - - '5100' + - '6949' - input: - product_category_id: bi-8-7-3-3 + product_category_id: bt-9-7 output: product_category_id: - - '5100' + - '6883' - input: - product_category_id: bi-8-7-4 + product_category_id: bt-9-7-1 output: product_category_id: - - '5101' + - '6883' - input: - product_category_id: bi-8-8 + product_category_id: bt-9-7-2 output: product_category_id: - - '4096' + - '6883' - input: - product_category_id: bi-8-9 + product_category_id: bt-9-7-3 output: product_category_id: - - '4742' + - '6883' - input: - product_category_id: bi-9 + product_category_id: bt-9-7-4 output: product_category_id: - - '1827' + - '6883' - input: - product_category_id: bi-9-1 + product_category_id: bt-9-8 output: product_category_id: - - '1827' + - '7001' - input: - product_category_id: bi-9-1-1 + product_category_id: bt-9-8-1 output: product_category_id: - - '1827' + - '7001' - input: - product_category_id: bi-9-2 + product_category_id: bt-9-8-2 output: product_category_id: - - '1827' + - '7001' - input: - product_category_id: bi-9-2-1 + product_category_id: bt-9-8-3 output: product_category_id: - - '1827' + - '7001' - input: - product_category_id: bi-9-2-2 + product_category_id: bt-9-8-4 output: product_category_id: - - '1827' + - '7001' - input: - product_category_id: bi-9-2-3 + product_category_id: bt-9-9 output: product_category_id: - - '1827' + - '550' - input: - product_category_id: bi-9-2-4 + product_category_id: bt-9-9-1 output: product_category_id: - - '1827' + - '550' - input: - product_category_id: bi-9-2-5 + product_category_id: bt-9-9-3 output: product_category_id: - - '1827' + - '550' - input: - product_category_id: bi-9-3 + product_category_id: bt-9-10 output: product_category_id: - - '1827' + - '2949' - input: - product_category_id: bi-9-3-1 + product_category_id: bt-9-10-1 output: product_category_id: - - '1827' + - '2949' - input: - product_category_id: bi-9-3-2 + product_category_id: bt-9-10-2 output: product_category_id: - - '1827' + - '2949' - input: - product_category_id: bi-9-3-3 + product_category_id: bt-9-10-3 output: product_category_id: - - '1827' + - '2949' - input: - product_category_id: bt + product_category_id: bt-9-10-4 output: product_category_id: - - '537' + - '2949' - input: - product_category_id: bt-1 + product_category_id: bt-9-11 output: product_category_id: - - '4678' + - '6971' - input: - product_category_id: bt-1-1 + product_category_id: bt-9-11-2 output: product_category_id: - - '4679' + - '6971' - input: - product_category_id: bt-1-1-1 + product_category_id: bt-9-11-3 output: product_category_id: - - '4679' + - '6971' - input: - product_category_id: bt-1-1-2 + product_category_id: bt-9-12 output: product_category_id: - - '4679' + - '551' - input: - product_category_id: bt-1-1-3 + product_category_id: bt-9-12-1 output: product_category_id: - - '4679' + - '551' - input: - product_category_id: bt-1-1-4 + product_category_id: bt-9-12-2 output: product_category_id: - - '4679' + - '551' - input: - product_category_id: bt-1-1-5 + product_category_id: bt-9-12-3 output: product_category_id: - - '4679' + - '551' - input: - product_category_id: bt-1-2 + product_category_id: bt-9-12-4 output: product_category_id: - - '7082' + - '551' - input: - product_category_id: bt-1-2-1 + product_category_id: bt-9-12-5 output: product_category_id: - - '7082' + - '551' - input: product_category_id: bt-10 output: @@ -13177,51 +14042,6 @@ rules: output: product_category_id: - '8436' -- input: - product_category_id: bt-10-10 - output: - product_category_id: - - '5629' -- input: - product_category_id: bt-10-11 - output: - product_category_id: - - '5843' -- input: - product_category_id: bt-10-12 - output: - product_category_id: - - '503762' -- input: - product_category_id: bt-10-12-1 - output: - product_category_id: - - '503762' -- input: - product_category_id: bt-10-12-2 - output: - product_category_id: - - '503762' -- input: - product_category_id: bt-10-12-3 - output: - product_category_id: - - '503762' -- input: - product_category_id: bt-10-13 - output: - product_category_id: - - '8075' -- input: - product_category_id: bt-10-14 - output: - product_category_id: - - '5298' -- input: - product_category_id: bt-10-15 - output: - product_category_id: - - '6950' - input: product_category_id: bt-10-2 output: @@ -13393,4990 +14213,4820 @@ rules: product_category_id: - '565' - input: - product_category_id: bt-11 - output: - product_category_id: - - '6952' -- input: - product_category_id: bt-11-1 - output: - product_category_id: - - '6952' -- input: - product_category_id: bt-11-2 - output: - product_category_id: - - '6953' -- input: - product_category_id: bt-11-3 - output: - product_category_id: - - '6952' -- input: - product_category_id: bt-12 - output: - product_category_id: - - '6899' -- input: - product_category_id: bt-12-1 - output: - product_category_id: - - '543664' -- input: - product_category_id: bt-12-2 - output: - product_category_id: - - '543665' -- input: - product_category_id: bt-2 - output: - product_category_id: - - '5859' -- input: - product_category_id: bt-3 - output: - product_category_id: - - '5252' -- input: - product_category_id: bt-3-1 - output: - product_category_id: - - '6290' -- input: - product_category_id: bt-3-2 - output: - product_category_id: - - '5253' -- input: - product_category_id: bt-3-3 - output: - product_category_id: - - '7016' -- input: - product_category_id: bt-3-4 - output: - product_category_id: - - '7309' -- input: - product_category_id: bt-3-5 - output: - product_category_id: - - '566' -- input: - product_category_id: bt-3-5-1 - output: - product_category_id: - - '566' -- input: - product_category_id: bt-3-5-2 - output: - product_category_id: - - '566' -- input: - product_category_id: bt-4 - output: - product_category_id: - - '540' -- input: - product_category_id: bt-4-1 - output: - product_category_id: - - '6869' -- input: - product_category_id: bt-4-1-1 - output: - product_category_id: - - '6869' -- input: - product_category_id: bt-4-1-2 - output: - product_category_id: - - '6869' -- input: - product_category_id: bt-4-1-3 - output: - product_category_id: - - '6869' -- input: - product_category_id: bt-4-1-4 - output: - product_category_id: - - '6869' -- input: - product_category_id: bt-4-1-5 - output: - product_category_id: - - '6869' -- input: - product_category_id: bt-4-2 - output: - product_category_id: - - '542' -- input: - product_category_id: bt-4-2-1 - output: - product_category_id: - - '542' -- input: - product_category_id: bt-4-2-2 - output: - product_category_id: - - '542' -- input: - product_category_id: bt-4-2-3 - output: - product_category_id: - - '542' -- input: - product_category_id: bt-4-3 - output: - product_category_id: - - '541' -- input: - product_category_id: bt-4-3-1 - output: - product_category_id: - - '541' -- input: - product_category_id: bt-4-3-2 - output: - product_category_id: - - '541' -- input: - product_category_id: bt-4-3-3 - output: - product_category_id: - - '541' -- input: - product_category_id: bt-4-4 - output: - product_category_id: - - '5049' -- input: - product_category_id: bt-4-4-1 - output: - product_category_id: - - '5049' -- input: - product_category_id: bt-4-4-2 - output: - product_category_id: - - '5049' -- input: - product_category_id: bt-4-4-3 + product_category_id: bt-10-10 output: product_category_id: - - '5049' + - '5629' - input: - product_category_id: bt-4-5 + product_category_id: bt-10-11 output: product_category_id: - - '543' + - '5843' - input: - product_category_id: bt-4-5-1 + product_category_id: bt-10-12 output: product_category_id: - - '543' + - '503762' - input: - product_category_id: bt-4-5-2 + product_category_id: bt-10-12-1 output: product_category_id: - - '543' + - '503762' - input: - product_category_id: bt-4-5-3 + product_category_id: bt-10-12-2 output: product_category_id: - - '543' + - '503762' - input: - product_category_id: bt-4-5-4 + product_category_id: bt-10-12-3 output: product_category_id: - - '543' + - '503762' - input: - product_category_id: bt-4-5-5 + product_category_id: bt-10-13 output: product_category_id: - - '543' + - '8075' - input: - product_category_id: bt-4-6 + product_category_id: bt-10-14 output: product_category_id: - - '544' + - '5298' - input: - product_category_id: bt-4-6-1 + product_category_id: bt-10-15 output: product_category_id: - - '544' + - '6950' - input: - product_category_id: bt-4-6-2 + product_category_id: bt-11 output: product_category_id: - - '544' + - '6952' - input: - product_category_id: bt-5 + product_category_id: bt-11-1 output: product_category_id: - - '2847' + - '6952' - input: - product_category_id: bt-5-1 + product_category_id: bt-11-2 output: product_category_id: - - '3661' + - '6953' - input: - product_category_id: bt-5-1-1 + product_category_id: bt-11-3 output: product_category_id: - - '3661' + - '6952' - input: - product_category_id: bt-5-1-2 + product_category_id: bt-12 output: product_category_id: - - '3661' + - '6899' - input: - product_category_id: bt-5-1-3 + product_category_id: bt-12-1 output: product_category_id: - - '3661' + - '543664' - input: - product_category_id: bt-5-1-4 + product_category_id: bt-12-2 output: product_category_id: - - '3661' + - '543665' - input: - product_category_id: bt-5-1-5 + product_category_id: co output: product_category_id: - - '3661' + - '141' - input: - product_category_id: bt-5-10 + product_category_id: co-1 output: product_category_id: - - '539' + - '2096' - input: - product_category_id: bt-5-11 + product_category_id: co-1-1 output: product_category_id: - - '3459' + - '463625' - input: - product_category_id: bt-5-12 + product_category_id: co-1-1-1 output: product_category_id: - - '3860' + - '463625' - input: - product_category_id: bt-5-2 + product_category_id: co-1-1-2 output: product_category_id: - - '7198' + - '463625' - input: - product_category_id: bt-5-2-1 + product_category_id: co-1-1-3 output: product_category_id: - - '7198' + - '463625' - input: - product_category_id: bt-5-2-2 + product_category_id: co-1-2 output: product_category_id: - - '7198' + - '149' - input: - product_category_id: bt-5-2-3 + product_category_id: co-1-2-1 output: product_category_id: - - '1244' + - '4432' - input: - product_category_id: bt-5-2-4 + product_category_id: co-1-2-2 output: product_category_id: - - '7198' + - '5346' - input: - product_category_id: bt-5-3 + product_category_id: co-1-2-3 output: product_category_id: - - '555' + - '5280' - input: - product_category_id: bt-5-3-1 + product_category_id: co-1-3 output: product_category_id: - - '555' + - '2911' - input: - product_category_id: bt-5-3-2 + product_category_id: co-1-3-1 output: product_category_id: - - '555' + - '5588' - input: - product_category_id: bt-5-4 + product_category_id: co-1-3-2 output: product_category_id: - - '560' + - '4441' - input: - product_category_id: bt-5-4-1 + product_category_id: co-1-3-3 output: product_category_id: - - '560' + - '2829' - input: - product_category_id: bt-5-4-2 + product_category_id: co-1-3-4 output: product_category_id: - - '560' + - '4416' - input: - product_category_id: bt-5-5 + product_category_id: co-1-3-5 output: product_category_id: - - '7191' + - '147' - input: - product_category_id: bt-5-5-1 + product_category_id: co-1-3-6 output: product_category_id: - - '7191' + - '2627' - input: - product_category_id: bt-5-5-2 + product_category_id: co-1-4 output: product_category_id: - - '7191' + - '143' - input: - product_category_id: bt-5-5-3 + product_category_id: co-1-4-1 output: product_category_id: - - '7191' + - '8174' - input: - product_category_id: bt-5-6 + product_category_id: co-1-4-2 output: product_category_id: - - '1242' + - '6308' - input: - product_category_id: bt-5-6-1 + product_category_id: co-1-4-2-1 output: product_category_id: - - '1242' + - '6308' - input: - product_category_id: bt-5-6-2 + product_category_id: co-1-4-2-2 output: product_category_id: - - '1242' + - '6308' - input: - product_category_id: bt-5-6-3 + product_category_id: co-1-4-2-3 output: product_category_id: - - '1242' + - '6308' - input: - product_category_id: bt-5-7 + product_category_id: co-1-4-2-4 output: product_category_id: - - '7360' + - '6308' - input: - product_category_id: bt-5-7-1 + product_category_id: co-1-4-2-5 output: product_category_id: - - '7360' + - '6308' - input: - product_category_id: bt-5-7-2 + product_category_id: co-1-4-2-6 output: product_category_id: - - '7360' + - '6308' - input: - product_category_id: bt-5-7-3 + product_category_id: co-1-4-2-7 output: product_category_id: - - '7360' + - '6308' - input: - product_category_id: bt-5-8 + product_category_id: co-1-4-2-8 output: product_category_id: - - '1241' + - '6308' - input: - product_category_id: bt-5-8-1 + product_category_id: co-1-4-2-9 output: product_category_id: - - '1241' + - '6308' - input: - product_category_id: bt-5-8-2 + product_category_id: co-1-4-3 output: product_category_id: - - '1241' + - '296246' - input: - product_category_id: bt-5-9 + product_category_id: co-1-4-4 output: product_category_id: - - '1243' + - '298420' - input: - product_category_id: bt-5-9-1 + product_category_id: co-1-4-5 output: product_category_id: - - '543613' + - '153' - input: - product_category_id: bt-5-9-2 + product_category_id: co-1-4-5-1 output: product_category_id: - - '543612' + - '153' - input: - product_category_id: bt-6 + product_category_id: co-1-4-5-2 output: product_category_id: - - '2764' + - '153' - input: - product_category_id: bt-6-1 + product_category_id: co-1-4-5-3 output: product_category_id: - - '547' + - '153' - input: - product_category_id: bt-6-1-1 + product_category_id: co-1-4-5-4 output: product_category_id: - - '547' + - '153' - input: - product_category_id: bt-6-1-2 + product_category_id: co-1-4-5-5 output: product_category_id: - - '547' + - '153' - input: - product_category_id: bt-6-1-3 + product_category_id: co-1-4-5-6 output: product_category_id: - - '547' + - '153' - input: - product_category_id: bt-6-1-4 + product_category_id: co-1-4-6 output: product_category_id: - - '547' + - '5479' - input: - product_category_id: bt-6-2 + product_category_id: co-1-4-7 output: product_category_id: - - '538' + - '148' - input: - product_category_id: bt-6-2-1 + product_category_id: co-1-4-8 output: product_category_id: - - '538' + - '500104' - input: - product_category_id: bt-6-2-2 + product_category_id: co-1-4-9 output: product_category_id: - - '538' + - '461567' - input: - product_category_id: bt-6-2-3 + product_category_id: co-1-4-10 output: product_category_id: - - '538' + - '500037' - input: - product_category_id: bt-6-2-4 + product_category_id: co-1-4-10-1 output: product_category_id: - - '538' + - '500037' - input: - product_category_id: bt-6-2-5 + product_category_id: co-1-4-10-2 output: product_category_id: - - '538' + - '500037' - input: - product_category_id: bt-6-3 + product_category_id: co-1-4-10-3 output: product_category_id: - - '568' + - '500037' - input: - product_category_id: bt-6-3-1 + product_category_id: co-1-4-10-4 output: product_category_id: - - '568' + - '500037' - input: - product_category_id: bt-6-3-2 + product_category_id: co-1-4-10-5 output: product_category_id: - - '568' + - '500037' - input: - product_category_id: bt-6-3-3 + product_category_id: co-1-4-10-6 output: product_category_id: - - '568' + - '500037' - input: - product_category_id: bt-6-3-4 + product_category_id: co-1-4-10-7 output: product_category_id: - - '568' + - '500037' - input: - product_category_id: bt-6-3-5 + product_category_id: co-1-4-11 output: product_category_id: - - '568' + - '296248' - input: - product_category_id: bt-6-3-6 + product_category_id: co-1-4-12 output: product_category_id: - - '568' + - '461568' - input: - product_category_id: bt-7 + product_category_id: co-1-4-12-1 output: product_category_id: - - '4386' + - '461568' - input: - product_category_id: bt-7-1 + product_category_id: co-1-4-12-2 output: product_category_id: - - '4486' + - '461568' - input: - product_category_id: bt-7-1-1 + product_category_id: co-1-4-12-3 output: product_category_id: - - '4486' + - '461568' - input: - product_category_id: bt-7-1-2 + product_category_id: co-1-4-12-4 output: product_category_id: - - '4486' + - '461568' - input: - product_category_id: bt-7-1-3 + product_category_id: co-1-4-12-5 output: product_category_id: - - '4486' + - '461568' - input: - product_category_id: bt-7-1-4 + product_category_id: co-1-4-13 output: product_category_id: - - '4486' + - '5532' - input: - product_category_id: bt-7-1-5 + product_category_id: co-1-4-14 output: product_category_id: - - '4486' + - '296247' - input: - product_category_id: bt-7-1-6 + product_category_id: co-1-4-15 output: product_category_id: - - '4486' + - '296249' - input: - product_category_id: bt-7-2 + product_category_id: co-1-4-16 output: product_category_id: - - '4916' + - '503020' - input: - product_category_id: bt-7-2-1 + product_category_id: co-1-4-17 output: product_category_id: - - '4916' + - '499998' - input: - product_category_id: bt-7-2-2 + product_category_id: co-1-4-18 output: product_category_id: - - '4916' + - '5429' - input: - product_category_id: bt-7-2-3 + product_category_id: co-1-4-18-1 output: product_category_id: - - '4916' + - '5429' - input: - product_category_id: bt-7-2-4 + product_category_id: co-1-4-18-2 output: product_category_id: - - '4916' + - '5429' - input: - product_category_id: bt-7-2-5 + product_category_id: co-1-4-18-3 output: product_category_id: - - '4916' + - '5429' - input: - product_category_id: bt-7-2-6 + product_category_id: co-1-4-18-4 output: product_category_id: - - '4916' + - '5429' - input: - product_category_id: bt-7-3 + product_category_id: co-1-4-18-5 output: product_category_id: - - '4387' + - '5429' - input: - product_category_id: bt-7-3-1 + product_category_id: co-1-4-18-6 output: product_category_id: - - '4387' + - '5429' - input: - product_category_id: bt-7-3-2 + product_category_id: co-1-4-18-7 output: product_category_id: - - '4387' + - '5429' - input: - product_category_id: bt-7-3-3 + product_category_id: co-1-4-18-8 output: product_category_id: - - '4387' + - '5429' - input: - product_category_id: bt-7-3-4 + product_category_id: co-1-4-19 output: product_category_id: - - '4387' + - '503019' - input: - product_category_id: bt-7-3-5 + product_category_id: co-1-4-20 output: product_category_id: - - '4387' + - '2987' - input: - product_category_id: bt-7-3-6 + product_category_id: co-1-4-21 output: product_category_id: - - '4387' + - '500107' - input: - product_category_id: bt-7-3-7 + product_category_id: co-1-4-22 output: product_category_id: - - '4387' + - '5937' - input: - product_category_id: bt-7-4 + product_category_id: co-1-4-23 output: product_category_id: - - '8537' + - '8535' - input: - product_category_id: bt-7-5 + product_category_id: co-1-4-24 output: product_category_id: - - '5845' + - '6307' - input: - product_category_id: bt-8 + product_category_id: co-1-4-25 output: product_category_id: - - '537' + - '2394' - input: - product_category_id: bt-9 + product_category_id: co-1-5 output: product_category_id: - - '548' + - '160' - input: - product_category_id: bt-9-1 + product_category_id: co-1-5-1 output: product_category_id: - - '7200' + - '5282' - input: - product_category_id: bt-9-1-1 + product_category_id: co-1-5-2 output: product_category_id: - - '7200' + - '5545' - input: - product_category_id: bt-9-1-2 + product_category_id: co-1-5-2-1 output: product_category_id: - - '7200' + - '5545' - input: - product_category_id: bt-9-1-3 + product_category_id: co-1-5-2-2 output: product_category_id: - - '7200' + - '5545' - input: - product_category_id: bt-9-10 + product_category_id: co-1-5-2-4 output: product_category_id: - - '2949' + - '5545' - input: - product_category_id: bt-9-10-1 + product_category_id: co-1-5-2-5 output: product_category_id: - - '2949' + - '5545' - input: - product_category_id: bt-9-10-2 + product_category_id: co-1-5-2-6 output: product_category_id: - - '2949' + - '5545' - input: - product_category_id: bt-9-10-3 + product_category_id: co-1-5-2-7 output: product_category_id: - - '2949' + - '5545' - input: - product_category_id: bt-9-10-4 + product_category_id: co-1-5-2-8 output: product_category_id: - - '2949' + - '5545' - input: - product_category_id: bt-9-11 + product_category_id: co-1-5-2-9 output: product_category_id: - - '6971' + - '5545' - input: - product_category_id: bt-9-11-2 + product_category_id: co-1-5-2-10 output: product_category_id: - - '6971' + - '5545' - input: - product_category_id: bt-9-11-3 + product_category_id: co-1-5-3 output: product_category_id: - - '6971' + - '5283' - input: - product_category_id: bt-9-12 + product_category_id: co-1-5-4 output: product_category_id: - - '551' + - '5542' - input: - product_category_id: bt-9-12-1 + product_category_id: co-1-5-5 output: product_category_id: - - '551' + - '5284' - input: - product_category_id: bt-9-12-2 + product_category_id: co-1-5-6 output: product_category_id: - - '551' + - '4274' - input: - product_category_id: bt-9-12-3 + product_category_id: co-1-5-7 output: product_category_id: - - '551' + - '5543' - input: - product_category_id: bt-9-12-4 + product_category_id: co-1-6 output: product_category_id: - - '551' + - '4638' - input: - product_category_id: bt-9-12-5 + product_category_id: co-1-6-1 output: product_category_id: - - '551' + - '4640' - input: - product_category_id: bt-9-2 + product_category_id: co-1-6-2 output: product_category_id: - - '553' + - '4639' - input: - product_category_id: bt-9-2-1 + product_category_id: co-1-6-3 output: product_category_id: - - '553' + - '3035' - input: - product_category_id: bt-9-2-2 + product_category_id: co-1-6-4 output: product_category_id: - - '553' + - '503726' - input: - product_category_id: bt-9-2-3 + product_category_id: co-1-6-5 output: product_category_id: - - '553' + - '503016' - input: - product_category_id: bt-9-3 + product_category_id: co-1-7 output: product_category_id: - - '502999' + - '150' - input: - product_category_id: bt-9-3-1 + product_category_id: co-1-7-1 output: product_category_id: - - '502999' + - '150' - input: - product_category_id: bt-9-3-2 + product_category_id: co-1-7-2 output: product_category_id: - - '502999' + - '150' - input: - product_category_id: bt-9-3-3 + product_category_id: co-1-7-3 output: product_category_id: - - '502999' + - '150' - input: - product_category_id: bt-9-4 + product_category_id: co-1-7-4 output: product_category_id: - - '5628' + - '150' - input: - product_category_id: bt-9-4-1 + product_category_id: co-1-7-5 output: product_category_id: - - '5628' + - '150' - input: - product_category_id: bt-9-4-2 + product_category_id: co-1-7-6 output: product_category_id: - - '5628' + - '150' - input: - product_category_id: bt-9-4-3 + product_category_id: co-1-7-7 output: product_category_id: - - '5628' + - '150' - input: - product_category_id: bt-9-5 + product_category_id: co-1-7-9 output: product_category_id: - - '7014' + - '150' - input: - product_category_id: bt-9-5-1 + product_category_id: co-1-7-10 output: product_category_id: - - '7014' + - '150' - input: - product_category_id: bt-9-5-2 + product_category_id: co-2 output: product_category_id: - - '7014' + - '142' - input: - product_category_id: bt-9-5-3 + product_category_id: co-2-1 output: product_category_id: - - '7014' + - '499976' - input: - product_category_id: bt-9-6 + product_category_id: co-2-2 output: product_category_id: - - '6949' + - '152' - input: - product_category_id: bt-9-6-1 + product_category_id: co-2-2-1 output: product_category_id: - - '6949' + - '152' - input: - product_category_id: bt-9-6-2 + product_category_id: co-2-2-2 output: product_category_id: - - '6949' + - '152' - input: - product_category_id: bt-9-6-3 + product_category_id: co-2-2-4 output: product_category_id: - - '6949' + - '152' - input: - product_category_id: bt-9-7 + product_category_id: co-2-2-5 output: product_category_id: - - '6883' + - '152' - input: - product_category_id: bt-9-7-1 + product_category_id: co-2-2-6 output: product_category_id: - - '6883' + - '152' - input: - product_category_id: bt-9-7-2 + product_category_id: co-2-2-7 output: product_category_id: - - '6883' + - '152' - input: - product_category_id: bt-9-7-3 + product_category_id: co-2-2-8 output: product_category_id: - - '6883' + - '152' - input: - product_category_id: bt-9-7-4 + product_category_id: co-2-2-9 output: product_category_id: - - '6883' + - '152' - input: - product_category_id: bt-9-8 + product_category_id: co-2-3 output: product_category_id: - - '7001' + - '4024' - input: - product_category_id: bt-9-8-1 + product_category_id: co-2-4 output: product_category_id: - - '7001' + - '154' - input: - product_category_id: bt-9-8-2 + product_category_id: co-2-4-1 output: product_category_id: - - '7001' + - '154' - input: - product_category_id: bt-9-8-3 + product_category_id: co-2-4-2 output: product_category_id: - - '7001' + - '154' - input: - product_category_id: bt-9-8-4 + product_category_id: co-2-4-3 output: product_category_id: - - '7001' + - '154' - input: - product_category_id: bt-9-9 + product_category_id: co-2-4-4 output: product_category_id: - - '550' + - '154' - input: - product_category_id: bt-9-9-1 + product_category_id: co-2-4-5 output: product_category_id: - - '550' + - '154' - input: - product_category_id: bt-9-9-3 + product_category_id: co-2-4-6 output: product_category_id: - - '550' + - '154' - input: - product_category_id: co + product_category_id: co-2-5 output: product_category_id: - - '141' + - '362' - input: - product_category_id: co-1 + product_category_id: co-2-6 output: product_category_id: - - '2096' + - '5402' - input: - product_category_id: co-1-1 + product_category_id: co-2-7 output: product_category_id: - - '463625' + - '155' - input: - product_category_id: co-1-1-1 + product_category_id: co-2-7-1 output: product_category_id: - - '463625' + - '155' - input: - product_category_id: co-1-1-2 + product_category_id: co-2-7-2 output: product_category_id: - - '463625' + - '155' - input: - product_category_id: co-1-1-3 + product_category_id: co-2-7-4 output: product_category_id: - - '463625' + - '155' - input: - product_category_id: co-1-2 + product_category_id: co-2-7-5 output: product_category_id: - - '149' + - '155' - input: - product_category_id: co-1-2-1 + product_category_id: co-2-7-6 output: product_category_id: - - '4432' + - '155' - input: - product_category_id: co-1-2-2 + product_category_id: co-2-7-7 output: product_category_id: - - '5346' + - '155' - input: - product_category_id: co-1-2-3 + product_category_id: co-2-8 output: product_category_id: - - '5280' + - '312' - input: - product_category_id: co-1-3 + product_category_id: co-3 output: product_category_id: - - '2911' + - '156' - input: - product_category_id: co-1-3-1 + product_category_id: co-3-1 output: product_category_id: - - '5588' + - '157' - input: - product_category_id: co-1-3-2 + product_category_id: co-3-2 output: product_category_id: - - '4441' + - '4164' - input: - product_category_id: co-1-3-3 + product_category_id: co-3-3 output: product_category_id: - - '2829' + - '161' - input: - product_category_id: co-1-3-4 + product_category_id: co-3-4 output: product_category_id: - - '4416' + - '4040' - input: - product_category_id: co-1-3-5 + product_category_id: co-3-4-1 output: product_category_id: - - '147' + - '4136' - input: - product_category_id: co-1-3-6 + product_category_id: co-3-4-2 output: product_category_id: - - '2627' + - '165' - input: - product_category_id: co-1-4 + product_category_id: co-3-4-2-1 output: product_category_id: - - '143' + - '165' - input: - product_category_id: co-1-4-1 + product_category_id: co-3-4-2-2 output: product_category_id: - - '8174' + - '165' - input: - product_category_id: co-1-4-10 + product_category_id: co-3-4-2-3 output: product_category_id: - - '500037' + - '165' - input: - product_category_id: co-1-4-10-1 + product_category_id: co-3-4-2-4 output: product_category_id: - - '500037' + - '165' - input: - product_category_id: co-1-4-10-2 + product_category_id: co-3-4-2-5 output: product_category_id: - - '500037' + - '165' - input: - product_category_id: co-1-4-10-3 + product_category_id: co-3-4-2-6 output: product_category_id: - - '500037' + - '165' - input: - product_category_id: co-1-4-10-4 + product_category_id: co-3-4-3 output: product_category_id: - - '500037' + - '1695' - input: - product_category_id: co-1-4-10-5 + product_category_id: co-4 output: product_category_id: - - '500037' + - '39' - input: - product_category_id: co-1-4-10-6 + product_category_id: co-4-1 output: product_category_id: - - '500037' + - '41' - input: - product_category_id: co-1-4-10-7 + product_category_id: co-4-1-1 output: product_category_id: - - '500037' + - '2234' - input: - product_category_id: co-1-4-11 + product_category_id: co-4-1-1-1 output: product_category_id: - - '296248' + - '2625' - input: - product_category_id: co-1-4-12 + product_category_id: co-4-1-1-2 output: product_category_id: - - '461568' + - '2999' - input: - product_category_id: co-1-4-12-1 + product_category_id: co-4-1-1-3 output: product_category_id: - - '461568' + - '2650' - input: - product_category_id: co-1-4-12-2 + product_category_id: co-4-1-1-4 output: product_category_id: - - '461568' + - '2728' - input: - product_category_id: co-1-4-12-3 + product_category_id: co-4-1-1-4-1 output: product_category_id: - - '461568' + - '2728' - input: - product_category_id: co-1-4-12-4 + product_category_id: co-4-1-1-4-2 output: product_category_id: - - '461568' + - '2728' - input: - product_category_id: co-1-4-12-5 + product_category_id: co-4-1-1-4-3 output: product_category_id: - - '461568' + - '2728' - input: - product_category_id: co-1-4-13 + product_category_id: co-4-1-1-4-4 output: product_category_id: - - '5532' + - '2728' - input: - product_category_id: co-1-4-14 + product_category_id: co-4-1-1-4-5 output: product_category_id: - - '296247' + - '2728' - input: - product_category_id: co-1-4-15 + product_category_id: co-4-1-1-4-6 output: product_category_id: - - '296249' + - '2728' - input: - product_category_id: co-1-4-16 + product_category_id: co-4-1-1-5 output: product_category_id: - - '503020' + - '2516' - input: - product_category_id: co-1-4-17 + product_category_id: co-4-1-2 output: product_category_id: - - '499998' + - '2520' - input: - product_category_id: co-1-4-18 + product_category_id: co-4-1-2-1 output: product_category_id: - - '5429' + - '2969' - input: - product_category_id: co-1-4-18-1 + product_category_id: co-4-1-2-2 output: product_category_id: - - '5429' + - '2543' - input: - product_category_id: co-1-4-18-2 + product_category_id: co-4-1-2-3 output: product_category_id: - - '5429' + - '3029' - input: - product_category_id: co-1-4-18-3 + product_category_id: co-4-1-2-4 output: product_category_id: - - '5429' + - '2815' - input: - product_category_id: co-1-4-18-4 + product_category_id: co-4-1-2-5 output: product_category_id: - - '5429' + - '2698' - input: - product_category_id: co-1-4-18-5 + product_category_id: co-4-1-3 output: product_category_id: - - '5429' + - '1622' - input: - product_category_id: co-1-4-18-6 + product_category_id: co-4-1-3-1 output: product_category_id: - - '5429' + - '1622' - input: - product_category_id: co-1-4-18-7 + product_category_id: co-4-1-3-2 output: product_category_id: - - '5429' + - '1622' - input: - product_category_id: co-1-4-18-8 + product_category_id: co-4-1-3-3 output: product_category_id: - - '5429' + - '1622' - input: - product_category_id: co-1-4-19 + product_category_id: co-4-1-3-4 output: product_category_id: - - '503019' + - '1622' - input: - product_category_id: co-1-4-2 + product_category_id: co-4-1-3-5 output: product_category_id: - - '6308' + - '1622' - input: - product_category_id: co-1-4-2-1 + product_category_id: co-4-1-3-6 output: product_category_id: - - '6308' + - '1622' - input: - product_category_id: co-1-4-2-2 + product_category_id: co-4-1-3-7 output: product_category_id: - - '6308' + - '1622' - input: - product_category_id: co-1-4-2-3 + product_category_id: co-4-1-3-8 output: product_category_id: - - '6308' + - '1622' - input: - product_category_id: co-1-4-2-4 + product_category_id: co-4-1-3-9 output: product_category_id: - - '6308' + - '1622' - input: - product_category_id: co-1-4-2-5 + product_category_id: co-4-1-3-10 output: product_category_id: - - '6308' + - '1622' - input: - product_category_id: co-1-4-2-6 + product_category_id: co-4-1-4 output: product_category_id: - - '6308' + - '2804' - input: - product_category_id: co-1-4-2-7 + product_category_id: co-4-1-5 output: product_category_id: - - '6308' + - '2600' - input: - product_category_id: co-1-4-2-8 + product_category_id: co-4-2 output: product_category_id: - - '6308' + - '42' - input: - product_category_id: co-1-4-2-9 + product_category_id: co-4-2-1 output: product_category_id: - - '6308' + - '5499' - input: - product_category_id: co-1-4-20 + product_category_id: co-4-2-2 output: product_category_id: - - '2987' + - '1548' - input: - product_category_id: co-1-4-21 + product_category_id: co-4-2-3 output: product_category_id: - - '500107' + - '1611' - input: - product_category_id: co-1-4-22 + product_category_id: co-4-2-4 output: product_category_id: - - '5937' + - '503018' - input: - product_category_id: co-1-4-23 + product_category_id: co-4-2-5 output: product_category_id: - - '8535' + - '2475' - input: - product_category_id: co-1-4-24 + product_category_id: co-4-2-5-1 output: product_category_id: - - '6307' + - '3056' - input: - product_category_id: co-1-4-25 + product_category_id: co-4-2-5-2 output: product_category_id: - - '2394' + - '5431' - input: - product_category_id: co-1-4-3 + product_category_id: co-4-2-5-3 output: product_category_id: - - '296246' + - '2490' - input: - product_category_id: co-1-4-4 + product_category_id: co-4-2-5-4 output: product_category_id: - - '298420' + - '5432' - input: - product_category_id: co-1-4-5 + product_category_id: co-4-2-6 output: product_category_id: - - '153' + - '2926' - input: - product_category_id: co-1-4-5-1 + product_category_id: co-4-2-7 output: product_category_id: - - '153' + - '503017' - input: - product_category_id: co-1-4-5-2 + product_category_id: co-4-2-8 output: product_category_id: - - '153' + - '2007' - input: - product_category_id: co-1-4-5-3 + product_category_id: co-4-2-8-1 output: product_category_id: - - '153' + - '2007' - input: - product_category_id: co-1-4-5-4 + product_category_id: co-4-2-8-2 output: product_category_id: - - '153' + - '2007' - input: - product_category_id: co-1-4-5-5 + product_category_id: co-4-2-8-3 output: product_category_id: - - '153' + - '2007' - input: - product_category_id: co-1-4-5-6 + product_category_id: co-4-2-8-4 output: product_category_id: - - '153' + - '2007' - input: - product_category_id: co-1-4-6 + product_category_id: co-4-2-8-5 output: product_category_id: - - '5479' + - '2007' - input: - product_category_id: co-1-4-7 + product_category_id: co-4-2-8-6 output: product_category_id: - - '148' + - '2007' - input: - product_category_id: co-1-4-8 + product_category_id: co-4-2-8-7 output: product_category_id: - - '500104' + - '2007' - input: - product_category_id: co-1-4-9 + product_category_id: co-4-2-8-8 output: product_category_id: - - '461567' + - '2007' - input: - product_category_id: co-1-5 + product_category_id: co-4-2-8-9 output: product_category_id: - - '160' + - '2007' - input: - product_category_id: co-1-5-1 + product_category_id: co-4-2-8-10 output: product_category_id: - - '5282' + - '2007' - input: - product_category_id: co-1-5-2 + product_category_id: co-4-3 output: product_category_id: - - '5545' + - '503735' - input: - product_category_id: co-1-5-2-1 + product_category_id: co-4-4 output: product_category_id: - - '5545' + - '4368' - input: - product_category_id: co-1-5-2-10 + product_category_id: el output: product_category_id: - - '5545' + - '222' - input: - product_category_id: co-1-5-2-2 + product_category_id: el-1 output: product_category_id: - - '5545' + - '3356' - input: - product_category_id: co-1-5-2-4 + product_category_id: el-1-1 output: product_category_id: - - '5545' + - '8085' - input: - product_category_id: co-1-5-2-5 + product_category_id: el-1-2 output: product_category_id: - - '5545' + - '3946' - input: - product_category_id: co-1-5-2-6 + product_category_id: el-1-2-2 output: product_category_id: - - '5545' + - '3946' - input: - product_category_id: co-1-5-2-7 + product_category_id: el-1-2-3 output: product_category_id: - - '5545' + - '3946' - input: - product_category_id: co-1-5-2-8 + product_category_id: el-1-2-4 output: product_category_id: - - '5545' + - '3946' - input: - product_category_id: co-1-5-2-9 + product_category_id: el-1-2-5 output: product_category_id: - - '5545' + - '3946' - input: - product_category_id: co-1-5-3 + product_category_id: el-1-3 output: product_category_id: - - '5283' + - '3140' - input: - product_category_id: co-1-5-4 + product_category_id: el-1-4 output: product_category_id: - - '5542' + - '3681' - input: - product_category_id: co-1-5-5 + product_category_id: el-1-5 output: product_category_id: - - '5284' + - '3676' - input: - product_category_id: co-1-5-6 + product_category_id: el-1-5-1 output: product_category_id: - - '4274' + - '3676' - input: - product_category_id: co-1-5-7 + product_category_id: el-1-5-2 output: product_category_id: - - '5543' + - '3676' - input: - product_category_id: co-1-6 + product_category_id: el-1-5-3 output: product_category_id: - - '4638' + - '3676' - input: - product_category_id: co-1-6-1 + product_category_id: el-1-5-4 output: product_category_id: - - '4640' + - '3676' - input: - product_category_id: co-1-6-2 + product_category_id: el-1-5-5 output: product_category_id: - - '4639' + - '3676' - input: - product_category_id: co-1-6-3 + product_category_id: el-1-6 output: product_category_id: - - '3035' + - '3117' - input: - product_category_id: co-1-6-4 + product_category_id: el-2 output: product_category_id: - - '503726' + - '223' - input: - product_category_id: co-1-6-5 + product_category_id: el-2-1 output: product_category_id: - - '503016' + - '1420' - input: - product_category_id: co-1-7 + product_category_id: el-2-1-1 output: product_category_id: - - '150' + - '503008' - input: - product_category_id: co-1-7-1 + product_category_id: el-2-1-1-1 output: product_category_id: - - '150' + - '503008' - input: - product_category_id: co-1-7-10 + product_category_id: el-2-1-1-2 output: product_category_id: - - '150' + - '503008' - input: - product_category_id: co-1-7-2 + product_category_id: el-2-1-2 output: product_category_id: - - '150' + - '505797' - input: - product_category_id: co-1-7-3 + product_category_id: el-2-1-2-3 output: product_category_id: - - '150' + - '505797' - input: - product_category_id: co-1-7-4 + product_category_id: el-2-1-2-4 output: product_category_id: - - '150' + - '503004' - input: - product_category_id: co-1-7-5 + product_category_id: el-2-1-2-4-1 output: product_category_id: - - '150' + - '503004' - input: - product_category_id: co-1-7-6 + product_category_id: el-2-1-2-4-2 output: product_category_id: - - '150' + - '503004' - input: - product_category_id: co-1-7-7 + product_category_id: el-2-1-2-5 output: product_category_id: - - '150' + - '505797' - input: - product_category_id: co-1-7-9 + product_category_id: el-2-1-3 output: product_category_id: - - '150' + - '5395' - input: - product_category_id: co-2 + product_category_id: el-2-1-3-1 output: product_category_id: - - '142' + - '5395' - input: - product_category_id: co-2-1 + product_category_id: el-2-1-3-2 output: product_category_id: - - '499976' + - '5396' - input: - product_category_id: co-2-2 + product_category_id: el-2-1-4 output: product_category_id: - - '152' + - '3306' - input: - product_category_id: co-2-2-1 + product_category_id: el-2-1-4-1 output: product_category_id: - - '152' + - '3306' - input: - product_category_id: co-2-2-2 + product_category_id: el-2-1-4-2 output: product_category_id: - - '152' + - '3306' - input: - product_category_id: co-2-2-4 + product_category_id: el-2-1-4-3 output: product_category_id: - - '152' + - '3306' - input: - product_category_id: co-2-2-5 + product_category_id: el-2-1-5 output: product_category_id: - - '152' + - '3912' - input: - product_category_id: co-2-2-6 + product_category_id: el-2-1-6 output: product_category_id: - - '152' + - '232' - input: - product_category_id: co-2-2-7 + product_category_id: el-2-1-6-1 output: product_category_id: - - '152' + - '7566' - input: - product_category_id: co-2-2-8 + product_category_id: el-2-1-6-2 output: product_category_id: - - '152' + - '3055' - input: - product_category_id: co-2-2-9 + product_category_id: el-2-1-7 output: product_category_id: - - '152' + - '239' - input: - product_category_id: co-2-3 + product_category_id: el-2-1-7-1 output: product_category_id: - - '4024' + - '239' - input: - product_category_id: co-2-4 + product_category_id: el-2-1-8 output: product_category_id: - - '154' + - '7163' - input: - product_category_id: co-2-4-1 + product_category_id: el-2-1-8-1 output: product_category_id: - - '154' + - '500112' - input: - product_category_id: co-2-4-2 + product_category_id: el-2-1-8-2 output: product_category_id: - - '154' + - '500120' - input: - product_category_id: co-2-4-3 + product_category_id: el-2-1-8-3 output: product_category_id: - - '154' + - '8047' - input: - product_category_id: co-2-4-4 + product_category_id: el-2-1-8-4 output: product_category_id: - - '154' + - '8049' - input: - product_category_id: co-2-4-5 + product_category_id: el-2-1-8-5 output: product_category_id: - - '154' + - '500119' - input: - product_category_id: co-2-4-6 + product_category_id: el-2-1-9 output: product_category_id: - - '154' + - '2372' - input: - product_category_id: co-2-5 + product_category_id: el-2-1-9-1 output: product_category_id: - - '362' + - '2372' - input: - product_category_id: co-2-6 + product_category_id: el-2-1-9-2 output: product_category_id: - - '5402' + - '2372' - input: - product_category_id: co-2-7 + product_category_id: el-2-1-9-3 output: product_category_id: - - '155' + - '2372' - input: - product_category_id: co-2-7-1 + product_category_id: el-2-1-9-4 output: product_category_id: - - '155' + - '2372' - input: - product_category_id: co-2-7-2 + product_category_id: el-2-2 output: product_category_id: - - '155' + - '2165' - input: - product_category_id: co-2-7-4 + product_category_id: el-2-2-1 output: product_category_id: - - '155' + - '241' - input: - product_category_id: co-2-7-5 + product_category_id: el-2-2-2 output: product_category_id: - - '155' + - '224' - input: - product_category_id: co-2-7-6 + product_category_id: el-2-2-2-1 output: product_category_id: - - '155' + - '4493' - input: - product_category_id: co-2-7-7 + product_category_id: el-2-2-2-2 output: product_category_id: - - '155' + - '5381' - input: - product_category_id: co-2-8 + product_category_id: el-2-2-3 output: product_category_id: - - '312' + - '236' - input: - product_category_id: co-3 + product_category_id: el-2-2-4 output: product_category_id: - - '156' + - '5129' - input: - product_category_id: co-3-1 + product_category_id: el-2-2-4-1 output: product_category_id: - - '157' + - '5130' - input: - product_category_id: co-3-2 + product_category_id: el-2-2-4-2 output: product_category_id: - - '4164' + - '4035' - input: - product_category_id: co-3-3 + product_category_id: el-2-2-5 output: product_category_id: - - '161' + - '6545' - input: - product_category_id: co-3-4 + product_category_id: el-2-2-6 output: product_category_id: - - '4040' + - '6546' - input: - product_category_id: co-3-4-1 + product_category_id: el-2-2-7 output: product_category_id: - - '4136' + - '505771' - input: - product_category_id: co-3-4-2 + product_category_id: el-2-2-7-1 output: product_category_id: - - '165' + - '543626' - input: - product_category_id: co-3-4-2-1 + product_category_id: el-2-2-7-1-1 output: product_category_id: - - '165' + - '543626' - input: - product_category_id: co-3-4-2-2 + product_category_id: el-2-2-7-1-2 output: product_category_id: - - '165' + - '543626' - input: - product_category_id: co-3-4-2-3 + product_category_id: el-2-2-7-1-3 output: product_category_id: - - '165' + - '543626' - input: - product_category_id: co-3-4-2-4 + product_category_id: el-2-2-7-1-4 output: product_category_id: - - '165' + - '543626' - input: - product_category_id: co-3-4-2-5 + product_category_id: el-2-2-7-1-5 output: product_category_id: - - '165' + - '543626' - input: - product_category_id: co-3-4-2-6 + product_category_id: el-2-2-7-2 output: product_category_id: - - '165' + - '543627' - input: - product_category_id: co-3-4-3 + product_category_id: el-2-2-8 output: product_category_id: - - '1695' + - '234' - input: - product_category_id: co-4 + product_category_id: el-2-2-9 output: product_category_id: - - '39' + - '246' - input: - product_category_id: co-4-1 + product_category_id: el-2-2-9-1 output: product_category_id: - - '41' + - '5435' - input: - product_category_id: co-4-1-1 + product_category_id: el-2-2-9-2 output: product_category_id: - - '2234' + - '247' - input: - product_category_id: co-4-1-1-1 + product_category_id: el-2-2-9-3 output: product_category_id: - - '2625' + - '248' - input: - product_category_id: co-4-1-1-2 + product_category_id: el-2-2-9-4 output: product_category_id: - - '2999' + - '5597' - input: - product_category_id: co-4-1-1-3 + product_category_id: el-2-2-9-5 output: product_category_id: - - '2650' + - '3945' - input: - product_category_id: co-4-1-1-4 + product_category_id: el-2-2-9-6 output: product_category_id: - - '2728' + - '5596' - input: - product_category_id: co-4-1-1-4-1 + product_category_id: el-2-2-9-7 output: product_category_id: - - '2728' + - '5369' - input: - product_category_id: co-4-1-1-4-2 + product_category_id: el-2-2-10 output: product_category_id: - - '2728' + - '249' - input: - product_category_id: co-4-1-1-4-3 + product_category_id: el-2-2-11 output: product_category_id: - - '2728' + - '505298' - input: - product_category_id: co-4-1-1-4-4 + product_category_id: el-2-3 output: product_category_id: - - '2728' + - '242' - input: - product_category_id: co-4-1-1-4-5 + product_category_id: el-2-3-1 output: product_category_id: - - '2728' + - '225' - input: - product_category_id: co-4-1-1-4-6 + product_category_id: el-2-3-2 output: product_category_id: - - '2728' + - '242' - input: - product_category_id: co-4-1-1-5 + product_category_id: el-2-3-3 output: product_category_id: - - '2516' + - '252' - input: - product_category_id: co-4-1-2 + product_category_id: el-2-3-4 output: product_category_id: - - '2520' + - '4652' - input: - product_category_id: co-4-1-2-1 + product_category_id: el-2-3-5 output: product_category_id: - - '2969' + - '230' - input: - product_category_id: co-4-1-2-2 + product_category_id: el-2-3-6 output: product_category_id: - - '2543' + - '5434' - input: - product_category_id: co-4-1-2-3 + product_category_id: el-2-3-7 output: product_category_id: - - '3029' + - '6886' - input: - product_category_id: co-4-1-2-4 + product_category_id: el-2-3-7-1 output: product_category_id: - - '2815' + - '6886' - input: - product_category_id: co-4-1-2-5 + product_category_id: el-2-3-7-2 output: product_category_id: - - '2698' + - '6886' - input: - product_category_id: co-4-1-3 + product_category_id: el-2-3-7-3 output: product_category_id: - - '1622' + - '6886' - input: - product_category_id: co-4-1-3-1 + product_category_id: el-2-3-7-4 output: product_category_id: - - '1622' + - '6886' - input: - product_category_id: co-4-1-3-10 + product_category_id: el-2-3-7-5 output: product_category_id: - - '1622' + - '6886' - input: - product_category_id: co-4-1-3-2 + product_category_id: el-2-3-7-6 output: product_category_id: - - '1622' + - '6886' - input: - product_category_id: co-4-1-3-3 + product_category_id: el-2-3-8 output: product_category_id: - - '1622' + - '8271' - input: - product_category_id: co-4-1-3-4 + product_category_id: el-2-3-9 output: product_category_id: - - '1622' + - '251' - input: - product_category_id: co-4-1-3-5 + product_category_id: el-2-3-10 output: product_category_id: - - '1622' + - '256' - input: - product_category_id: co-4-1-3-6 + product_category_id: el-2-3-11 output: product_category_id: - - '1622' + - '244' - input: - product_category_id: co-4-1-3-7 + product_category_id: el-2-4 output: product_category_id: - - '1622' + - '8159' - input: - product_category_id: co-4-1-3-8 + product_category_id: el-2-5 output: product_category_id: - - '1622' + - '4921' - input: - product_category_id: co-4-1-3-9 + product_category_id: el-2-5-1 output: product_category_id: - - '1622' + - '4922' - input: - product_category_id: co-4-1-4 + product_category_id: el-2-5-2 output: product_category_id: - - '2804' + - '4923' - input: - product_category_id: co-4-1-5 + product_category_id: el-2-6 output: product_category_id: - - '2600' + - '2154' - input: - product_category_id: co-4-2 + product_category_id: el-2-7 output: product_category_id: - - '42' + - '3727' - input: - product_category_id: co-4-2-1 + product_category_id: el-2-7-1 output: product_category_id: - - '5499' + - '3242' - input: - product_category_id: co-4-2-2 + product_category_id: el-3 output: product_category_id: - - '1548' + - '3702' - input: - product_category_id: co-4-2-3 + product_category_id: el-3-1 output: product_category_id: - - '1611' + - '500027' - input: - product_category_id: co-4-2-4 + product_category_id: el-3-1-1 output: product_category_id: - - '503018' + - '500027' - input: - product_category_id: co-4-2-5 + product_category_id: el-3-1-2 output: product_category_id: - - '2475' + - '500027' - input: - product_category_id: co-4-2-5-1 + product_category_id: el-3-1-3 output: product_category_id: - - '3056' + - '500027' - input: - product_category_id: co-4-2-5-2 + product_category_id: el-3-2 output: product_category_id: - - '5431' + - '7259' - input: - product_category_id: co-4-2-5-3 + product_category_id: el-3-3 output: product_category_id: - - '2490' + - '3889' - input: - product_category_id: co-4-2-5-4 + product_category_id: el-3-3-1 output: product_category_id: - - '5432' + - '4010' - input: - product_category_id: co-4-2-6 + product_category_id: el-3-4 output: product_category_id: - - '2926' + - '7258' - input: - product_category_id: co-4-2-7 + product_category_id: el-3-4-1 output: product_category_id: - - '503017' + - '7258' - input: - product_category_id: co-4-2-8 + product_category_id: el-3-4-2 output: product_category_id: - - '2007' + - '7258' - input: - product_category_id: co-4-2-8-1 + product_category_id: el-3-4-3 output: product_category_id: - - '2007' + - '7258' - input: - product_category_id: co-4-2-8-10 + product_category_id: el-3-4-4 output: product_category_id: - - '2007' + - '7258' - input: - product_category_id: co-4-2-8-2 + product_category_id: el-3-4-5 output: product_category_id: - - '2007' + - '7258' - input: - product_category_id: co-4-2-8-3 + product_category_id: el-3-5 output: product_category_id: - - '2007' + - '3635' - input: - product_category_id: co-4-2-8-4 + product_category_id: el-3-5-1 output: product_category_id: - - '2007' + - '3220' - input: - product_category_id: co-4-2-8-5 + product_category_id: el-3-5-2 output: product_category_id: - - '2007' + - '7260' - input: - product_category_id: co-4-2-8-6 + product_category_id: el-3-5-3 output: product_category_id: - - '2007' + - '3121' - input: - product_category_id: co-4-2-8-7 + product_category_id: el-3-5-4 output: product_category_id: - - '2007' + - '3424' - input: - product_category_id: co-4-2-8-8 + product_category_id: el-3-6 output: product_category_id: - - '2007' + - '7264' - input: - product_category_id: co-4-2-8-9 + product_category_id: el-3-6-1 output: product_category_id: - - '2007' + - '298419' - input: - product_category_id: co-4-3 + product_category_id: el-3-6-2 output: product_category_id: - - '503735' + - '499898' - input: - product_category_id: co-4-4 + product_category_id: el-3-6-2-1 output: product_category_id: - - '4368' + - '499899' - input: - product_category_id: el + product_category_id: el-3-6-2-2 output: product_category_id: - - '222' + - '8546' - input: - product_category_id: el-1 + product_category_id: el-3-6-2-3 output: product_category_id: - - '3356' + - '289' - input: - product_category_id: el-1-1 + product_category_id: el-3-6-3 output: product_category_id: - - '8085' + - '3416' - input: - product_category_id: el-1-2 + product_category_id: el-3-6-4 output: product_category_id: - - '3946' + - '499889' - input: - product_category_id: el-1-2-2 + product_category_id: el-3-6-5 output: product_category_id: - - '3946' + - '8545' - input: - product_category_id: el-1-2-3 + product_category_id: el-3-6-6 output: product_category_id: - - '3946' + - '8549' - input: - product_category_id: el-1-2-4 + product_category_id: el-3-6-7 output: product_category_id: - - '3946' + - '8544' - input: - product_category_id: el-1-2-5 + product_category_id: el-3-6-8 output: product_category_id: - - '3946' + - '499675' - input: - product_category_id: el-1-3 + product_category_id: el-3-6-9 output: product_category_id: - - '3140' + - '8516' - input: - product_category_id: el-1-4 + product_category_id: el-3-7 output: product_category_id: - - '3681' + - '3991' - input: - product_category_id: el-1-5 + product_category_id: el-3-7-1 output: product_category_id: - - '3676' + - '3632' - input: - product_category_id: el-1-5-1 + product_category_id: el-3-7-2 output: product_category_id: - - '3676' + - '7257' - input: - product_category_id: el-1-5-2 + product_category_id: el-3-7-3 output: product_category_id: - - '3676' + - '3949' - input: - product_category_id: el-1-5-3 + product_category_id: el-3-7-4 output: product_category_id: - - '3676' + - '3094' - input: - product_category_id: el-1-5-4 + product_category_id: el-4 output: product_category_id: - - '3676' + - '262' - input: - product_category_id: el-1-5-5 + product_category_id: el-4-1 output: product_category_id: - - '3676' + - '266' - input: - product_category_id: el-1-6 + product_category_id: el-4-2 output: product_category_id: - - '3117' + - '5275' - input: - product_category_id: el-10 + product_category_id: el-4-3 output: product_category_id: - - '6544' + - '263' - input: - product_category_id: el-11 + product_category_id: el-4-3-1 output: product_category_id: - - '340' + - '263' - input: - product_category_id: el-11-1 + product_category_id: el-4-3-2 output: product_category_id: - - '1550' + - '263' - input: - product_category_id: el-11-2 + product_category_id: el-4-4 output: product_category_id: - - '8134' + - '2471' - input: - product_category_id: el-11-3 + product_category_id: el-4-4-1 output: product_category_id: - - '2178' + - '2471' - input: - product_category_id: el-11-4 + product_category_id: el-4-4-2 output: product_category_id: - - '1552' + - '2106' - input: - product_category_id: el-11-5 + product_category_id: el-4-4-3 output: product_category_id: - - '4450' + - '4415' - input: - product_category_id: el-11-6 + product_category_id: el-4-4-4 output: product_category_id: - - '8473' + - '273' - input: - product_category_id: el-12 + product_category_id: el-4-5 output: product_category_id: - - '342' + - '5404' - input: - product_category_id: el-12-1 + product_category_id: el-4-5-1 output: product_category_id: - - '1350' + - '5404' - input: - product_category_id: el-12-1-1 + product_category_id: el-4-6 output: product_category_id: - - '5659' + - '360' - input: - product_category_id: el-12-1-2 + product_category_id: el-4-7 output: product_category_id: - - '2358' + - '268' - input: - product_category_id: el-12-1-3 + product_category_id: el-4-8 output: product_category_id: - - '5496' + - '270' - input: - product_category_id: el-12-1-4 + product_category_id: el-4-8-1 output: product_category_id: - - '5497' + - '4666' - input: - product_category_id: el-12-10 + product_category_id: el-4-8-2 output: product_category_id: - - '2121' + - '271' - input: - product_category_id: el-12-2 + product_category_id: el-4-8-3 output: product_category_id: - - '2479' + - '272' - input: - product_category_id: el-12-3 + product_category_id: el-4-8-4 output: product_category_id: - - '2455' + - '264' - input: - product_category_id: el-12-3-1 + product_category_id: el-4-8-4-1 output: product_category_id: - - '2455' + - '8111' - input: - product_category_id: el-12-3-2 + product_category_id: el-4-8-4-1-1 output: product_category_id: - - '2455' + - '8111' - input: - product_category_id: el-12-3-3 + product_category_id: el-4-8-4-1-2 output: product_category_id: - - '2455' + - '8111' - input: - product_category_id: el-12-3-4 + product_category_id: el-4-8-4-1-3 output: product_category_id: - - '2455' + - '8111' - input: - product_category_id: el-12-3-5 + product_category_id: el-4-8-4-1-4 output: product_category_id: - - '2455' + - '8111' - input: - product_category_id: el-12-3-6 + product_category_id: el-4-8-4-2 output: product_category_id: - - '2455' + - '2353' - input: - product_category_id: el-12-3-7 + product_category_id: el-4-8-4-3 output: product_category_id: - - '2455' + - '4550' - input: - product_category_id: el-12-3-8 + product_category_id: el-4-8-4-4 output: product_category_id: - - '2455' + - '6030' - input: - product_category_id: el-12-3-9 + product_category_id: el-4-8-4-4-1 output: product_category_id: - - '2455' + - '543515' - input: - product_category_id: el-12-4 + product_category_id: el-4-8-4-4-2 output: product_category_id: - - '5576' + - '543516' - input: - product_category_id: el-12-5 + product_category_id: el-4-8-4-5 output: product_category_id: - - '343' + - '7347' - input: - product_category_id: el-12-6 + product_category_id: el-4-8-4-6 output: product_category_id: - - '290' + - '5566' - input: - product_category_id: el-12-7 + product_category_id: el-4-8-4-7 output: product_category_id: - - '3742' + - '499916' - input: - product_category_id: el-12-8 + product_category_id: el-4-8-5 output: product_category_id: - - '6508' + - '267' - input: - product_category_id: el-12-9 + product_category_id: el-4-8-6 output: product_category_id: - - '3425' + - '1924' - input: - product_category_id: el-13 + product_category_id: el-4-8-7 output: product_category_id: - - '345' + - '265' - input: - product_category_id: el-13-1 + product_category_id: el-4-8-7-1 output: product_category_id: - - '499682' + - '269' - input: - product_category_id: el-13-1-1 + product_category_id: el-4-9 output: product_category_id: - - '499682' + - '274' - input: - product_category_id: el-13-1-2 + product_category_id: el-5 output: product_category_id: - - '499682' + - '1801' - input: - product_category_id: el-13-1-3 + product_category_id: el-5-1 output: product_category_id: - - '499682' + - '7395' - input: - product_category_id: el-13-1-4 + product_category_id: el-5-2 output: product_category_id: - - '499682' + - '2182' - input: - product_category_id: el-13-1-5 + product_category_id: el-5-2-1 output: product_category_id: - - '499682' + - '503001' - input: - product_category_id: el-13-1-6 + product_category_id: el-5-2-2 output: product_category_id: - - '499682' + - '2205' - input: - product_category_id: el-13-1-7 + product_category_id: el-5-3 output: product_category_id: - - '499682' + - '1977' - input: - product_category_id: el-13-2 + product_category_id: el-5-4 output: product_category_id: - - '6865' + - '1337' - input: - product_category_id: el-13-3 + product_category_id: el-5-5 output: product_category_id: - - '502990' + - '1544' - input: - product_category_id: el-13-3-1 + product_category_id: el-6 output: product_category_id: - - '5258' + - '278' - input: - product_category_id: el-13-3-1-1 + product_category_id: el-6-1 output: product_category_id: - - '5259' + - '5254' - input: - product_category_id: el-13-3-1-2 + product_category_id: el-6-2 output: product_category_id: - - '5266' + - '331' - input: - product_category_id: el-13-3-1-2-1 + product_category_id: el-6-3 output: product_category_id: - - '5266' + - '325' - input: - product_category_id: el-13-3-1-2-2 + product_category_id: el-6-4 output: product_category_id: - - '5266' + - '298' - input: - product_category_id: el-13-3-1-2-3 + product_category_id: el-6-4-1 output: product_category_id: - - '5266' + - '5256' - input: - product_category_id: el-13-3-1-2-4 + product_category_id: el-6-4-2 output: product_category_id: - - '5266' + - '3539' - input: - product_category_id: el-13-3-1-3 + product_category_id: el-6-4-3 output: product_category_id: - - '5262' + - '3769' - input: - product_category_id: el-13-3-1-4 + product_category_id: el-6-5 output: product_category_id: - - '5260' + - '5255' - input: - product_category_id: el-13-3-1-5 + product_category_id: el-6-6 output: product_category_id: - - '5261' + - '328' - input: - product_category_id: el-13-3-1-6 + product_category_id: el-6-7 output: product_category_id: - - '7362' + - '500002' - input: - product_category_id: el-13-3-1-7 + product_category_id: el-6-8 output: product_category_id: - - '356' + - '4745' - input: - product_category_id: el-13-3-2 + product_category_id: el-6-9 output: product_category_id: - - '5265' + - '8539' - input: - product_category_id: el-13-3-3 + product_category_id: el-6-9-1 output: product_category_id: - - '1683' + - '543668' - input: - product_category_id: el-13-3-4 + product_category_id: el-6-9-2 output: product_category_id: - - '5459' + - '543669' - input: - product_category_id: el-13-3-5 + product_category_id: el-6-10 output: product_category_id: - - '502990' + - '502995' - input: - product_category_id: el-13-3-6 + product_category_id: el-7 output: product_category_id: - - '502990' + - '2082' - input: - product_category_id: el-13-3-7 + product_category_id: el-7-1 output: product_category_id: - - '502991' + - '258' - input: - product_category_id: el-13-4 + product_category_id: el-7-1-1 output: product_category_id: - - '500106' + - '4463' - input: - product_category_id: el-13-5 + product_category_id: el-7-1-2 output: product_category_id: - - '284' + - '146' - input: - product_category_id: el-13-5-1 + product_category_id: el-7-1-3 output: product_category_id: - - '284' + - '7182' - input: - product_category_id: el-13-5-2 + product_category_id: el-7-2 output: product_category_id: - - '284' + - '5476' - input: - product_category_id: el-13-6 + product_category_id: el-7-2-1 output: product_category_id: - - '306' + - '5477' - input: - product_category_id: el-13-6-1 + product_category_id: el-7-2-2 output: product_category_id: - - '306' + - '5478' - input: - product_category_id: el-13-6-2 + product_category_id: el-7-2-3 output: product_category_id: - - '306' + - '6016' - input: - product_category_id: el-13-6-3 + product_category_id: el-7-3 output: product_category_id: - - '306' + - '1718' - input: - product_category_id: el-13-6-4 + product_category_id: el-7-4 output: product_category_id: - - '306' + - '8156' - input: - product_category_id: el-13-6-5 + product_category_id: el-7-4-1 output: product_category_id: - - '306' + - '499944' - input: - product_category_id: el-13-6-6 + product_category_id: el-7-4-2 output: product_category_id: - - '306' + - '8164' - input: - product_category_id: el-14 + product_category_id: el-7-4-3 output: product_category_id: - - '912' + - '499945' - input: - product_category_id: el-15 + product_category_id: el-7-5 output: product_category_id: - - '500091' + - '367' - input: - product_category_id: el-16 + product_category_id: el-7-6 output: product_category_id: - - '4488' + - '3328' - input: - product_category_id: el-17 + product_category_id: el-7-6-1 output: product_category_id: - - '386' + - '3764' - input: - product_category_id: el-17-1 + product_category_id: el-7-6-2 output: product_category_id: - - '305' + - '500036' - input: - product_category_id: el-17-10 + product_category_id: el-7-6-3 output: product_category_id: - - '5450' + - '6402' - input: - product_category_id: el-17-2 + product_category_id: el-7-6-4 output: product_category_id: - - '396' + - '5273' - input: - product_category_id: el-17-2-1 + product_category_id: el-7-6-5 output: product_category_id: - - '397' + - '499686' - input: - product_category_id: el-17-2-2 + product_category_id: el-7-6-6 output: product_category_id: - - '398' + - '6780' - input: - product_category_id: el-17-2-3 + product_category_id: el-7-6-7 output: product_category_id: - - '399' + - '4016' - input: - product_category_id: el-17-3 + product_category_id: el-7-7 output: product_category_id: - - '5561' + - '259' - input: - product_category_id: el-17-3-1 + product_category_id: el-7-7-1 output: product_category_id: - - '5562' + - '1867' - input: - product_category_id: el-17-3-2 + product_category_id: el-7-7-1-1 output: product_category_id: - - '401' + - '1867' - input: - product_category_id: el-17-4 + product_category_id: el-7-7-1-2 output: product_category_id: - - '404' + - '1867' - input: - product_category_id: el-17-5 + product_category_id: el-7-7-1-3 output: product_category_id: - - '2027' + - '1867' - input: - product_category_id: el-17-5-1 + product_category_id: el-7-7-1-4 output: product_category_id: - - '4760' + - '1867' - input: - product_category_id: el-17-5-2 + product_category_id: el-7-7-2 output: product_category_id: - - '283' + - '259' - input: - product_category_id: el-17-5-2-1 + product_category_id: el-7-7-3 output: product_category_id: - - '5516' + - '3461' - input: - product_category_id: el-17-5-3 + product_category_id: el-7-7-4 output: product_category_id: - - '393' + - '1480' - input: - product_category_id: el-17-5-3-1 + product_category_id: el-7-7-4-1 output: product_category_id: - - '5599' + - '1480' - input: - product_category_id: el-17-5-3-2 + product_category_id: el-7-7-4-2 output: product_category_id: - - '4570' + - '1480' - input: - product_category_id: el-17-5-3-3 + product_category_id: el-7-7-5 output: product_category_id: - - '395' + - '500035' - input: - product_category_id: el-17-5-3-4 + product_category_id: el-7-7-5-1 output: product_category_id: - - '5257' + - '500035' - input: - product_category_id: el-17-5-3-5 + product_category_id: el-7-7-5-2 output: product_category_id: - - '394' + - '500035' - input: - product_category_id: el-17-5-4 + product_category_id: el-7-7-6 output: product_category_id: - - '2145' + - '1763' - input: - product_category_id: el-17-5-5 + product_category_id: el-7-7-7 output: product_category_id: - - '403' + - '3541' - input: - product_category_id: el-17-5-5-1 + product_category_id: el-7-8 output: product_category_id: - - '4458' + - '279' - input: - product_category_id: el-17-5-5-2 + product_category_id: el-7-8-1 output: product_category_id: - - '5503' + - '500040' - input: - product_category_id: el-17-5-5-3 + product_category_id: el-7-8-2 output: product_category_id: - - '5471' + - '7530' - input: - product_category_id: el-17-5-5-4 + product_category_id: el-7-8-3 output: product_category_id: - - '43616' + - '5489' - input: - product_category_id: el-17-6 + product_category_id: el-7-8-4 output: product_category_id: - - '1368' + - '280' - input: - product_category_id: el-17-7 + product_category_id: el-7-8-4-1 output: product_category_id: - - '1634' + - '4736' - input: - product_category_id: el-17-8 + product_category_id: el-7-8-4-1-1 output: product_category_id: - - '387' + - '4738' - input: - product_category_id: el-17-8-1 + product_category_id: el-7-8-4-2 output: product_category_id: - - '390' + - '4737' - input: - product_category_id: el-17-8-2 + product_category_id: el-7-8-4-2-1 output: product_category_id: - - '388' + - '4739' - input: - product_category_id: el-17-8-3 + product_category_id: el-7-8-5 output: product_category_id: - - '387' + - '6291' - input: - product_category_id: el-17-8-4 + product_category_id: el-7-8-6 output: product_category_id: - - '5276' + - '6979' - input: - product_category_id: el-17-8-5 + product_category_id: el-7-8-7 output: product_category_id: - - '391' + - '300' - input: - product_category_id: el-17-9 + product_category_id: el-7-8-8 output: product_category_id: - - '5278' + - '1993' - input: - product_category_id: el-18 + product_category_id: el-7-8-9 output: product_category_id: - - '1270' + - '5669' - input: - product_category_id: el-18-1 + product_category_id: el-7-8-10 output: product_category_id: - - '1270' + - '5308' - input: - product_category_id: el-18-3 + product_category_id: el-7-8-11 output: product_category_id: - - '1505' + - '499956' - input: - product_category_id: el-18-3-2 + product_category_id: el-7-9 output: product_category_id: - - '1505' + - '285' - input: - product_category_id: el-18-4 + product_category_id: el-7-9-1 output: product_category_id: - - '2070' + - '6932' - input: - product_category_id: el-18-4-1 + product_category_id: el-7-9-2 output: product_category_id: - - '2070' + - '8158' - input: - product_category_id: el-18-4-2 + product_category_id: el-7-9-3 output: product_category_id: - - '2070' + - '291' - input: - product_category_id: el-18-4-3 + product_category_id: el-7-9-4 output: product_category_id: - - '2070' + - '292' - input: - product_category_id: el-19 + product_category_id: el-7-9-5 output: product_category_id: - - '1294' + - '293' - input: - product_category_id: el-2 + product_category_id: el-7-9-6 output: product_category_id: - - '223' + - '294' - input: - product_category_id: el-2-1 + product_category_id: el-7-9-7 output: product_category_id: - - '1420' + - '295' - input: - product_category_id: el-2-1-1 + product_category_id: el-7-9-8 output: product_category_id: - - '503008' + - '296' - input: - product_category_id: el-2-1-1-1 + product_category_id: el-7-9-9 output: product_category_id: - - '503008' + - '8162' - input: - product_category_id: el-2-1-1-2 + product_category_id: el-7-9-9-1 output: product_category_id: - - '503008' + - '8163' - input: - product_category_id: el-2-1-2 + product_category_id: el-7-9-10 output: product_category_id: - - '505797' + - '287' - input: - product_category_id: el-2-1-2-3 + product_category_id: el-7-9-10-1 output: product_category_id: - - '505797' + - '286' - input: - product_category_id: el-2-1-2-4 + product_category_id: el-7-9-10-2 output: product_category_id: - - '503004' + - '505299' - input: - product_category_id: el-2-1-2-4-1 + product_category_id: el-7-9-10-3 output: product_category_id: - - '503004' + - '503755' - input: - product_category_id: el-2-1-2-4-2 + product_category_id: el-7-9-10-4 output: product_category_id: - - '503004' + - '1487' - input: - product_category_id: el-2-1-2-5 + product_category_id: el-7-9-10-5 output: product_category_id: - - '505797' + - '297' - input: - product_category_id: el-2-1-3 + product_category_id: el-7-9-11 output: product_category_id: - - '5395' + - '6475' - input: - product_category_id: el-2-1-3-1 + product_category_id: el-7-9-11-1 output: product_category_id: - - '5395' + - '6476' - input: - product_category_id: el-2-1-3-2 + product_category_id: el-7-9-11-2 output: product_category_id: - - '5396' + - '8008' - input: - product_category_id: el-2-1-4 + product_category_id: el-7-9-11-2-1 output: product_category_id: - - '3306' + - '8008' - input: - product_category_id: el-2-1-4-1 + product_category_id: el-7-9-11-2-2 output: product_category_id: - - '3306' + - '8008' - input: - product_category_id: el-2-1-4-2 + product_category_id: el-7-9-11-2-3 output: product_category_id: - - '3306' + - '8008' - input: - product_category_id: el-2-1-4-3 + product_category_id: el-7-9-11-3 output: product_category_id: - - '3306' + - '503003' - input: - product_category_id: el-2-1-5 + product_category_id: el-7-9-11-4 output: product_category_id: - - '3912' + - '500052' - input: - product_category_id: el-2-1-6 + product_category_id: el-7-9-11-4-1 output: product_category_id: - - '232' + - '500052' - input: - product_category_id: el-2-1-6-1 + product_category_id: el-7-9-11-4-2 output: product_category_id: - - '7566' + - '500052' - input: - product_category_id: el-2-1-6-2 + product_category_id: el-7-9-11-4-3 output: product_category_id: - - '3055' + - '500052' - input: - product_category_id: el-2-1-7 + product_category_id: el-7-9-12 output: product_category_id: - - '239' + - '1928' - input: - product_category_id: el-2-1-7-1 + product_category_id: el-7-9-12-1 output: product_category_id: - - '239' + - '139' - input: - product_category_id: el-2-1-8 + product_category_id: el-7-9-12-2 output: product_category_id: - - '7163' + - '5309' - input: - product_category_id: el-2-1-8-1 + product_category_id: el-7-9-12-3 output: product_category_id: - - '500112' + - '505801' - input: - product_category_id: el-2-1-8-2 + product_category_id: el-7-9-12-4 output: product_category_id: - - '500120' + - '5366' - input: - product_category_id: el-2-1-8-3 + product_category_id: el-7-9-12-5 output: product_category_id: - - '8047' + - '301' - input: - product_category_id: el-2-1-8-4 + product_category_id: el-7-9-12-5-1 output: product_category_id: - - '8049' + - '543591' - input: - product_category_id: el-2-1-8-5 + product_category_id: el-7-9-12-5-2 output: product_category_id: - - '500119' + - '543590' - input: - product_category_id: el-2-1-9 + product_category_id: el-7-9-12-5-3 output: product_category_id: - - '2372' + - '543589' - input: - product_category_id: el-2-1-9-1 + product_category_id: el-7-9-12-5-4 output: product_category_id: - - '2372' + - '543588' - input: - product_category_id: el-2-1-9-2 + product_category_id: el-7-9-12-5-5 output: product_category_id: - - '2372' + - '543593' - input: - product_category_id: el-2-1-9-3 + product_category_id: el-7-9-12-6 output: product_category_id: - - '2372' + - '499950' - input: - product_category_id: el-2-1-9-4 + product_category_id: el-7-9-12-7 output: product_category_id: - - '2372' + - '302' - input: - product_category_id: el-2-2 + product_category_id: el-7-9-12-8 output: product_category_id: - - '2165' + - '303' - input: - product_category_id: el-2-2-1 + product_category_id: el-7-9-12-9 output: product_category_id: - - '241' + - '1562' - input: - product_category_id: el-2-2-10 + product_category_id: el-7-9-12-10 output: product_category_id: - - '249' + - '3580' - input: - product_category_id: el-2-2-11 + product_category_id: el-7-9-12-11 output: product_category_id: - - '505298' + - '304' - input: - product_category_id: el-2-2-2 + product_category_id: el-7-9-12-12 output: product_category_id: - - '224' + - '4512' - input: - product_category_id: el-2-2-2-1 + product_category_id: el-7-9-12-13 output: product_category_id: - - '4493' + - '308' - input: - product_category_id: el-2-2-2-2 + product_category_id: el-7-9-13 output: product_category_id: - - '5381' + - '4224' - input: - product_category_id: el-2-2-3 + product_category_id: el-7-9-13-1 output: product_category_id: - - '236' + - '6416' - input: - product_category_id: el-2-2-4 + product_category_id: el-7-9-13-2 output: product_category_id: - - '5129' + - '4270' - input: - product_category_id: el-2-2-4-1 + product_category_id: el-7-9-13-3 output: product_category_id: - - '5130' + - '7501' - input: - product_category_id: el-2-2-4-2 + product_category_id: el-7-9-13-4 output: product_category_id: - - '4035' + - '4301' - input: - product_category_id: el-2-2-5 + product_category_id: el-7-9-13-5 output: product_category_id: - - '6545' + - '4102' - input: - product_category_id: el-2-2-6 + product_category_id: el-7-9-13-6 output: product_category_id: - - '6546' + - '43617' - input: - product_category_id: el-2-2-7 + product_category_id: el-7-9-13-7 output: product_category_id: - - '505771' + - '8160' - input: - product_category_id: el-2-2-7-1 + product_category_id: el-7-9-14 output: product_category_id: - - '543626' + - '2414' - input: - product_category_id: el-2-2-7-1-1 + product_category_id: el-7-9-14-1 output: product_category_id: - - '543626' + - '5268' - input: - product_category_id: el-2-2-7-1-2 + product_category_id: el-7-9-14-1-1 output: product_category_id: - - '543626' + - '5268' - input: - product_category_id: el-2-2-7-1-3 + product_category_id: el-7-9-14-1-2 output: product_category_id: - - '543626' + - '5271' - input: - product_category_id: el-2-2-7-1-4 + product_category_id: el-7-9-14-1-3 output: product_category_id: - - '543626' + - '5112' - input: - product_category_id: el-2-2-7-1-5 + product_category_id: el-7-9-14-2 output: product_category_id: - - '543626' + - '1623' - input: - product_category_id: el-2-2-7-2 + product_category_id: el-7-9-14-2-1 output: product_category_id: - - '543627' + - '381' - input: - product_category_id: el-2-2-8 + product_category_id: el-7-9-14-2-2 output: product_category_id: - - '234' + - '4417' - input: - product_category_id: el-2-2-9 + product_category_id: el-7-9-14-2-3 output: product_category_id: - - '246' + - '505767' - input: - product_category_id: el-2-2-9-1 + product_category_id: el-7-9-14-3 output: product_category_id: - - '5435' + - '5272' - input: - product_category_id: el-2-2-9-2 + product_category_id: el-7-9-14-4 output: product_category_id: - - '247' + - '380' - input: - product_category_id: el-2-2-9-3 + product_category_id: el-7-9-14-5 output: product_category_id: - - '248' + - '5269' - input: - product_category_id: el-2-2-9-4 + product_category_id: el-7-9-14-6 output: product_category_id: - - '5597' + - '377' - input: - product_category_id: el-2-2-9-5 + product_category_id: el-7-9-14-7 output: product_category_id: - - '3945' + - '385' - input: - product_category_id: el-2-2-9-6 + product_category_id: el-7-9-14-8 output: product_category_id: - - '5596' + - '3712' - input: - product_category_id: el-2-2-9-7 + product_category_id: el-7-9-15 output: product_category_id: - - '5369' + - '7349' - input: - product_category_id: el-2-3 + product_category_id: el-7-9-15-1 output: product_category_id: - - '242' + - '503002' - input: - product_category_id: el-2-3-1 + product_category_id: el-7-9-15-2 output: product_category_id: - - '225' + - '45262' - input: - product_category_id: el-2-3-10 + product_category_id: el-7-9-15-3 output: product_category_id: - - '256' + - '500013' - input: - product_category_id: el-2-3-11 + product_category_id: el-7-9-16 output: product_category_id: - - '244' + - '311' - input: - product_category_id: el-2-3-2 + product_category_id: el-7-10 output: product_category_id: - - '242' + - '4617' - input: - product_category_id: el-2-3-3 + product_category_id: el-7-11 output: product_category_id: - - '252' + - '5466' - input: - product_category_id: el-2-3-4 + product_category_id: el-7-11-1 output: product_category_id: - - '4652' + - '5466' - input: - product_category_id: el-2-3-5 + product_category_id: el-7-11-2 output: product_category_id: - - '230' + - '5523' - input: - product_category_id: el-2-3-6 + product_category_id: el-7-11-3 output: product_category_id: - - '5434' + - '5469' - input: - product_category_id: el-2-3-7 + product_category_id: el-7-11-4 output: product_category_id: - - '6886' + - '5467' - input: - product_category_id: el-2-3-7-1 + product_category_id: el-7-11-5 output: product_category_id: - - '6886' + - '5468' - input: - product_category_id: el-2-3-7-2 + product_category_id: el-7-12 output: product_category_id: - - '6886' + - '288' - input: - product_category_id: el-2-3-7-3 + product_category_id: el-7-12-1 output: product_category_id: - - '6886' + - '1665' - input: - product_category_id: el-2-3-7-4 + product_category_id: el-7-12-2 output: product_category_id: - - '6886' + - '384' - input: - product_category_id: el-2-3-7-5 + product_category_id: el-7-12-2-1 output: product_category_id: - - '6886' + - '3387' - input: - product_category_id: el-2-3-7-6 + product_category_id: el-7-12-3 output: product_category_id: - - '6886' + - '1733' - input: - product_category_id: el-2-3-8 + product_category_id: el-7-12-4 output: product_category_id: - - '8271' + - '2130' - input: - product_category_id: el-2-3-9 + product_category_id: el-7-12-5 output: product_category_id: - - '251' + - '1767' - input: - product_category_id: el-2-4 + product_category_id: el-7-13 output: product_category_id: - - '8159' + - '3422' - input: - product_category_id: el-2-5 + product_category_id: el-7-13-1 output: product_category_id: - - '4921' + - '3672' - input: - product_category_id: el-2-5-1 + product_category_id: el-7-14 output: product_category_id: - - '4922' + - '499878' - input: - product_category_id: el-2-5-2 + product_category_id: el-7-15 output: product_category_id: - - '4923' + - '275' - input: - product_category_id: el-2-6 + product_category_id: el-7-15-1 output: product_category_id: - - '2154' + - '276' - input: - product_category_id: el-2-7 + product_category_id: el-7-15-1-1 output: product_category_id: - - '3727' + - '1722' - input: - product_category_id: el-2-7-1 + product_category_id: el-7-15-1-2 output: product_category_id: - - '3242' + - '1880' - input: - product_category_id: el-3 + product_category_id: el-7-15-1-3 output: product_category_id: - - '3702' + - '7551' - input: - product_category_id: el-3-1 + product_category_id: el-7-15-1-4 output: product_category_id: - - '500027' + - '4928' - input: - product_category_id: el-3-1-1 + product_category_id: el-7-15-1-5 output: product_category_id: - - '500027' + - '1564' - input: - product_category_id: el-3-1-2 + product_category_id: el-7-15-1-6 output: product_category_id: - - '500027' + - '1745' - input: - product_category_id: el-3-1-3 + product_category_id: el-7-15-1-7 output: product_category_id: - - '500027' + - '499810' - input: - product_category_id: el-3-2 + product_category_id: el-7-15-1-8 output: product_category_id: - - '7259' + - '5133' - input: - product_category_id: el-3-3 + product_category_id: el-7-15-1-9 output: product_category_id: - - '3889' + - '7438' - input: - product_category_id: el-3-3-1 + product_category_id: el-7-15-1-10 output: product_category_id: - - '4010' + - '6289' - input: - product_category_id: el-3-4 + product_category_id: el-7-15-1-11 output: product_category_id: - - '7258' + - '2222' - input: - product_category_id: el-3-4-1 + product_category_id: el-7-15-1-12 output: product_category_id: - - '7258' + - '500117' - input: - product_category_id: el-3-4-2 + product_category_id: el-7-15-2 output: product_category_id: - - '7258' + - '7166' - input: - product_category_id: el-3-4-3 + product_category_id: el-7-15-2-1 output: product_category_id: - - '7258' + - '6817' - input: - product_category_id: el-3-4-4 + product_category_id: el-7-15-2-2 output: product_category_id: - - '7258' + - '8243' - input: - product_category_id: el-3-4-5 + product_category_id: el-7-15-2-3 output: product_category_id: - - '7258' + - '3130' - input: - product_category_id: el-3-5 + product_category_id: el-7-15-2-4 output: product_category_id: - - '3635' + - '7167' - input: - product_category_id: el-3-5-1 + product_category_id: el-7-15-2-5 output: product_category_id: - - '3220' + - '499928' - input: - product_category_id: el-3-5-2 + product_category_id: el-7-15-3 output: product_category_id: - - '7260' + - '2978' - input: - product_category_id: el-3-5-3 + product_category_id: el-7-15-4 output: product_category_id: - - '3121' + - '6933' - input: - product_category_id: el-3-5-4 + product_category_id: el-7-15-4-1 output: product_category_id: - - '3424' + - '6933' - input: - product_category_id: el-3-6 + product_category_id: el-7-15-4-2 output: product_category_id: - - '7264' + - '6933' - input: - product_category_id: el-3-6-1 + product_category_id: el-7-15-5 output: product_category_id: - - '298419' + - '505295' - input: - product_category_id: el-3-6-2 + product_category_id: el-7-15-5-1 output: product_category_id: - - '499898' + - '505295' - input: - product_category_id: el-3-6-2-1 + product_category_id: el-7-15-5-2 output: product_category_id: - - '499899' + - '505295' - input: - product_category_id: el-3-6-2-2 + product_category_id: el-7-15-6 output: product_category_id: - - '8546' + - '6790' - input: - product_category_id: el-3-6-2-3 + product_category_id: el-7-15-7 output: product_category_id: - - '289' + - '275' - input: - product_category_id: el-3-6-3 + product_category_id: el-7-15-8 output: product_category_id: - - '3416' + - '3160' - input: - product_category_id: el-3-6-4 + product_category_id: el-7-15-9 output: product_category_id: - - '499889' + - '5274' - input: - product_category_id: el-3-6-5 + product_category_id: el-7-15-10 output: product_category_id: - - '8545' + - '5380' - input: - product_category_id: el-3-6-6 + product_category_id: el-7-15-11 output: product_category_id: - - '8549' + - '7135' - input: - product_category_id: el-3-6-7 + product_category_id: el-7-15-12 output: product_category_id: - - '8544' + - '1348' - input: - product_category_id: el-3-6-8 + product_category_id: el-7-15-13 output: product_category_id: - - '499675' + - '1375' - input: - product_category_id: el-3-6-9 + product_category_id: el-7-15-13-1 output: product_category_id: - - '8516' + - '1375' - input: - product_category_id: el-3-7 + product_category_id: el-7-16 output: product_category_id: - - '3991' + - '341' - input: - product_category_id: el-3-7-1 + product_category_id: el-7-17 output: product_category_id: - - '3632' + - '5473' - input: - product_category_id: el-3-7-2 + product_category_id: el-7-18 output: product_category_id: - - '7257' + - '5695' - input: - product_category_id: el-3-7-3 + product_category_id: el-7-18-1 output: product_category_id: - - '3949' + - '5612' - input: - product_category_id: el-3-7-4 + product_category_id: el-7-18-2 output: product_category_id: - - '3094' + - '5696' - input: - product_category_id: el-4 + product_category_id: el-7-18-3 output: product_category_id: - - '262' + - '5589' - input: - product_category_id: el-4-1 + product_category_id: el-8 output: product_category_id: - - '266' + - '3895' - input: - product_category_id: el-4-2 + product_category_id: el-8-1 output: product_category_id: - - '5275' + - '3781' - input: - product_category_id: el-4-3 + product_category_id: el-8-2 output: product_category_id: - - '263' + - '3213' - input: - product_category_id: el-4-3-1 + product_category_id: el-9 output: product_category_id: - - '263' + - '339' - input: - product_category_id: el-4-3-2 + product_category_id: el-10 output: product_category_id: - - '263' + - '6544' - input: - product_category_id: el-4-4 + product_category_id: el-11 output: product_category_id: - - '2471' + - '340' - input: - product_category_id: el-4-4-1 + product_category_id: el-11-1 output: product_category_id: - - '2471' + - '1550' - input: - product_category_id: el-4-4-2 + product_category_id: el-11-2 output: product_category_id: - - '2106' + - '8134' - input: - product_category_id: el-4-4-3 + product_category_id: el-11-3 output: product_category_id: - - '4415' + - '2178' - input: - product_category_id: el-4-4-4 + product_category_id: el-11-4 output: product_category_id: - - '273' + - '1552' - input: - product_category_id: el-4-5 + product_category_id: el-11-5 output: product_category_id: - - '5404' + - '4450' - input: - product_category_id: el-4-5-1 + product_category_id: el-11-6 output: product_category_id: - - '5404' + - '8473' - input: - product_category_id: el-4-6 + product_category_id: el-12 output: product_category_id: - - '360' + - '342' - input: - product_category_id: el-4-7 + product_category_id: el-12-1 output: product_category_id: - - '268' + - '1350' - input: - product_category_id: el-4-8 + product_category_id: el-12-1-1 output: product_category_id: - - '270' + - '5659' - input: - product_category_id: el-4-8-1 + product_category_id: el-12-1-2 output: product_category_id: - - '4666' + - '2358' - input: - product_category_id: el-4-8-2 + product_category_id: el-12-1-3 output: product_category_id: - - '271' + - '5496' - input: - product_category_id: el-4-8-3 + product_category_id: el-12-1-4 output: product_category_id: - - '272' + - '5497' - input: - product_category_id: el-4-8-4 + product_category_id: el-12-2 output: product_category_id: - - '264' + - '2479' - input: - product_category_id: el-4-8-4-1 + product_category_id: el-12-3 output: product_category_id: - - '8111' + - '2455' - input: - product_category_id: el-4-8-4-1-1 + product_category_id: el-12-3-1 output: product_category_id: - - '8111' + - '2455' - input: - product_category_id: el-4-8-4-1-2 + product_category_id: el-12-3-2 output: product_category_id: - - '8111' + - '2455' - input: - product_category_id: el-4-8-4-1-3 + product_category_id: el-12-3-3 output: product_category_id: - - '8111' + - '2455' - input: - product_category_id: el-4-8-4-1-4 + product_category_id: el-12-3-4 output: product_category_id: - - '8111' + - '2455' - input: - product_category_id: el-4-8-4-2 + product_category_id: el-12-3-5 output: product_category_id: - - '2353' + - '2455' - input: - product_category_id: el-4-8-4-3 + product_category_id: el-12-3-6 output: product_category_id: - - '4550' + - '2455' - input: - product_category_id: el-4-8-4-4 + product_category_id: el-12-3-7 output: product_category_id: - - '6030' + - '2455' - input: - product_category_id: el-4-8-4-4-1 + product_category_id: el-12-3-8 output: product_category_id: - - '543515' + - '2455' - input: - product_category_id: el-4-8-4-4-2 + product_category_id: el-12-3-9 output: product_category_id: - - '543516' + - '2455' - input: - product_category_id: el-4-8-4-5 + product_category_id: el-12-4 output: product_category_id: - - '7347' + - '5576' - input: - product_category_id: el-4-8-4-6 + product_category_id: el-12-5 output: product_category_id: - - '5566' + - '343' - input: - product_category_id: el-4-8-4-7 + product_category_id: el-12-6 output: product_category_id: - - '499916' + - '290' - input: - product_category_id: el-4-8-5 + product_category_id: el-12-7 output: product_category_id: - - '267' + - '3742' - input: - product_category_id: el-4-8-6 + product_category_id: el-12-8 output: product_category_id: - - '1924' + - '6508' - input: - product_category_id: el-4-8-7 + product_category_id: el-12-9 output: product_category_id: - - '265' + - '3425' - input: - product_category_id: el-4-8-7-1 + product_category_id: el-12-10 output: product_category_id: - - '269' + - '2121' - input: - product_category_id: el-4-9 + product_category_id: el-13 output: product_category_id: - - '274' + - '345' - input: - product_category_id: el-5 + product_category_id: el-13-1 output: product_category_id: - - '1801' + - '499682' - input: - product_category_id: el-5-1 + product_category_id: el-13-1-1 output: product_category_id: - - '7395' + - '499682' - input: - product_category_id: el-5-2 + product_category_id: el-13-1-2 output: product_category_id: - - '2182' + - '499682' - input: - product_category_id: el-5-2-1 + product_category_id: el-13-1-3 output: product_category_id: - - '503001' + - '499682' - input: - product_category_id: el-5-2-2 + product_category_id: el-13-1-4 output: product_category_id: - - '2205' + - '499682' - input: - product_category_id: el-5-3 + product_category_id: el-13-1-5 output: product_category_id: - - '1977' + - '499682' - input: - product_category_id: el-5-4 + product_category_id: el-13-1-6 output: product_category_id: - - '1337' + - '499682' - input: - product_category_id: el-5-5 + product_category_id: el-13-1-7 output: product_category_id: - - '1544' + - '499682' - input: - product_category_id: el-6 + product_category_id: el-13-2 output: product_category_id: - - '278' + - '6865' - input: - product_category_id: el-6-1 + product_category_id: el-13-3 output: product_category_id: - - '5254' + - '502990' - input: - product_category_id: el-6-10 + product_category_id: el-13-3-1 output: product_category_id: - - '502995' + - '5258' - input: - product_category_id: el-6-2 + product_category_id: el-13-3-1-1 output: product_category_id: - - '331' + - '5259' - input: - product_category_id: el-6-3 + product_category_id: el-13-3-1-2 output: product_category_id: - - '325' + - '5266' - input: - product_category_id: el-6-4 + product_category_id: el-13-3-1-2-1 output: product_category_id: - - '298' + - '5266' - input: - product_category_id: el-6-4-1 + product_category_id: el-13-3-1-2-2 output: product_category_id: - - '5256' + - '5266' - input: - product_category_id: el-6-4-2 + product_category_id: el-13-3-1-2-3 output: product_category_id: - - '3539' + - '5266' - input: - product_category_id: el-6-4-3 + product_category_id: el-13-3-1-2-4 output: product_category_id: - - '3769' + - '5266' - input: - product_category_id: el-6-5 + product_category_id: el-13-3-1-3 output: product_category_id: - - '5255' + - '5262' - input: - product_category_id: el-6-6 + product_category_id: el-13-3-1-4 output: product_category_id: - - '328' + - '5260' - input: - product_category_id: el-6-7 + product_category_id: el-13-3-1-5 output: product_category_id: - - '500002' + - '5261' - input: - product_category_id: el-6-8 + product_category_id: el-13-3-1-6 output: product_category_id: - - '4745' + - '7362' - input: - product_category_id: el-6-9 + product_category_id: el-13-3-1-7 output: product_category_id: - - '8539' + - '356' - input: - product_category_id: el-6-9-1 + product_category_id: el-13-3-2 output: product_category_id: - - '543668' + - '5265' - input: - product_category_id: el-6-9-2 + product_category_id: el-13-3-3 output: product_category_id: - - '543669' + - '1683' - input: - product_category_id: el-7 + product_category_id: el-13-3-4 output: product_category_id: - - '2082' + - '5459' - input: - product_category_id: el-7-1 + product_category_id: el-13-3-5 output: product_category_id: - - '258' + - '502990' - input: - product_category_id: el-7-1-1 + product_category_id: el-13-3-6 output: product_category_id: - - '4463' + - '502990' - input: - product_category_id: el-7-1-2 + product_category_id: el-13-3-7 output: product_category_id: - - '146' + - '502991' - input: - product_category_id: el-7-1-3 + product_category_id: el-13-4 output: product_category_id: - - '7182' + - '500106' - input: - product_category_id: el-7-10 + product_category_id: el-13-5 output: product_category_id: - - '4617' + - '284' - input: - product_category_id: el-7-11 + product_category_id: el-13-5-1 output: product_category_id: - - '5466' + - '284' - input: - product_category_id: el-7-11-1 + product_category_id: el-13-5-2 output: product_category_id: - - '5466' + - '284' - input: - product_category_id: el-7-11-2 + product_category_id: el-13-6 output: product_category_id: - - '5523' + - '306' - input: - product_category_id: el-7-11-3 + product_category_id: el-13-6-1 output: product_category_id: - - '5469' + - '306' - input: - product_category_id: el-7-11-4 + product_category_id: el-13-6-2 output: product_category_id: - - '5467' + - '306' - input: - product_category_id: el-7-11-5 + product_category_id: el-13-6-3 output: product_category_id: - - '5468' + - '306' - input: - product_category_id: el-7-12 + product_category_id: el-13-6-4 output: product_category_id: - - '288' + - '306' - input: - product_category_id: el-7-12-1 + product_category_id: el-13-6-5 output: product_category_id: - - '1665' + - '306' - input: - product_category_id: el-7-12-2 + product_category_id: el-13-6-6 output: product_category_id: - - '384' + - '306' - input: - product_category_id: el-7-12-2-1 + product_category_id: el-14 output: product_category_id: - - '3387' + - '912' - input: - product_category_id: el-7-12-3 + product_category_id: el-15 output: product_category_id: - - '1733' + - '500091' - input: - product_category_id: el-7-12-4 + product_category_id: el-16 output: product_category_id: - - '2130' + - '4488' - input: - product_category_id: el-7-12-5 + product_category_id: el-17 output: product_category_id: - - '1767' + - '386' - input: - product_category_id: el-7-13 + product_category_id: el-17-1 output: product_category_id: - - '3422' + - '305' - input: - product_category_id: el-7-13-1 + product_category_id: el-17-2 output: product_category_id: - - '3672' + - '396' - input: - product_category_id: el-7-14 + product_category_id: el-17-2-1 output: product_category_id: - - '499878' + - '397' - input: - product_category_id: el-7-15 + product_category_id: el-17-2-2 output: product_category_id: - - '275' + - '398' - input: - product_category_id: el-7-15-1 + product_category_id: el-17-2-3 output: product_category_id: - - '276' + - '399' - input: - product_category_id: el-7-15-1-1 + product_category_id: el-17-3 output: product_category_id: - - '1722' + - '5561' - input: - product_category_id: el-7-15-1-10 + product_category_id: el-17-3-1 output: product_category_id: - - '6289' + - '5562' - input: - product_category_id: el-7-15-1-11 + product_category_id: el-17-3-2 output: product_category_id: - - '2222' + - '401' - input: - product_category_id: el-7-15-1-12 + product_category_id: el-17-4 output: product_category_id: - - '500117' + - '404' - input: - product_category_id: el-7-15-1-2 + product_category_id: el-17-5 output: product_category_id: - - '1880' + - '2027' - input: - product_category_id: el-7-15-1-3 + product_category_id: el-17-5-1 output: product_category_id: - - '7551' + - '4760' - input: - product_category_id: el-7-15-1-4 + product_category_id: el-17-5-2 output: product_category_id: - - '4928' + - '283' - input: - product_category_id: el-7-15-1-5 + product_category_id: el-17-5-2-1 output: product_category_id: - - '1564' + - '5516' - input: - product_category_id: el-7-15-1-6 + product_category_id: el-17-5-3 output: product_category_id: - - '1745' + - '393' - input: - product_category_id: el-7-15-1-7 + product_category_id: el-17-5-3-1 output: product_category_id: - - '499810' + - '5599' - input: - product_category_id: el-7-15-1-8 + product_category_id: el-17-5-3-2 output: product_category_id: - - '5133' + - '4570' - input: - product_category_id: el-7-15-1-9 + product_category_id: el-17-5-3-3 output: product_category_id: - - '7438' + - '395' - input: - product_category_id: el-7-15-10 + product_category_id: el-17-5-3-4 output: product_category_id: - - '5380' + - '5257' - input: - product_category_id: el-7-15-11 + product_category_id: el-17-5-3-5 output: product_category_id: - - '7135' + - '394' - input: - product_category_id: el-7-15-12 + product_category_id: el-17-5-4 output: product_category_id: - - '1348' + - '2145' - input: - product_category_id: el-7-15-13 + product_category_id: el-17-5-5 output: product_category_id: - - '1375' + - '403' - input: - product_category_id: el-7-15-13-1 + product_category_id: el-17-5-5-1 output: product_category_id: - - '1375' + - '4458' - input: - product_category_id: el-7-15-2 + product_category_id: el-17-5-5-2 output: product_category_id: - - '7166' + - '5503' - input: - product_category_id: el-7-15-2-1 + product_category_id: el-17-5-5-3 output: product_category_id: - - '6817' + - '5471' - input: - product_category_id: el-7-15-2-2 + product_category_id: el-17-5-5-4 output: product_category_id: - - '8243' + - '43616' - input: - product_category_id: el-7-15-2-3 + product_category_id: el-17-6 output: product_category_id: - - '3130' + - '1368' - input: - product_category_id: el-7-15-2-4 + product_category_id: el-17-7 output: product_category_id: - - '7167' + - '1634' - input: - product_category_id: el-7-15-2-5 + product_category_id: el-17-8 output: product_category_id: - - '499928' + - '387' - input: - product_category_id: el-7-15-3 + product_category_id: el-17-8-1 output: product_category_id: - - '2978' + - '390' - input: - product_category_id: el-7-15-4 + product_category_id: el-17-8-2 output: product_category_id: - - '6933' + - '388' - input: - product_category_id: el-7-15-4-1 + product_category_id: el-17-8-3 output: product_category_id: - - '6933' + - '387' - input: - product_category_id: el-7-15-4-2 + product_category_id: el-17-8-4 output: product_category_id: - - '6933' + - '5276' - input: - product_category_id: el-7-15-5 + product_category_id: el-17-8-5 output: product_category_id: - - '505295' + - '391' - input: - product_category_id: el-7-15-5-1 + product_category_id: el-17-9 output: product_category_id: - - '505295' + - '5278' - input: - product_category_id: el-7-15-5-2 + product_category_id: el-17-10 output: product_category_id: - - '505295' + - '5450' - input: - product_category_id: el-7-15-6 + product_category_id: el-18 output: product_category_id: - - '6790' + - '1270' - input: - product_category_id: el-7-15-7 + product_category_id: el-18-1 output: product_category_id: - - '275' + - '1270' - input: - product_category_id: el-7-15-8 + product_category_id: el-18-3 output: product_category_id: - - '3160' + - '1505' - input: - product_category_id: el-7-15-9 + product_category_id: el-18-3-2 output: product_category_id: - - '5274' + - '1505' - input: - product_category_id: el-7-16 + product_category_id: el-18-4 output: product_category_id: - - '341' + - '2070' - input: - product_category_id: el-7-17 + product_category_id: el-18-4-1 output: product_category_id: - - '5473' + - '2070' - input: - product_category_id: el-7-18 + product_category_id: el-18-4-2 output: product_category_id: - - '5695' + - '2070' - input: - product_category_id: el-7-18-1 + product_category_id: el-18-4-3 output: product_category_id: - - '5612' + - '2070' - input: - product_category_id: el-7-18-2 + product_category_id: el-19 output: product_category_id: - - '5696' + - '1294' - input: - product_category_id: el-7-18-3 + product_category_id: fb output: product_category_id: - - '5589' + - '412' - input: - product_category_id: el-7-2 + product_category_id: fb-1 output: product_category_id: - - '5476' + - '413' - input: - product_category_id: el-7-2-1 + product_category_id: fb-1-1 output: product_category_id: - - '5477' + - '499676' - input: - product_category_id: el-7-2-2 + product_category_id: fb-1-1-1 output: product_category_id: - - '5478' + - '414' - input: - product_category_id: el-7-2-3 + product_category_id: fb-1-1-2 output: product_category_id: - - '6016' + - '7486' - input: - product_category_id: el-7-3 + product_category_id: fb-1-1-3 output: product_category_id: - - '1718' + - '5887' - input: - product_category_id: el-7-4 + product_category_id: fb-1-1-4 output: product_category_id: - - '8156' + - '6761' - input: - product_category_id: el-7-4-1 + product_category_id: fb-1-1-5 output: product_category_id: - - '499944' + - '417' - input: - product_category_id: el-7-4-2 + product_category_id: fb-1-1-5-1 output: product_category_id: - - '8164' + - '505761' - input: - product_category_id: el-7-4-3 + product_category_id: fb-1-1-5-2 output: product_category_id: - - '499945' + - '2364' - input: - product_category_id: el-7-5 + product_category_id: fb-1-1-5-3 output: product_category_id: - - '367' + - '1671' - input: - product_category_id: el-7-6 + product_category_id: fb-1-1-5-4 output: product_category_id: - - '3328' + - '2933' - input: - product_category_id: el-7-6-1 + product_category_id: fb-1-1-5-5 output: product_category_id: - - '3764' + - '2605' - input: - product_category_id: el-7-6-2 + product_category_id: fb-1-1-5-6 output: product_category_id: - - '500036' + - '502976' - input: - product_category_id: el-7-6-3 + product_category_id: fb-1-1-5-6-1 output: product_category_id: - - '6402' + - '543642' - input: - product_category_id: el-7-6-4 + product_category_id: fb-1-1-5-6-2 output: product_category_id: - - '5273' + - '543643' - input: - product_category_id: el-7-6-5 + product_category_id: fb-1-1-5-7 output: product_category_id: - - '499686' + - '2220' - input: - product_category_id: el-7-6-6 + product_category_id: fb-1-1-5-8 output: product_category_id: - - '6780' + - '2107' - input: - product_category_id: el-7-6-7 + product_category_id: fb-1-1-5-9 output: product_category_id: - - '4016' + - '1926' - input: - product_category_id: el-7-7 + product_category_id: fb-1-1-6 output: product_category_id: - - '259' + - '5725' - input: - product_category_id: el-7-7-1 + product_category_id: fb-1-1-6-1 output: product_category_id: - - '1867' + - '5725' - input: - product_category_id: el-7-7-1-1 + product_category_id: fb-1-1-6-2 output: product_category_id: - - '1867' + - '5725' - input: - product_category_id: el-7-7-1-2 + product_category_id: fb-1-1-6-3 output: product_category_id: - - '1867' + - '5725' - input: - product_category_id: el-7-7-1-3 + product_category_id: fb-1-1-6-4 output: product_category_id: - - '1867' + - '5725' - input: - product_category_id: el-7-7-1-4 + product_category_id: fb-1-1-6-5 output: product_category_id: - - '1867' + - '5725' - input: - product_category_id: el-7-7-2 + product_category_id: fb-1-1-6-6 output: product_category_id: - - '259' + - '5725' - input: - product_category_id: el-7-7-3 + product_category_id: fb-1-1-7 output: product_category_id: - - '3461' + - '421' - input: - product_category_id: el-7-7-4 + product_category_id: fb-1-2 output: product_category_id: - - '1480' + - '6797' - input: - product_category_id: el-7-7-4-1 + product_category_id: fb-1-3 output: product_category_id: - - '1480' + - '1868' - input: - product_category_id: el-7-7-4-2 + product_category_id: fb-1-3-1 output: product_category_id: - - '1480' + - '1868' - input: - product_category_id: el-7-7-5 + product_category_id: fb-1-3-2 output: product_category_id: - - '500035' + - '1868' - input: - product_category_id: el-7-7-5-1 + product_category_id: fb-1-3-3 output: product_category_id: - - '500035' + - '1868' - input: - product_category_id: el-7-7-5-2 + product_category_id: fb-1-4 output: product_category_id: - - '500035' + - '413' - input: - product_category_id: el-7-7-6 + product_category_id: fb-1-5 output: product_category_id: - - '1763' + - '8036' - input: - product_category_id: el-7-7-7 + product_category_id: fb-1-6 output: product_category_id: - - '3541' + - '415' - input: - product_category_id: el-7-8 + product_category_id: fb-1-6-1 output: product_category_id: - - '279' + - '415' - input: - product_category_id: el-7-8-1 + product_category_id: fb-1-6-2 output: product_category_id: - - '500040' + - '415' - input: - product_category_id: el-7-8-10 + product_category_id: fb-1-6-3 output: product_category_id: - - '5308' + - '415' - input: - product_category_id: el-7-8-11 + product_category_id: fb-1-7 output: product_category_id: - - '499956' + - '2887' - input: - product_category_id: el-7-8-2 + product_category_id: fb-1-8 output: product_category_id: - - '7530' + - '413' - input: - product_category_id: el-7-8-3 + product_category_id: fb-1-8-1 output: product_category_id: - - '5489' + - '413' - input: - product_category_id: el-7-8-4 + product_category_id: fb-1-8-2 output: product_category_id: - - '280' + - '413' - input: - product_category_id: el-7-8-4-1 + product_category_id: fb-1-8-3 output: product_category_id: - - '4736' + - '413' - input: - product_category_id: el-7-8-4-1-1 + product_category_id: fb-1-8-4 output: product_category_id: - - '4738' + - '413' - input: - product_category_id: el-7-8-4-2 + product_category_id: fb-1-8-5 output: product_category_id: - - '4737' + - '413' - input: - product_category_id: el-7-8-4-2-1 + product_category_id: fb-1-8-6 output: product_category_id: - - '4739' + - '413' - input: - product_category_id: el-7-8-5 + product_category_id: fb-1-9 output: product_category_id: - - '6291' + - '418' - input: - product_category_id: el-7-8-6 + product_category_id: fb-1-10 output: product_category_id: - - '6979' + - '5724' - input: - product_category_id: el-7-8-7 + product_category_id: fb-1-10-1 output: product_category_id: - - '300' + - '5724' - input: - product_category_id: el-7-8-8 + product_category_id: fb-1-10-2 output: product_category_id: - - '1993' + - '5724' - input: - product_category_id: el-7-8-9 + product_category_id: fb-1-10-3 output: product_category_id: - - '5669' + - '5724' - input: - product_category_id: el-7-9 + product_category_id: fb-1-10-4 output: product_category_id: - - '285' + - '5724' - input: - product_category_id: el-7-9-1 + product_category_id: fb-1-10-5 output: product_category_id: - - '6932' + - '5724' - input: - product_category_id: el-7-9-10 + product_category_id: fb-1-11 output: product_category_id: - - '287' + - '6848' - input: - product_category_id: el-7-9-10-1 + product_category_id: fb-1-12 output: product_category_id: - - '286' + - '2628' - input: - product_category_id: el-7-9-10-2 + product_category_id: fb-1-13 output: product_category_id: - - '505299' + - '5723' - input: - product_category_id: el-7-9-10-3 + product_category_id: fb-1-13-1 output: product_category_id: - - '503755' + - '5723' - input: - product_category_id: el-7-9-10-4 + product_category_id: fb-1-13-2 output: product_category_id: - - '1487' + - '5723' - input: - product_category_id: el-7-9-10-5 + product_category_id: fb-1-14 output: product_category_id: - - '297' + - '2073' - input: - product_category_id: el-7-9-11 + product_category_id: fb-1-14-1 output: product_category_id: - - '6475' + - '2073' - input: - product_category_id: el-7-9-11-1 + product_category_id: fb-1-14-2 output: product_category_id: - - '6476' + - '2073' - input: - product_category_id: el-7-9-11-2 + product_category_id: fb-1-15 output: product_category_id: - - '8008' + - '7528' - input: - product_category_id: el-7-9-11-2-1 + product_category_id: fb-1-16 output: product_category_id: - - '8008' + - '420' - input: - product_category_id: el-7-9-11-2-2 + product_category_id: fb-1-16-1 output: product_category_id: - - '8008' + - '543531' - input: - product_category_id: el-7-9-11-2-3 + product_category_id: fb-1-16-2 output: product_category_id: - - '8008' + - '543530' - input: - product_category_id: el-7-9-11-3 + product_category_id: fb-1-16-3 output: product_category_id: - - '503003' + - '543533' - input: - product_category_id: el-7-9-11-4 + product_category_id: fb-1-16-4 output: product_category_id: - - '500052' + - '543532' - input: - product_category_id: el-7-9-11-4-1 + product_category_id: fb-2 output: product_category_id: - - '500052' + - '422' - input: - product_category_id: el-7-9-11-4-2 + product_category_id: fb-2-1 output: product_category_id: - - '500052' + - '1876' - input: - product_category_id: el-7-9-11-4-3 + product_category_id: fb-2-1-1 output: product_category_id: - - '500052' + - '1573' - input: - product_category_id: el-7-9-12 + product_category_id: fb-2-1-2 output: product_category_id: - - '1928' + - '5904' - input: - product_category_id: el-7-9-12-1 + product_category_id: fb-2-1-3 output: product_category_id: - - '139' + - '424' - input: - product_category_id: el-7-9-12-10 + product_category_id: fb-2-1-4 output: product_category_id: - - '3580' + - '2194' - input: - product_category_id: el-7-9-12-11 + product_category_id: fb-2-1-4-1 output: product_category_id: - - '304' + - '2194' - input: - product_category_id: el-7-9-12-12 + product_category_id: fb-2-1-4-2 output: product_category_id: - - '4512' + - '2194' - input: - product_category_id: el-7-9-12-13 + product_category_id: fb-2-1-5 output: product_category_id: - - '308' + - '6196' - input: - product_category_id: el-7-9-12-2 + product_category_id: fb-2-1-6 output: product_category_id: - - '5309' + - '2229' - input: - product_category_id: el-7-9-12-3 + product_category_id: fb-2-1-7 output: product_category_id: - - '505801' + - '6195' - input: - product_category_id: el-7-9-12-4 + product_category_id: fb-2-1-8 output: product_category_id: - - '5366' + - '5751' - input: - product_category_id: el-7-9-12-5 + product_category_id: fb-2-1-9 output: product_category_id: - - '301' + - '5054' - input: - product_category_id: el-7-9-12-5-1 + product_category_id: fb-2-1-10 output: product_category_id: - - '543591' + - '5790' - input: - product_category_id: el-7-9-12-5-2 + product_category_id: fb-2-1-11 output: product_category_id: - - '543590' + - '1895' - input: - product_category_id: el-7-9-12-5-3 + product_category_id: fb-2-1-12 output: product_category_id: - - '543589' + - '5750' - input: - product_category_id: el-7-9-12-5-4 + product_category_id: fb-2-1-13 output: product_category_id: - - '543588' + - '5749' - input: - product_category_id: el-7-9-12-5-5 + product_category_id: fb-2-1-14 output: product_category_id: - - '543593' + - '6891' - input: - product_category_id: el-7-9-12-6 + product_category_id: fb-2-1-15 output: product_category_id: - - '499950' + - '5748' - input: - product_category_id: el-7-9-12-7 + product_category_id: fb-2-2 output: product_category_id: - - '302' + - '6219' - input: - product_category_id: el-7-9-12-8 + product_category_id: fb-2-2-1 output: product_category_id: - - '303' + - '6219' - input: - product_category_id: el-7-9-12-9 + product_category_id: fb-2-2-2 output: product_category_id: - - '1562' + - '6219' - input: - product_category_id: el-7-9-13 + product_category_id: fb-2-3 output: product_category_id: - - '4224' + - '4748' - input: - product_category_id: el-7-9-13-1 + product_category_id: fb-2-3-1 output: product_category_id: - - '6416' + - '4748' - input: - product_category_id: el-7-9-13-2 + product_category_id: fb-2-3-2 output: product_category_id: - - '4270' + - '4748' - input: - product_category_id: el-7-9-13-3 + product_category_id: fb-2-4 output: product_category_id: - - '7501' + - '427' - input: - product_category_id: el-7-9-13-4 + product_category_id: fb-2-4-1 output: product_category_id: - - '4301' + - '6772' - input: - product_category_id: el-7-9-13-5 + product_category_id: fb-2-4-2 output: product_category_id: - - '4102' + - '6905' - input: - product_category_id: el-7-9-13-6 + product_category_id: fb-2-4-3 output: product_category_id: - - '43617' + - '6845' - input: - product_category_id: el-7-9-13-7 + product_category_id: fb-2-4-3-1 output: product_category_id: - - '8160' + - '6854' - input: - product_category_id: el-7-9-14 + product_category_id: fb-2-4-3-2 output: product_category_id: - - '2414' + - '6844' - input: - product_category_id: el-7-9-14-1 + product_category_id: fb-2-4-4 output: product_category_id: - - '5268' + - '5763' - input: - product_category_id: el-7-9-14-1-1 + product_category_id: fb-2-4-5 output: product_category_id: - - '5268' + - '5762' - input: - product_category_id: el-7-9-14-1-2 + product_category_id: fb-2-4-6 output: product_category_id: - - '5271' + - '4947' - input: - product_category_id: el-7-9-14-1-3 + product_category_id: fb-2-4-7 output: product_category_id: - - '5112' + - '6782' - input: - product_category_id: el-7-9-14-2 + product_category_id: fb-2-4-8 output: product_category_id: - - '1623' + - '4614' - input: - product_category_id: el-7-9-14-2-1 + product_category_id: fb-2-4-9 output: product_category_id: - - '381' + - '2018' - input: - product_category_id: el-7-9-14-2-2 + product_category_id: fb-2-4-10 output: product_category_id: - - '4417' + - '500074' - input: - product_category_id: el-7-9-14-2-3 + product_category_id: fb-2-4-11 output: product_category_id: - - '505767' + - '1568' - input: - product_category_id: el-7-9-14-3 + product_category_id: fb-2-4-12 output: product_category_id: - - '5272' + - '1387' - input: - product_category_id: el-7-9-14-4 + product_category_id: fb-2-4-13 output: product_category_id: - - '380' + - '5760' - input: - product_category_id: el-7-9-14-5 + product_category_id: fb-2-4-13-1 output: product_category_id: - - '5269' + - '5760' - input: - product_category_id: el-7-9-14-6 + product_category_id: fb-2-4-13-2 output: product_category_id: - - '377' + - '5760' - input: - product_category_id: el-7-9-14-7 + product_category_id: fb-2-4-14 output: product_category_id: - - '385' + - '5759' - input: - product_category_id: el-7-9-14-8 + product_category_id: fb-2-4-15 output: product_category_id: - - '3712' + - '500076' - input: - product_category_id: el-7-9-15 + product_category_id: fb-2-4-16 output: product_category_id: - - '7349' + - '6203' - input: - product_category_id: el-7-9-15-1 + product_category_id: fb-2-4-17 output: product_category_id: - - '503002' + - '500075' - input: - product_category_id: el-7-9-15-2 + product_category_id: fb-2-4-18 output: product_category_id: - - '45262' + - '1969' - input: - product_category_id: el-7-9-15-3 + product_category_id: fb-2-4-19 output: product_category_id: - - '500013' + - '4615' - input: - product_category_id: el-7-9-16 + product_category_id: fb-2-4-20 output: product_category_id: - - '311' + - '4616' - input: - product_category_id: el-7-9-2 + product_category_id: fb-2-4-21 output: product_category_id: - - '8158' + - '500089' - input: - product_category_id: el-7-9-3 + product_category_id: fb-2-4-22 output: product_category_id: - - '291' + - '4943' - input: - product_category_id: el-7-9-4 + product_category_id: fb-2-4-23 output: product_category_id: - - '292' + - '4692' - input: - product_category_id: el-7-9-5 + product_category_id: fb-2-4-24 output: product_category_id: - - '293' + - '6783' - input: - product_category_id: el-7-9-6 + product_category_id: fb-2-4-25 output: product_category_id: - - '294' + - '500105' - input: - product_category_id: el-7-9-7 + product_category_id: fb-2-4-26 output: product_category_id: - - '295' + - '6246' - input: - product_category_id: el-7-9-8 + product_category_id: fb-2-5 output: product_category_id: - - '296' + - '2660' - input: - product_category_id: el-7-9-9 + product_category_id: fb-2-5-1 output: product_category_id: - - '8162' + - '6754' - input: - product_category_id: el-7-9-9-1 + product_category_id: fb-2-5-2 output: product_category_id: - - '8163' + - '5776' - input: - product_category_id: el-8 + product_category_id: fb-2-5-3 output: product_category_id: - - '3895' + - '5775' - input: - product_category_id: el-8-1 + product_category_id: fb-2-5-4 output: product_category_id: - - '3781' + - '2572' - input: - product_category_id: el-8-2 + product_category_id: fb-2-5-5 output: product_category_id: - - '3213' + - '2803' - input: - product_category_id: el-9 + product_category_id: fb-2-5-6 output: product_category_id: - - '339' + - '5774' - input: - product_category_id: fb + product_category_id: fb-2-5-7 output: product_category_id: - - '412' + - '6774' - input: - product_category_id: fb-1 + product_category_id: fb-2-5-8 output: product_category_id: - - '413' + - '4613' - input: - product_category_id: fb-1-1 + product_category_id: fb-2-5-9 output: product_category_id: - - '499676' + - '5773' - input: - product_category_id: fb-1-1-1 + product_category_id: fb-2-5-10 output: product_category_id: - - '414' + - '500093' - input: - product_category_id: fb-1-1-2 + product_category_id: fb-2-5-10-1 output: product_category_id: - - '7486' + - '500093' - input: - product_category_id: fb-1-1-3 + product_category_id: fb-2-5-10-2 output: product_category_id: - - '5887' + - '500093' - input: - product_category_id: fb-1-1-4 + product_category_id: fb-2-5-10-3 output: product_category_id: - - '6761' + - '500093' - input: - product_category_id: fb-1-1-5 + product_category_id: fb-2-5-11 output: product_category_id: - - '417' + - '7506' - input: - product_category_id: fb-1-1-5-1 + product_category_id: fb-2-5-12 output: product_category_id: - - '505761' + - '2126' - input: - product_category_id: fb-1-1-5-2 + product_category_id: fb-2-5-12-1 output: product_category_id: - - '2364' + - '2126' - input: - product_category_id: fb-1-1-5-3 + product_category_id: fb-2-5-12-2 output: product_category_id: - - '1671' + - '2126' - input: - product_category_id: fb-1-1-5-4 + product_category_id: fb-2-5-12-3 output: product_category_id: - - '2933' + - '2126' - input: - product_category_id: fb-1-1-5-5 + product_category_id: fb-2-5-12-4 output: product_category_id: - - '2605' + - '2126' - input: - product_category_id: fb-1-1-5-6 + product_category_id: fb-2-5-12-5 output: product_category_id: - - '502976' + - '2126' - input: - product_category_id: fb-1-1-5-6-1 + product_category_id: fb-2-5-12-6 output: product_category_id: - - '543642' + - '2126' - input: - product_category_id: fb-1-1-5-6-2 + product_category_id: fb-2-5-12-7 output: product_category_id: - - '543643' + - '2126' - input: - product_category_id: fb-1-1-5-7 + product_category_id: fb-2-5-12-8 output: product_category_id: - - '2220' + - '2126' - input: - product_category_id: fb-1-1-5-8 + product_category_id: fb-2-5-12-9 output: product_category_id: - - '2107' + - '2126' - input: - product_category_id: fb-1-1-5-9 + product_category_id: fb-2-5-12-10 output: product_category_id: - - '1926' + - '2126' - input: - product_category_id: fb-1-1-6 + product_category_id: fb-2-5-13 output: product_category_id: - - '5725' + - '5771' - input: - product_category_id: fb-1-1-6-1 + product_category_id: fb-2-5-14 output: product_category_id: - - '5725' + - '5777' - input: - product_category_id: fb-1-1-6-2 + product_category_id: fb-2-5-15 output: product_category_id: - - '5725' + - '5770' - input: - product_category_id: fb-1-1-6-3 + product_category_id: fb-2-5-16 output: product_category_id: - - '5725' + - '5752' - input: - product_category_id: fb-1-1-6-4 + product_category_id: fb-2-5-16-1 output: product_category_id: - - '5725' + - '5755' - input: - product_category_id: fb-1-1-6-5 + product_category_id: fb-2-5-16-2 output: product_category_id: - - '5725' + - '5756' - input: - product_category_id: fb-1-1-6-6 + product_category_id: fb-2-5-16-3 output: product_category_id: - - '5725' + - '5753' - input: - product_category_id: fb-1-1-7 + product_category_id: fb-2-5-17 output: product_category_id: - - '421' + - '6775' - input: - product_category_id: fb-1-10 + product_category_id: fb-2-5-18 output: product_category_id: - - '5724' + - '543549' - input: - product_category_id: fb-1-10-1 + product_category_id: fb-2-5-19 output: product_category_id: - - '5724' + - '5105' - input: - product_category_id: fb-1-10-2 + product_category_id: fb-2-5-20 output: product_category_id: - - '5724' + - '2775' - input: - product_category_id: fb-1-10-3 + product_category_id: fb-2-5-21 output: product_category_id: - - '5724' + - '7127' - input: - product_category_id: fb-1-10-4 + product_category_id: fb-2-5-22 output: product_category_id: - - '5724' + - '5769' - input: - product_category_id: fb-1-10-5 + product_category_id: fb-2-5-23 output: product_category_id: - - '5724' + - '499986' - input: - product_category_id: fb-1-11 + product_category_id: fb-2-5-24 output: product_category_id: - - '6848' + - '5767' - input: - product_category_id: fb-1-12 + product_category_id: fb-2-5-25 output: product_category_id: - - '2628' + - '8076' - input: - product_category_id: fb-1-13 + product_category_id: fb-2-5-26 output: product_category_id: - - '5723' + - '5766' - input: - product_category_id: fb-1-13-1 + product_category_id: fb-2-5-27 output: product_category_id: - - '5723' + - '5800' - input: - product_category_id: fb-1-13-2 + product_category_id: fb-2-5-28 output: product_category_id: - - '5723' + - '5765' - input: - product_category_id: fb-1-14 + product_category_id: fb-2-5-29 output: product_category_id: - - '2073' + - '7354' - input: - product_category_id: fb-1-14-1 + product_category_id: fb-2-5-30 output: product_category_id: - - '2073' + - '503734' - input: - product_category_id: fb-1-14-2 + product_category_id: fb-2-5-30-1 output: product_category_id: - - '2073' + - '503734' - input: - product_category_id: fb-1-15 + product_category_id: fb-2-5-30-2 output: product_category_id: - - '7528' + - '503734' - input: - product_category_id: fb-1-16 + product_category_id: fb-2-5-30-3 output: product_category_id: - - '420' + - '503734' - input: - product_category_id: fb-1-16-1 + product_category_id: fb-2-5-30-4 output: product_category_id: - - '543531' + - '503734' - input: - product_category_id: fb-1-16-2 + product_category_id: fb-2-5-31 output: product_category_id: - - '543530' + - '499707' - input: - product_category_id: fb-1-16-3 + product_category_id: fb-2-5-32 output: product_category_id: - - '543533' + - '6922' - input: - product_category_id: fb-1-16-4 + product_category_id: fb-2-5-33 output: product_category_id: - - '543532' + - '5768' - input: - product_category_id: fb-1-2 + product_category_id: fb-2-5-34 output: product_category_id: - - '6797' + - '2140' - input: - product_category_id: fb-1-3 + product_category_id: fb-2-5-35 output: product_category_id: - - '1868' + - '5778' - input: - product_category_id: fb-1-3-1 + product_category_id: fb-2-5-36 output: product_category_id: - - '1868' + - '2905' - input: - product_category_id: fb-1-3-2 + product_category_id: fb-2-6 output: product_category_id: - - '1868' + - '428' - input: - product_category_id: fb-1-3-3 + product_category_id: fb-2-6-1 output: product_category_id: - - '1868' + - '5827' - input: - product_category_id: fb-1-4 + product_category_id: fb-2-6-1-1 output: product_category_id: - - '413' + - '5827' - input: - product_category_id: fb-1-5 + product_category_id: fb-2-6-1-2 output: product_category_id: - - '8036' + - '5827' - input: - product_category_id: fb-1-6 + product_category_id: fb-2-6-1-3 output: product_category_id: - - '415' + - '5827' - input: - product_category_id: fb-1-6-1 + product_category_id: fb-2-6-1-4 output: product_category_id: - - '415' + - '5827' - input: - product_category_id: fb-1-6-2 + product_category_id: fb-2-6-2 output: product_category_id: - - '415' + - '429' - input: - product_category_id: fb-1-6-3 + product_category_id: fb-2-6-3 output: product_category_id: - - '415' + - '4418' - input: - product_category_id: fb-1-7 + product_category_id: fb-2-6-4 output: product_category_id: - - '2887' + - '1855' - input: - product_category_id: fb-1-8 + product_category_id: fb-2-6-5 output: product_category_id: - - '413' + - '5786' - input: - product_category_id: fb-1-8-1 + product_category_id: fb-2-6-5-1 output: product_category_id: - - '413' + - '5786' - input: - product_category_id: fb-1-8-2 + product_category_id: fb-2-6-5-2 output: product_category_id: - - '413' + - '5786' - input: - product_category_id: fb-1-8-3 + product_category_id: fb-2-6-6 output: product_category_id: - - '413' + - '5787' - input: - product_category_id: fb-1-8-4 + product_category_id: fb-2-6-7 output: product_category_id: - - '413' + - '6821' - input: - product_category_id: fb-1-8-5 + product_category_id: fb-2-6-8 output: product_category_id: - - '413' + - '1954' - input: - product_category_id: fb-1-8-6 + product_category_id: fb-2-7 output: product_category_id: - - '413' + - '5740' - input: - product_category_id: fb-1-9 + product_category_id: fb-2-7-1 output: product_category_id: - - '418' + - '6204' - input: - product_category_id: fb-2 + product_category_id: fb-2-7-2 output: product_category_id: - - '422' + - '6831' - input: - product_category_id: fb-2-1 + product_category_id: fb-2-7-3 output: product_category_id: - - '1876' + - '5785' - input: - product_category_id: fb-2-1-1 + product_category_id: fb-2-7-4 output: product_category_id: - - '1573' + - '5742' - input: - product_category_id: fb-2-1-10 + product_category_id: fb-2-7-5 output: product_category_id: - - '5790' + - '5741' - input: - product_category_id: fb-2-1-11 + product_category_id: fb-2-7-6 output: product_category_id: - - '1895' + - '2188' - input: - product_category_id: fb-2-1-12 + product_category_id: fb-2-7-7 output: product_category_id: - - '5750' + - '3965' - input: - product_category_id: fb-2-1-13 + product_category_id: fb-2-7-8 output: product_category_id: - - '5749' + - '1702' - input: - product_category_id: fb-2-1-14 + product_category_id: fb-2-7-9 output: product_category_id: - - '6891' + - '6784' - input: - product_category_id: fb-2-1-15 + product_category_id: fb-2-7-10 output: product_category_id: - - '5748' + - '6830' - input: - product_category_id: fb-2-1-2 + product_category_id: fb-2-8 output: product_category_id: - - '5904' + - '136' - input: - product_category_id: fb-2-1-3 + product_category_id: fb-2-9 output: product_category_id: - - '424' + - '5788' - input: - product_category_id: fb-2-1-4 + product_category_id: fb-2-9-1 output: product_category_id: - - '2194' + - '499991' - input: - product_category_id: fb-2-1-4-1 + product_category_id: fb-2-9-1-1 output: product_category_id: - - '2194' + - '499991' - input: - product_category_id: fb-2-1-4-2 + product_category_id: fb-2-9-1-2 output: product_category_id: - - '2194' + - '499991' - input: - product_category_id: fb-2-1-5 + product_category_id: fb-2-9-1-3 output: product_category_id: - - '6196' + - '499991' - input: - product_category_id: fb-2-1-6 + product_category_id: fb-2-9-1-4 output: product_category_id: - - '2229' + - '499991' - input: - product_category_id: fb-2-1-7 + product_category_id: fb-2-9-1-5 output: product_category_id: - - '6195' + - '499991' - input: - product_category_id: fb-2-1-8 + product_category_id: fb-2-9-2 output: product_category_id: - - '5751' + - '6873' - input: - product_category_id: fb-2-1-9 + product_category_id: fb-2-9-3 output: product_category_id: - - '5054' + - '5789' - input: product_category_id: fb-2-10 output: @@ -18422,6 +19072,46 @@ rules: output: product_category_id: - '6566' +- input: + product_category_id: fb-2-10-7-2 + output: + product_category_id: + - '6571' +- input: + product_category_id: fb-2-10-7-3 + output: + product_category_id: + - '6572' +- input: + product_category_id: fb-2-10-7-4 + output: + product_category_id: + - '6573' +- input: + product_category_id: fb-2-10-7-5 + output: + product_category_id: + - '6574' +- input: + product_category_id: fb-2-10-7-6 + output: + product_category_id: + - '6582' +- input: + product_category_id: fb-2-10-7-7 + output: + product_category_id: + - '6589' +- input: + product_category_id: fb-2-10-7-8 + output: + product_category_id: + - '6593' +- input: + product_category_id: fb-2-10-7-9 + output: + product_category_id: + - '6602' - input: product_category_id: fb-2-10-7-10 output: @@ -18507,11 +19197,6 @@ rules: output: product_category_id: - '6633' -- input: - product_category_id: fb-2-10-7-2 - output: - product_category_id: - - '6571' - input: product_category_id: fb-2-10-7-20 output: @@ -18562,11 +19247,6 @@ rules: output: product_category_id: - '6665' -- input: - product_category_id: fb-2-10-7-3 - output: - product_category_id: - - '6572' - input: product_category_id: fb-2-10-7-30 output: @@ -18617,11 +19297,6 @@ rules: output: product_category_id: - '6691' -- input: - product_category_id: fb-2-10-7-4 - output: - product_category_id: - - '6573' - input: product_category_id: fb-2-10-7-40 output: @@ -18673,40 +19348,55 @@ rules: product_category_id: - '6698' - input: - product_category_id: fb-2-10-7-5 + product_category_id: fb-2-10-8 output: product_category_id: - - '6574' + - '5793' - input: - product_category_id: fb-2-10-7-6 + product_category_id: fb-2-10-8-1 output: product_category_id: - - '6582' + - '6716' - input: - product_category_id: fb-2-10-7-7 + product_category_id: fb-2-10-8-2 output: product_category_id: - - '6589' + - '6570' - input: - product_category_id: fb-2-10-7-8 + product_category_id: fb-2-10-8-3 output: product_category_id: - - '6593' + - '6568' - input: - product_category_id: fb-2-10-7-9 + product_category_id: fb-2-10-8-4 output: product_category_id: - - '6602' + - '6577' - input: - product_category_id: fb-2-10-8 + product_category_id: fb-2-10-8-5 output: product_category_id: - - '5793' + - '6580' - input: - product_category_id: fb-2-10-8-1 + product_category_id: fb-2-10-8-6 output: product_category_id: - - '6716' + - '6587' +- input: + product_category_id: fb-2-10-8-7 + output: + product_category_id: + - '6591' +- input: + product_category_id: fb-2-10-8-8 + output: + product_category_id: + - '6590' +- input: + product_category_id: fb-2-10-8-9 + output: + product_category_id: + - '6592' - input: product_category_id: fb-2-10-8-10 output: @@ -18757,11 +19447,6 @@ rules: output: product_category_id: - '6816' -- input: - product_category_id: fb-2-10-8-2 - output: - product_category_id: - - '6570' - input: product_category_id: fb-2-10-8-20 output: @@ -18802,21 +19487,6 @@ rules: output: product_category_id: - '6569' -- input: - product_category_id: fb-2-10-8-26-10 - output: - product_category_id: - - '5792' -- input: - product_category_id: fb-2-10-8-26-11 - output: - product_category_id: - - '6695' -- input: - product_category_id: fb-2-10-8-26-12 - output: - product_category_id: - - '6706' - input: product_category_id: fb-2-10-8-26-2 output: @@ -18857,6 +19527,21 @@ rules: output: product_category_id: - '6656' +- input: + product_category_id: fb-2-10-8-26-10 + output: + product_category_id: + - '5792' +- input: + product_category_id: fb-2-10-8-26-11 + output: + product_category_id: + - '6695' +- input: + product_category_id: fb-2-10-8-26-12 + output: + product_category_id: + - '6706' - input: product_category_id: fb-2-10-8-27 output: @@ -18871,1442 +19556,1742 @@ rules: product_category_id: fb-2-10-8-29 output: product_category_id: - - '6628' + - '6628' +- input: + product_category_id: fb-2-10-8-30 + output: + product_category_id: + - '6627' +- input: + product_category_id: fb-2-10-8-31 + output: + product_category_id: + - '6644' +- input: + product_category_id: fb-2-10-8-32 + output: + product_category_id: + - '6643' +- input: + product_category_id: fb-2-10-8-33 + output: + product_category_id: + - '6653' +- input: + product_category_id: fb-2-10-8-34 + output: + product_category_id: + - '6657' +- input: + product_category_id: fb-2-10-8-35 + output: + product_category_id: + - '6655' +- input: + product_category_id: fb-2-10-8-36 + output: + product_category_id: + - '6664' +- input: + product_category_id: fb-2-10-8-37 + output: + product_category_id: + - '6663' +- input: + product_category_id: fb-2-10-8-38 + output: + product_category_id: + - '6669' +- input: + product_category_id: fb-2-10-8-39 + output: + product_category_id: + - '6668' +- input: + product_category_id: fb-2-10-8-40 + output: + product_category_id: + - '6586' +- input: + product_category_id: fb-2-10-8-41 + output: + product_category_id: + - '6682' +- input: + product_category_id: fb-2-10-8-42 + output: + product_category_id: + - '6681' +- input: + product_category_id: fb-2-10-8-43 + output: + product_category_id: + - '6818' +- input: + product_category_id: fb-2-10-8-44 + output: + product_category_id: + - '503761' +- input: + product_category_id: fb-2-10-8-45 + output: + product_category_id: + - '505354' +- input: + product_category_id: fb-2-10-8-46 + output: + product_category_id: + - '6694' +- input: + product_category_id: fb-2-10-8-47 + output: + product_category_id: + - '6693' +- input: + product_category_id: fb-2-10-8-48 + output: + product_category_id: + - '6585' +- input: + product_category_id: fb-2-10-8-49 + output: + product_category_id: + - '6692' +- input: + product_category_id: fb-2-10-8-50 + output: + product_category_id: + - '6704' +- input: + product_category_id: fb-2-10-8-51 + output: + product_category_id: + - '6703' +- input: + product_category_id: fb-2-10-8-52 + output: + product_category_id: + - '505329' +- input: + product_category_id: fb-2-10-8-53 + output: + product_category_id: + - '499905' +- input: + product_category_id: fb-2-10-8-54 + output: + product_category_id: + - '6701' +- input: + product_category_id: fb-2-10-8-55 + output: + product_category_id: + - '6700' +- input: + product_category_id: fb-2-10-8-56 + output: + product_category_id: + - '7193' +- input: + product_category_id: fb-2-10-8-57 + output: + product_category_id: + - '8515' +- input: + product_category_id: fb-2-10-8-58 + output: + product_category_id: + - '6705' +- input: + product_category_id: fb-2-10-9 + output: + product_category_id: + - '5794' +- input: + product_category_id: fb-2-11 + output: + product_category_id: + - '431' +- input: + product_category_id: fb-2-11-1 + output: + product_category_id: + - '4683' +- input: + product_category_id: fb-2-11-2 + output: + product_category_id: + - '4687' +- input: + product_category_id: fb-2-11-3 + output: + product_category_id: + - '4684' +- input: + product_category_id: fb-2-11-4 + output: + product_category_id: + - '4689' +- input: + product_category_id: fb-2-11-5 + output: + product_category_id: + - '7196' +- input: + product_category_id: fb-2-11-6 + output: + product_category_id: + - '4686' +- input: + product_category_id: fb-2-11-7 + output: + product_category_id: + - '4690' +- input: + product_category_id: fb-2-11-8 + output: + product_category_id: + - '6259' +- input: + product_category_id: fb-2-11-9 + output: + product_category_id: + - '4682' +- input: + product_category_id: fb-2-11-10 + output: + product_category_id: + - '7374' +- input: + product_category_id: fb-2-11-11 + output: + product_category_id: + - '4688' +- input: + product_category_id: fb-2-12 + output: + product_category_id: + - '432' +- input: + product_category_id: fb-2-12-1 + output: + product_category_id: + - '4627' +- input: + product_category_id: fb-2-12-1-1 + output: + product_category_id: + - '543554' +- input: + product_category_id: fb-2-12-1-2 + output: + product_category_id: + - '543555' +- input: + product_category_id: fb-2-12-1-3 + output: + product_category_id: + - '543556' +- input: + product_category_id: fb-2-12-1-4 + output: + product_category_id: + - '543557' +- input: + product_category_id: fb-2-12-2 + output: + product_category_id: + - '4628' +- input: + product_category_id: fb-2-12-2-1 + output: + product_category_id: + - '5811' +- input: + product_category_id: fb-2-12-2-2 + output: + product_category_id: + - '5805' +- input: + product_category_id: fb-2-12-2-2-1 + output: + product_category_id: + - '5805' +- input: + product_category_id: fb-2-12-2-2-2 + output: + product_category_id: + - '5805' +- input: + product_category_id: fb-2-12-2-2-3 + output: + product_category_id: + - '5805' +- input: + product_category_id: fb-2-12-2-2-4 + output: + product_category_id: + - '5805' +- input: + product_category_id: fb-2-12-2-2-5 + output: + product_category_id: + - '5805' +- input: + product_category_id: fb-2-12-2-2-5-1 + output: + product_category_id: + - '5805' +- input: + product_category_id: fb-2-12-2-2-5-2 + output: + product_category_id: + - '5805' +- input: + product_category_id: fb-2-12-2-3 + output: + product_category_id: + - '5804' +- input: + product_category_id: fb-2-12-3 + output: + product_category_id: + - '4629' - input: - product_category_id: fb-2-10-8-3 + product_category_id: fb-2-12-3-1 output: product_category_id: - - '6568' + - '5813' - input: - product_category_id: fb-2-10-8-30 + product_category_id: fb-2-12-3-2 output: product_category_id: - - '6627' + - '5812' - input: - product_category_id: fb-2-10-8-31 + product_category_id: fb-2-13 output: product_category_id: - - '6644' + - '433' - input: - product_category_id: fb-2-10-8-32 + product_category_id: fb-2-14 output: product_category_id: - - '6643' + - '434' - input: - product_category_id: fb-2-10-8-33 + product_category_id: fb-2-15 output: product_category_id: - - '6653' + - '5814' - input: - product_category_id: fb-2-10-8-34 + product_category_id: fb-2-15-1 output: product_category_id: - - '6657' + - '499989' - input: - product_category_id: fb-2-10-8-35 + product_category_id: fb-2-15-2 output: product_category_id: - - '6655' + - '499988' - input: - product_category_id: fb-2-10-8-36 + product_category_id: fb-2-16 output: product_category_id: - - '6664' + - '4608' - input: - product_category_id: fb-2-10-8-37 + product_category_id: fb-2-16-1 output: product_category_id: - - '6663' + - '1529' - input: - product_category_id: fb-2-10-8-38 + product_category_id: fb-2-16-2 output: product_category_id: - - '6669' + - '4610' - input: - product_category_id: fb-2-10-8-39 + product_category_id: fb-2-16-3 output: product_category_id: - - '6668' + - '6199' - input: - product_category_id: fb-2-10-8-4 + product_category_id: fb-2-16-4 output: product_category_id: - - '6577' + - '4611' - input: - product_category_id: fb-2-10-8-40 + product_category_id: fb-2-17 output: product_category_id: - - '6586' + - '423' - input: - product_category_id: fb-2-10-8-41 + product_category_id: fb-2-17-1 output: product_category_id: - - '6682' + - '7159' - input: - product_category_id: fb-2-10-8-42 + product_category_id: fb-2-17-2 output: product_category_id: - - '6681' + - '5747' - input: - product_category_id: fb-2-10-8-43 + product_category_id: fb-2-17-2-1 output: product_category_id: - - '6818' + - '543651' - input: - product_category_id: fb-2-10-8-44 + product_category_id: fb-2-17-2-2 output: product_category_id: - - '503761' + - '543652' - input: - product_category_id: fb-2-10-8-45 + product_category_id: fb-2-17-3 output: product_category_id: - - '505354' + - '6192' - input: - product_category_id: fb-2-10-8-46 + product_category_id: fb-2-17-4 output: product_category_id: - - '6694' + - '2392' - input: - product_category_id: fb-2-10-8-47 + product_category_id: fb-2-17-5 output: product_category_id: - - '6693' + - '1445' - input: - product_category_id: fb-2-10-8-48 + product_category_id: fb-2-17-6 output: product_category_id: - - '6585' + - '5746' - input: - product_category_id: fb-2-10-8-49 + product_category_id: fb-2-17-7 output: product_category_id: - - '6692' + - '5744' - input: - product_category_id: fb-2-10-8-5 + product_category_id: fb-2-17-8 output: product_category_id: - - '6580' + - '3284' - input: - product_category_id: fb-2-10-8-50 + product_category_id: fb-2-17-9 output: product_category_id: - - '6704' + - '1534' - input: - product_category_id: fb-2-10-8-51 + product_category_id: fb-2-17-10 output: product_category_id: - - '6703' + - '6194' - input: - product_category_id: fb-2-10-8-52 + product_category_id: fb-2-17-11 output: product_category_id: - - '505329' + - '3446' - input: - product_category_id: fb-2-10-8-53 + product_category_id: fb-2-17-12 output: product_category_id: - - '499905' + - '5743' - input: - product_category_id: fb-2-10-8-54 + product_category_id: fb-2-17-13 output: product_category_id: - - '6701' + - '2432' - input: - product_category_id: fb-2-10-8-55 + product_category_id: fb-2-17-14 output: product_category_id: - - '6700' + - '6847' - input: - product_category_id: fb-2-10-8-56 + product_category_id: fb-2-17-15 output: product_category_id: - - '7193' + - '7427' - input: - product_category_id: fb-2-10-8-57 + product_category_id: fb-2-17-16 output: product_category_id: - - '8515' + - '6785' - input: - product_category_id: fb-2-10-8-58 + product_category_id: fb-2-17-17 output: product_category_id: - - '6705' + - '7327' - input: - product_category_id: fb-2-10-8-6 + product_category_id: fb-2-17-18 output: product_category_id: - - '6587' + - '5745' - input: - product_category_id: fb-2-10-8-7 + product_category_id: fb-2-18 output: product_category_id: - - '6591' + - '2423' - input: - product_category_id: fb-2-10-8-8 + product_category_id: fb-2-19 output: product_category_id: - - '6590' + - '5807' - input: - product_category_id: fb-2-10-8-9 + product_category_id: fb-2-19-1 output: product_category_id: - - '6592' + - '6839' - input: - product_category_id: fb-2-10-9 + product_category_id: fb-2-19-2 output: product_category_id: - - '5794' + - '6843' - input: - product_category_id: fb-2-11 + product_category_id: fb-2-19-3 output: product_category_id: - - '431' + - '5808' - input: - product_category_id: fb-2-11-1 + product_category_id: fb-2-19-4 output: product_category_id: - - '4683' + - '5810' - input: - product_category_id: fb-2-11-10 + product_category_id: fb-2-19-5 output: product_category_id: - - '7374' + - '5809' - input: - product_category_id: fb-2-11-11 + product_category_id: fb-3 output: product_category_id: - - '4688' + - '435' - input: - product_category_id: fb-2-11-2 + product_category_id: fb-3-2 output: product_category_id: - - '4687' + - '3916' - input: - product_category_id: fb-2-11-3 + product_category_id: fb-3-3 output: product_category_id: - - '4684' + - '3151' - input: - product_category_id: fb-2-11-4 + product_category_id: fb-3-4 output: product_category_id: - - '4689' + - '3682' - input: - product_category_id: fb-2-11-5 + product_category_id: fb-3-5 output: product_category_id: - - '7196' + - '3741' - input: - product_category_id: fb-2-11-6 + product_category_id: fb-3-6 output: product_category_id: - - '4686' + - '499963' - input: - product_category_id: fb-2-11-7 + product_category_id: fb-3-7 output: product_category_id: - - '4690' + - '4091' - input: - product_category_id: fb-2-11-8 + product_category_id: fb-3-7-1 output: product_category_id: - - '6259' + - '4091' - input: - product_category_id: fb-2-11-9 + product_category_id: fb-3-7-2 output: product_category_id: - - '4682' + - '543635' - input: - product_category_id: fb-2-12 + product_category_id: fb-3-7-3 output: product_category_id: - - '432' + - '543634' - input: - product_category_id: fb-2-12-1 + product_category_id: fr output: product_category_id: - - '4627' + - '436' - input: - product_category_id: fb-2-12-1-1 + product_category_id: fr-1 output: product_category_id: - - '543554' + - '554' - input: - product_category_id: fb-2-12-1-2 + product_category_id: fr-1-1 output: product_category_id: - - '543555' + - '6349' - input: - product_category_id: fb-2-12-1-3 + product_category_id: fr-1-2 output: product_category_id: - - '543556' + - '7068' - input: - product_category_id: fb-2-12-1-4 + product_category_id: fr-1-3 output: product_category_id: - - '543557' + - '6393' - input: - product_category_id: fb-2-12-2 + product_category_id: fr-1-3-1 output: product_category_id: - - '4628' + - '6393' - input: - product_category_id: fb-2-12-2-1 + product_category_id: fr-1-3-2 output: product_category_id: - - '5811' + - '6393' - input: - product_category_id: fb-2-12-2-2 + product_category_id: fr-1-3-3 output: product_category_id: - - '5805' + - '6393' - input: - product_category_id: fb-2-12-2-2-1 + product_category_id: fr-1-3-5 output: product_category_id: - - '5805' + - '6393' - input: - product_category_id: fb-2-12-2-2-2 + product_category_id: fr-1-3-6 output: product_category_id: - - '5805' + - '6393' - input: - product_category_id: fb-2-12-2-2-3 + product_category_id: fr-1-3-7 output: product_category_id: - - '5805' + - '6393' - input: - product_category_id: fb-2-12-2-2-4 + product_category_id: fr-1-3-8 output: product_category_id: - - '5805' + - '6393' - input: - product_category_id: fb-2-12-2-2-5 + product_category_id: fr-1-3-10 output: product_category_id: - - '5805' + - '6393' - input: - product_category_id: fb-2-12-2-2-5-1 + product_category_id: fr-1-3-11 output: product_category_id: - - '5805' + - '6393' - input: - product_category_id: fb-2-12-2-2-5-2 + product_category_id: fr-1-4 output: product_category_id: - - '5805' + - '558' - input: - product_category_id: fb-2-12-2-3 + product_category_id: fr-1-5 output: product_category_id: - - '5804' + - '7070' - input: - product_category_id: fb-2-12-3 + product_category_id: fr-1-5-1 output: product_category_id: - - '4629' + - '7072' - input: - product_category_id: fb-2-12-3-1 + product_category_id: fr-1-5-1-1 output: product_category_id: - - '5813' + - '7072' - input: - product_category_id: fb-2-12-3-2 + product_category_id: fr-1-5-1-2 output: product_category_id: - - '5812' + - '7072' - input: - product_category_id: fb-2-13 + product_category_id: fr-1-5-1-3 output: product_category_id: - - '433' + - '7072' - input: - product_category_id: fb-2-14 + product_category_id: fr-1-5-1-4 output: product_category_id: - - '434' + - '7072' - input: - product_category_id: fb-2-15 + product_category_id: fr-1-5-1-5 output: product_category_id: - - '5814' + - '7072' - input: - product_category_id: fb-2-15-1 + product_category_id: fr-1-5-1-6 output: product_category_id: - - '499989' + - '7072' - input: - product_category_id: fb-2-15-2 + product_category_id: fr-1-5-2 output: product_category_id: - - '499988' + - '7071' - input: - product_category_id: fb-2-16 + product_category_id: fr-1-6 output: product_category_id: - - '4608' + - '6394' - input: - product_category_id: fb-2-16-1 + product_category_id: fr-1-6-4 output: product_category_id: - - '1529' + - '6394' - input: - product_category_id: fb-2-16-2 + product_category_id: fr-1-6-5 output: product_category_id: - - '4610' + - '6394' - input: - product_category_id: fb-2-16-3 + product_category_id: fr-1-6-6 output: product_category_id: - - '6199' + - '6394' - input: - product_category_id: fb-2-16-4 + product_category_id: fr-1-6-7 output: product_category_id: - - '4611' + - '6394' - input: - product_category_id: fb-2-17 + product_category_id: fr-1-6-9 output: product_category_id: - - '423' + - '6394' - input: - product_category_id: fb-2-17-1 + product_category_id: fr-1-6-10 output: product_category_id: - - '7159' + - '6394' - input: - product_category_id: fb-2-17-10 + product_category_id: fr-1-6-11 output: product_category_id: - - '6194' + - '6394' - input: - product_category_id: fb-2-17-11 + product_category_id: fr-1-6-12 output: product_category_id: - - '3446' + - '6394' - input: - product_category_id: fb-2-17-12 + product_category_id: fr-1-7 output: product_category_id: - - '5743' + - '6969' - input: - product_category_id: fb-2-17-13 + product_category_id: fr-1-8 output: product_category_id: - - '2432' + - '559' - input: - product_category_id: fb-2-17-14 + product_category_id: fr-1-8-2 output: product_category_id: - - '6847' + - '559' - input: - product_category_id: fb-2-17-15 + product_category_id: fr-1-8-3 output: product_category_id: - - '7427' + - '559' - input: - product_category_id: fb-2-17-16 + product_category_id: fr-1-8-4 output: product_category_id: - - '6785' + - '559' - input: - product_category_id: fb-2-17-17 + product_category_id: fr-1-8-5 output: product_category_id: - - '7327' + - '559' - input: - product_category_id: fb-2-17-18 + product_category_id: fr-1-9 output: product_category_id: - - '5745' + - '554' - input: - product_category_id: fb-2-17-2 + product_category_id: fr-2 output: product_category_id: - - '5747' + - '6433' - input: - product_category_id: fb-2-17-2-1 + product_category_id: fr-2-1 output: product_category_id: - - '543651' + - '4437' - input: - product_category_id: fb-2-17-2-2 + product_category_id: fr-2-2 output: product_category_id: - - '543652' + - '505764' - input: - product_category_id: fb-2-17-3 + product_category_id: fr-2-2-1 output: product_category_id: - - '6192' + - '505764' - input: - product_category_id: fb-2-17-4 + product_category_id: fr-2-2-2 output: product_category_id: - - '2392' + - '505764' - input: - product_category_id: fb-2-17-5 + product_category_id: fr-2-2-3 output: product_category_id: - - '1445' + - '505764' - input: - product_category_id: fb-2-17-6 + product_category_id: fr-2-2-4 output: product_category_id: - - '5746' + - '505764' - input: - product_category_id: fb-2-17-7 + product_category_id: fr-2-2-5 output: product_category_id: - - '5744' + - '505764' - input: - product_category_id: fb-2-17-8 + product_category_id: fr-2-2-6 output: product_category_id: - - '3284' + - '505764' - input: - product_category_id: fb-2-17-9 + product_category_id: fr-2-2-7 output: product_category_id: - - '1534' + - '505764' - input: - product_category_id: fb-2-18 + product_category_id: fr-2-2-8 output: product_category_id: - - '2423' + - '505764' - input: - product_category_id: fb-2-19 + product_category_id: fr-2-2-9 output: product_category_id: - - '5807' + - '505764' - input: - product_category_id: fb-2-19-1 + product_category_id: fr-2-2-10 output: product_category_id: - - '6839' + - '505764' - input: - product_category_id: fb-2-19-2 + product_category_id: fr-2-2-11 output: product_category_id: - - '6843' + - '505764' - input: - product_category_id: fb-2-19-3 + product_category_id: fr-2-2-12 output: product_category_id: - - '5808' + - '505764' - input: - product_category_id: fb-2-19-4 + product_category_id: fr-2-2-13 output: product_category_id: - - '5810' + - '505764' - input: - product_category_id: fb-2-19-5 + product_category_id: fr-2-2-14 output: product_category_id: - - '5809' + - '505764' - input: - product_category_id: fb-2-2 + product_category_id: fr-2-2-15 output: product_category_id: - - '6219' + - '505764' - input: - product_category_id: fb-2-2-1 + product_category_id: fr-2-2-16 output: product_category_id: - - '6219' + - '505764' - input: - product_category_id: fb-2-2-2 + product_category_id: fr-2-3 output: product_category_id: - - '6219' + - '6433' - input: - product_category_id: fb-2-3 + product_category_id: fr-2-4 output: product_category_id: - - '4748' + - '451' - input: - product_category_id: fb-2-3-1 + product_category_id: fr-2-5 output: product_category_id: - - '4748' + - '2720' - input: - product_category_id: fb-2-3-2 + product_category_id: fr-2-5-1 output: product_category_id: - - '4748' + - '2720' - input: - product_category_id: fb-2-4 + product_category_id: fr-2-5-2 output: product_category_id: - - '427' + - '2720' - input: - product_category_id: fb-2-4-1 + product_category_id: fr-2-5-3 output: product_category_id: - - '6772' + - '2720' - input: - product_category_id: fb-2-4-10 + product_category_id: fr-2-5-4 output: product_category_id: - - '500074' + - '2720' - input: - product_category_id: fb-2-4-11 + product_category_id: fr-2-5-5 output: product_category_id: - - '1568' + - '2720' - input: - product_category_id: fb-2-4-12 + product_category_id: fr-2-5-7 output: product_category_id: - - '1387' + - '2720' - input: - product_category_id: fb-2-4-13 + product_category_id: fr-2-5-8 output: product_category_id: - - '5760' + - '2720' - input: - product_category_id: fb-2-4-13-1 + product_category_id: fr-2-6 output: product_category_id: - - '5760' + - '2696' - input: - product_category_id: fb-2-4-13-2 + product_category_id: fr-2-6-1 output: product_category_id: - - '5760' + - '2696' - input: - product_category_id: fb-2-4-14 + product_category_id: fr-2-6-2 output: product_category_id: - - '5759' + - '2696' - input: - product_category_id: fb-2-4-15 + product_category_id: fr-2-6-3 output: product_category_id: - - '500076' + - '2696' - input: - product_category_id: fb-2-4-16 + product_category_id: fr-2-6-4 output: product_category_id: - - '6203' + - '2696' - input: - product_category_id: fb-2-4-17 + product_category_id: fr-2-6-5 output: product_category_id: - - '500075' + - '2696' - input: - product_category_id: fb-2-4-18 + product_category_id: fr-2-6-6 output: product_category_id: - - '1969' + - '2696' - input: - product_category_id: fb-2-4-19 + product_category_id: fr-2-6-7 output: product_category_id: - - '4615' + - '2696' - input: - product_category_id: fb-2-4-2 + product_category_id: fr-3 output: product_category_id: - - '6905' + - '441' - input: - product_category_id: fb-2-4-20 + product_category_id: fr-3-1 output: product_category_id: - - '4616' + - '6850' - input: - product_category_id: fb-2-4-21 + product_category_id: fr-3-1-1 output: product_category_id: - - '500089' + - '6850' - input: - product_category_id: fb-2-4-22 + product_category_id: fr-3-1-2 output: product_category_id: - - '4943' + - '6850' - input: - product_category_id: fb-2-4-23 + product_category_id: fr-3-1-3 output: product_category_id: - - '4692' + - '6850' - input: - product_category_id: fb-2-4-24 + product_category_id: fr-3-1-4 output: product_category_id: - - '6783' + - '6850' - input: - product_category_id: fb-2-4-25 + product_category_id: fr-3-1-5 output: product_category_id: - - '500105' + - '6850' - input: - product_category_id: fb-2-4-26 + product_category_id: fr-3-1-6 output: product_category_id: - - '6246' + - '6850' - input: - product_category_id: fb-2-4-3 + product_category_id: fr-3-1-7 output: product_category_id: - - '6845' + - '6850' - input: - product_category_id: fb-2-4-3-1 + product_category_id: fr-3-1-8 output: product_category_id: - - '6854' + - '6850' - input: - product_category_id: fb-2-4-3-2 + product_category_id: fr-3-1-9 output: product_category_id: - - '6844' + - '6850' - input: - product_category_id: fb-2-4-4 + product_category_id: fr-3-1-10 output: product_category_id: - - '5763' + - '6850' - input: - product_category_id: fb-2-4-5 + product_category_id: fr-3-1-11 output: product_category_id: - - '5762' + - '6850' - input: - product_category_id: fb-2-4-6 + product_category_id: fr-3-1-13 output: product_category_id: - - '4947' + - '6850' - input: - product_category_id: fb-2-4-7 + product_category_id: fr-3-1-14 output: product_category_id: - - '6782' + - '6850' - input: - product_category_id: fb-2-4-8 + product_category_id: fr-3-1-15 output: product_category_id: - - '4614' + - '6850' - input: - product_category_id: fb-2-4-9 + product_category_id: fr-3-2 output: product_category_id: - - '2018' + - '6851' - input: - product_category_id: fb-2-5 + product_category_id: fr-3-2-1 output: product_category_id: - - '2660' + - '6851' - input: - product_category_id: fb-2-5-1 + product_category_id: fr-3-2-2 output: product_category_id: - - '6754' + - '6851' - input: - product_category_id: fb-2-5-10 + product_category_id: fr-3-2-3 output: product_category_id: - - '500093' + - '6851' - input: - product_category_id: fb-2-5-10-1 + product_category_id: fr-3-2-4 output: product_category_id: - - '500093' + - '6851' - input: - product_category_id: fb-2-5-10-2 + product_category_id: fr-3-2-5 output: product_category_id: - - '500093' + - '6851' - input: - product_category_id: fb-2-5-10-3 + product_category_id: fr-3-2-6 output: product_category_id: - - '500093' + - '6851' - input: - product_category_id: fb-2-5-11 + product_category_id: fr-3-2-7 output: product_category_id: - - '7506' + - '6851' - input: - product_category_id: fb-2-5-12 + product_category_id: fr-3-2-8 output: product_category_id: - - '2126' + - '6851' - input: - product_category_id: fb-2-5-12-1 + product_category_id: fr-3-2-9 output: product_category_id: - - '2126' + - '6851' - input: - product_category_id: fb-2-5-12-10 + product_category_id: fr-3-2-10 output: product_category_id: - - '2126' + - '6851' - input: - product_category_id: fb-2-5-12-2 + product_category_id: fr-3-2-12 output: product_category_id: - - '2126' + - '6851' - input: - product_category_id: fb-2-5-12-3 + product_category_id: fr-3-2-13 output: product_category_id: - - '2126' + - '6851' - input: - product_category_id: fb-2-5-12-4 + product_category_id: fr-3-2-14 output: product_category_id: - - '2126' + - '6851' - input: - product_category_id: fb-2-5-12-5 + product_category_id: fr-3-3 output: product_category_id: - - '2126' + - '4241' - input: - product_category_id: fb-2-5-12-6 + product_category_id: fr-4 output: product_category_id: - - '2126' + - '6356' - input: - product_category_id: fb-2-5-12-7 + product_category_id: fr-4-1 output: product_category_id: - - '2126' + - '4063' - input: - product_category_id: fb-2-5-12-8 + product_category_id: fr-4-1-1 output: product_category_id: - - '2126' + - '4063' - input: - product_category_id: fb-2-5-12-9 + product_category_id: fr-4-1-2 output: product_category_id: - - '2126' + - '4063' - input: - product_category_id: fb-2-5-13 + product_category_id: fr-4-1-3 output: product_category_id: - - '5771' + - '4063' - input: - product_category_id: fb-2-5-14 + product_category_id: fr-4-1-4 output: product_category_id: - - '5777' + - '4063' - input: - product_category_id: fb-2-5-15 + product_category_id: fr-4-1-5 output: product_category_id: - - '5770' + - '4063' - input: - product_category_id: fb-2-5-16 + product_category_id: fr-4-1-6 output: product_category_id: - - '5752' + - '4063' - input: - product_category_id: fb-2-5-16-1 + product_category_id: fr-4-1-7 output: product_category_id: - - '5755' + - '4063' - input: - product_category_id: fb-2-5-16-2 + product_category_id: fr-4-1-8 output: product_category_id: - - '5756' + - '4063' - input: - product_category_id: fb-2-5-16-3 + product_category_id: fr-4-1-9 output: product_category_id: - - '5753' + - '4063' - input: - product_category_id: fb-2-5-17 + product_category_id: fr-4-1-10 output: product_category_id: - - '6775' + - '4063' - input: - product_category_id: fb-2-5-18 + product_category_id: fr-4-1-11 output: product_category_id: - - '543549' + - '4063' - input: - product_category_id: fb-2-5-19 + product_category_id: fr-4-1-12 output: product_category_id: - - '5105' + - '4063' - input: - product_category_id: fb-2-5-2 + product_category_id: fr-4-1-13 output: product_category_id: - - '5776' + - '4063' - input: - product_category_id: fb-2-5-20 + product_category_id: fr-4-1-14 output: product_category_id: - - '2775' + - '4063' - input: - product_category_id: fb-2-5-21 + product_category_id: fr-4-1-15 output: product_category_id: - - '7127' + - '4063' - input: - product_category_id: fb-2-5-22 + product_category_id: fr-4-1-16 output: product_category_id: - - '5769' + - '4063' - input: - product_category_id: fb-2-5-23 + product_category_id: fr-4-1-17 output: product_category_id: - - '499986' + - '4063' - input: - product_category_id: fb-2-5-24 + product_category_id: fr-4-2 output: product_category_id: - - '5767' + - '447' - input: - product_category_id: fb-2-5-25 + product_category_id: fr-4-3 output: product_category_id: - - '8076' + - '448' - input: - product_category_id: fb-2-5-26 + product_category_id: fr-4-3-1 output: product_category_id: - - '5766' + - '448' - input: - product_category_id: fb-2-5-27 + product_category_id: fr-4-3-2 output: product_category_id: - - '5800' + - '448' - input: - product_category_id: fb-2-5-28 + product_category_id: fr-4-3-3 output: product_category_id: - - '5765' + - '448' - input: - product_category_id: fb-2-5-29 + product_category_id: fr-4-3-4 output: product_category_id: - - '7354' + - '448' - input: - product_category_id: fb-2-5-3 + product_category_id: fr-4-3-5 output: product_category_id: - - '5775' + - '448' - input: - product_category_id: fb-2-5-30 + product_category_id: fr-4-3-6 output: product_category_id: - - '503734' + - '448' - input: - product_category_id: fb-2-5-30-1 + product_category_id: fr-4-3-7 output: product_category_id: - - '503734' + - '448' - input: - product_category_id: fb-2-5-30-2 + product_category_id: fr-4-3-8 output: product_category_id: - - '503734' + - '448' - input: - product_category_id: fb-2-5-30-3 + product_category_id: fr-4-3-9 output: product_category_id: - - '503734' + - '448' - input: - product_category_id: fb-2-5-30-4 + product_category_id: fr-4-3-10 output: product_category_id: - - '503734' + - '448' - input: - product_category_id: fb-2-5-31 + product_category_id: fr-4-3-11 output: product_category_id: - - '499707' + - '448' - input: - product_category_id: fb-2-5-32 + product_category_id: fr-4-3-12 output: product_category_id: - - '6922' + - '448' - input: - product_category_id: fb-2-5-33 + product_category_id: fr-4-3-13 output: product_category_id: - - '5768' + - '448' - input: - product_category_id: fb-2-5-34 + product_category_id: fr-4-3-14 output: product_category_id: - - '2140' + - '448' - input: - product_category_id: fb-2-5-35 + product_category_id: fr-4-4 output: product_category_id: - - '5778' + - '6356' - input: - product_category_id: fb-2-5-36 + product_category_id: fr-4-4-1 output: product_category_id: - - '2905' + - '6356' - input: - product_category_id: fb-2-5-4 + product_category_id: fr-4-4-2 output: product_category_id: - - '2572' + - '6356' - input: - product_category_id: fb-2-5-5 + product_category_id: fr-4-4-3 output: product_category_id: - - '2803' + - '6356' - input: - product_category_id: fb-2-5-6 + product_category_id: fr-4-4-4 output: product_category_id: - - '5774' + - '6356' - input: - product_category_id: fb-2-5-7 + product_category_id: fr-4-4-5 output: product_category_id: - - '6774' + - '6356' - input: - product_category_id: fb-2-5-8 + product_category_id: fr-4-4-6 output: product_category_id: - - '4613' + - '6356' - input: - product_category_id: fb-2-5-9 + product_category_id: fr-4-4-7 output: product_category_id: - - '5773' + - '6356' - input: - product_category_id: fb-2-6 + product_category_id: fr-4-4-8 output: product_category_id: - - '428' + - '6356' - input: - product_category_id: fb-2-6-1 + product_category_id: fr-4-4-9 output: product_category_id: - - '5827' + - '6356' - input: - product_category_id: fb-2-6-1-1 + product_category_id: fr-4-5 output: product_category_id: - - '5827' + - '4195' - input: - product_category_id: fb-2-6-1-2 + product_category_id: fr-4-6 output: product_category_id: - - '5827' + - '463' - input: - product_category_id: fb-2-6-1-3 + product_category_id: fr-4-7 output: product_category_id: - - '5827' + - '465846' - input: - product_category_id: fb-2-6-1-4 + product_category_id: fr-4-8 output: product_category_id: - - '5827' + - '6934' - input: - product_category_id: fb-2-6-2 + product_category_id: fr-4-8-1 output: product_category_id: - - '429' + - '6934' - input: - product_category_id: fb-2-6-3 + product_category_id: fr-4-8-2 output: product_category_id: - - '4418' + - '6934' - input: - product_category_id: fb-2-6-4 + product_category_id: fr-4-8-3 output: product_category_id: - - '1855' + - '6934' - input: - product_category_id: fb-2-6-5 + product_category_id: fr-4-8-4 output: product_category_id: - - '5786' + - '6934' - input: - product_category_id: fb-2-6-5-1 + product_category_id: fr-4-8-5 output: product_category_id: - - '5786' + - '6934' - input: - product_category_id: fb-2-6-5-2 + product_category_id: fr-4-8-6 output: product_category_id: - - '5786' + - '6934' - input: - product_category_id: fb-2-6-6 + product_category_id: fr-4-8-7 output: product_category_id: - - '5787' + - '6934' - input: - product_category_id: fb-2-6-7 + product_category_id: fr-4-8-8 output: product_category_id: - - '6821' + - '6934' - input: - product_category_id: fb-2-6-8 + product_category_id: fr-4-8-9 output: product_category_id: - - '1954' + - '6934' - input: - product_category_id: fb-2-7 + product_category_id: fr-4-8-10 output: product_category_id: - - '5740' + - '6934' - input: - product_category_id: fb-2-7-1 + product_category_id: fr-4-8-11 output: product_category_id: - - '6204' + - '6934' - input: - product_category_id: fb-2-7-10 + product_category_id: fr-4-8-12 output: product_category_id: - - '6830' + - '6934' - input: - product_category_id: fb-2-7-2 + product_category_id: fr-4-8-13 output: product_category_id: - - '6831' + - '6934' - input: - product_category_id: fb-2-7-3 + product_category_id: fr-4-8-14 output: product_category_id: - - '5785' + - '6934' - input: - product_category_id: fb-2-7-4 + product_category_id: fr-4-8-15 output: product_category_id: - - '5742' + - '6934' - input: - product_category_id: fb-2-7-5 + product_category_id: fr-4-8-16 output: product_category_id: - - '5741' + - '6934' - input: - product_category_id: fb-2-7-6 + product_category_id: fr-4-9 output: product_category_id: - - '2188' + - '6539' - input: - product_category_id: fb-2-7-7 + product_category_id: fr-4-10 output: product_category_id: - - '3965' + - '6358' - input: - product_category_id: fb-2-7-8 + product_category_id: fr-4-11 output: product_category_id: - - '1702' + - '6356' - input: - product_category_id: fb-2-7-9 + product_category_id: fr-4-12 output: product_category_id: - - '6784' + - '5938' - input: - product_category_id: fb-2-8 + product_category_id: fr-4-13 output: product_category_id: - - '136' + - '4205' - input: - product_category_id: fb-2-9 + product_category_id: fr-4-13-1 output: product_category_id: - - '5788' + - '6947' - input: - product_category_id: fb-2-9-1 + product_category_id: fr-4-13-2 output: product_category_id: - - '499991' + - '4268' - input: - product_category_id: fb-2-9-1-1 + product_category_id: fr-4-14 output: product_category_id: - - '499991' + - '4148' - input: - product_category_id: fb-2-9-1-2 + product_category_id: fr-4-14-1 output: product_category_id: - - '499991' + - '2081' - input: - product_category_id: fb-2-9-1-3 + product_category_id: fr-4-14-1-1 output: product_category_id: - - '499991' + - '2081' - input: - product_category_id: fb-2-9-1-4 + product_category_id: fr-4-14-1-2 output: product_category_id: - - '499991' + - '2081' - input: - product_category_id: fb-2-9-1-5 + product_category_id: fr-4-14-1-3 output: product_category_id: - - '499991' + - '2081' - input: - product_category_id: fb-2-9-2 + product_category_id: fr-4-14-1-4 output: product_category_id: - - '6873' + - '2081' - input: - product_category_id: fb-2-9-3 + product_category_id: fr-4-14-1-5 output: product_category_id: - - '5789' + - '2081' - input: - product_category_id: fb-3 + product_category_id: fr-4-14-1-6 output: product_category_id: - - '435' + - '2081' - input: - product_category_id: fb-3-2 + product_category_id: fr-4-14-1-7 output: product_category_id: - - '3916' + - '2081' - input: - product_category_id: fb-3-3 + product_category_id: fr-4-14-1-8 output: product_category_id: - - '3151' + - '2081' - input: - product_category_id: fb-3-4 + product_category_id: fr-4-14-1-9 output: product_category_id: - - '3682' + - '2081' - input: - product_category_id: fb-3-5 + product_category_id: fr-4-14-1-10 output: product_category_id: - - '3741' + - '2081' - input: - product_category_id: fb-3-6 + product_category_id: fr-4-14-1-11 output: product_category_id: - - '499963' + - '2081' - input: - product_category_id: fb-3-7 + product_category_id: fr-4-14-2 output: product_category_id: - - '4091' + - '6360' - input: - product_category_id: fb-3-7-1 + product_category_id: fr-4-14-2-1 output: product_category_id: - - '4091' + - '6360' - input: - product_category_id: fb-3-7-2 + product_category_id: fr-4-14-2-3 output: product_category_id: - - '543635' + - '6360' - input: - product_category_id: fb-3-7-3 + product_category_id: fr-4-14-2-4 output: product_category_id: - - '543634' + - '6360' - input: - product_category_id: fr + product_category_id: fr-4-14-2-5 output: product_category_id: - - '436' + - '6360' - input: - product_category_id: fr-1 + product_category_id: fr-4-14-2-6 output: product_category_id: - - '554' + - '6360' - input: - product_category_id: fr-1-1 + product_category_id: fr-4-14-2-7 output: product_category_id: - - '6349' + - '6360' - input: - product_category_id: fr-1-2 + product_category_id: fr-4-14-2-8 output: product_category_id: - - '7068' + - '6360' - input: - product_category_id: fr-1-3 + product_category_id: fr-4-15 output: product_category_id: - - '6393' + - '6357' - input: - product_category_id: fr-1-3-1 + product_category_id: fr-4-16 output: product_category_id: - - '6393' + - '5578' - input: - product_category_id: fr-1-3-10 + product_category_id: fr-5 output: product_category_id: - - '6393' + - '442' - input: - product_category_id: fr-1-3-11 + product_category_id: fr-5-1 output: product_category_id: - - '6393' + - '453' - input: - product_category_id: fr-1-3-2 + product_category_id: fr-5-2 output: product_category_id: - - '6393' + - '6374' - input: - product_category_id: fr-1-3-3 + product_category_id: fr-6 output: product_category_id: - - '6393' + - '7248' - input: - product_category_id: fr-1-3-5 + product_category_id: fr-6-1 output: product_category_id: - - '6393' + - '8206' - input: - product_category_id: fr-1-3-6 + product_category_id: fr-7 output: product_category_id: - - '6393' + - '443' - input: - product_category_id: fr-1-3-7 + product_category_id: fr-7-1 output: product_category_id: - - '6393' + - '6499' - input: - product_category_id: fr-1-3-8 + product_category_id: fr-7-1-1 output: product_category_id: - - '6393' + - '6499' - input: - product_category_id: fr-1-4 + product_category_id: fr-7-1-2 output: product_category_id: - - '558' + - '6499' - input: - product_category_id: fr-1-5 + product_category_id: fr-7-1-3 output: product_category_id: - - '7070' + - '6499' - input: - product_category_id: fr-1-5-1 + product_category_id: fr-7-2 output: product_category_id: - - '7072' + - '438' - input: - product_category_id: fr-1-5-1-1 + product_category_id: fr-7-3 output: product_category_id: - - '7072' + - '456' - input: - product_category_id: fr-1-5-1-2 + product_category_id: fr-7-3-1 output: product_category_id: - - '7072' + - '456' - input: - product_category_id: fr-1-5-1-3 + product_category_id: fr-7-3-2 output: product_category_id: - - '7072' + - '456' - input: - product_category_id: fr-1-5-1-4 + product_category_id: fr-7-3-3 output: product_category_id: - - '7072' + - '456' - input: - product_category_id: fr-1-5-1-5 + product_category_id: fr-7-3-5 output: product_category_id: - - '7072' + - '456' - input: - product_category_id: fr-1-5-1-6 + product_category_id: fr-7-4 output: product_category_id: - - '7072' + - '2919' - input: - product_category_id: fr-1-5-2 + product_category_id: fr-7-5 output: product_category_id: - - '7071' + - '500051' - input: - product_category_id: fr-1-6 + product_category_id: fr-7-6 output: product_category_id: - - '6394' + - '3358' - input: - product_category_id: fr-1-6-10 + product_category_id: fr-7-6-1 output: product_category_id: - - '6394' + - '3358' - input: - product_category_id: fr-1-6-11 + product_category_id: fr-7-6-2 output: product_category_id: - - '6394' + - '3358' - input: - product_category_id: fr-1-6-12 + product_category_id: fr-7-7 output: product_category_id: - - '6394' + - '6800' - input: - product_category_id: fr-1-6-4 + product_category_id: fr-7-8 output: product_category_id: - - '6394' + - '7197' - input: - product_category_id: fr-1-6-5 + product_category_id: fr-7-9 output: product_category_id: - - '6394' + - '5886' - input: - product_category_id: fr-1-6-6 + product_category_id: fr-7-10 output: product_category_id: - - '6394' + - '2002' - input: - product_category_id: fr-1-6-7 + product_category_id: fr-7-10-1 output: product_category_id: - - '6394' + - '2002' - input: - product_category_id: fr-1-6-9 + product_category_id: fr-7-10-4 output: product_category_id: - - '6394' + - '2002' - input: - product_category_id: fr-1-7 + product_category_id: fr-7-10-5 output: product_category_id: - - '6969' + - '2002' - input: - product_category_id: fr-1-8 + product_category_id: fr-7-11 output: product_category_id: - - '559' + - '6859' - input: - product_category_id: fr-1-8-2 + product_category_id: fr-7-12 output: product_category_id: - - '559' + - '1463' - input: - product_category_id: fr-1-8-3 + product_category_id: fr-7-12-1 output: product_category_id: - - '559' + - '1463' - input: - product_category_id: fr-1-8-4 + product_category_id: fr-7-12-2 output: product_category_id: - - '559' + - '1463' - input: - product_category_id: fr-1-8-5 + product_category_id: fr-8 output: product_category_id: - - '559' + - '436' - input: - product_category_id: fr-1-9 + product_category_id: fr-9 output: product_category_id: - - '554' + - '457' - input: product_category_id: fr-10 output: @@ -20478,77 +21463,77 @@ rules: product_category_id: - '6822' - input: - product_category_id: fr-15-3-10 + product_category_id: fr-15-3-2 output: product_category_id: - '6822' - input: - product_category_id: fr-15-3-11 + product_category_id: fr-15-3-3 output: product_category_id: - '6822' - input: - product_category_id: fr-15-3-12 + product_category_id: fr-15-3-4 output: product_category_id: - '6822' - input: - product_category_id: fr-15-3-13 + product_category_id: fr-15-3-5 output: product_category_id: - '6822' - input: - product_category_id: fr-15-3-14 + product_category_id: fr-15-3-6 output: product_category_id: - '6822' - input: - product_category_id: fr-15-3-15 + product_category_id: fr-15-3-7 output: product_category_id: - '6822' - input: - product_category_id: fr-15-3-16 + product_category_id: fr-15-3-8 output: product_category_id: - '6822' - input: - product_category_id: fr-15-3-2 + product_category_id: fr-15-3-9 output: product_category_id: - '6822' - input: - product_category_id: fr-15-3-3 + product_category_id: fr-15-3-10 output: product_category_id: - '6822' - input: - product_category_id: fr-15-3-4 + product_category_id: fr-15-3-11 output: product_category_id: - '6822' - input: - product_category_id: fr-15-3-5 + product_category_id: fr-15-3-12 output: product_category_id: - '6822' - input: - product_category_id: fr-15-3-6 + product_category_id: fr-15-3-13 output: product_category_id: - '6822' - input: - product_category_id: fr-15-3-7 + product_category_id: fr-15-3-14 output: product_category_id: - '6822' - input: - product_category_id: fr-15-3-8 + product_category_id: fr-15-3-15 output: product_category_id: - '6822' - input: - product_category_id: fr-15-3-9 + product_category_id: fr-15-3-16 output: product_category_id: - '6822' @@ -20583,27 +21568,27 @@ rules: product_category_id: - '6828' - input: - product_category_id: fr-15-4-2-15 + product_category_id: fr-15-4-2-5 output: product_category_id: - '6828' - input: - product_category_id: fr-15-4-2-16 + product_category_id: fr-15-4-2-9 output: product_category_id: - '6828' - input: - product_category_id: fr-15-4-2-18 + product_category_id: fr-15-4-2-15 output: product_category_id: - '6828' - input: - product_category_id: fr-15-4-2-5 + product_category_id: fr-15-4-2-16 output: product_category_id: - '6828' - input: - product_category_id: fr-15-4-2-9 + product_category_id: fr-15-4-2-18 output: product_category_id: - '6828' @@ -20647,11 +21632,6 @@ rules: output: product_category_id: - '2684' -- input: - product_category_id: fr-15-6-11 - output: - product_category_id: - - '2684' - input: product_category_id: fr-15-6-2 output: @@ -20682,6 +21662,11 @@ rules: output: product_category_id: - '2684' +- input: + product_category_id: fr-15-6-11 + output: + product_category_id: + - '2684' - input: product_category_id: fr-16 output: @@ -20767,191 +21752,6 @@ rules: output: product_category_id: - '6372' -- input: - product_category_id: fr-2 - output: - product_category_id: - - '6433' -- input: - product_category_id: fr-2-1 - output: - product_category_id: - - '4437' -- input: - product_category_id: fr-2-2 - output: - product_category_id: - - '505764' -- input: - product_category_id: fr-2-2-1 - output: - product_category_id: - - '505764' -- input: - product_category_id: fr-2-2-10 - output: - product_category_id: - - '505764' -- input: - product_category_id: fr-2-2-11 - output: - product_category_id: - - '505764' -- input: - product_category_id: fr-2-2-12 - output: - product_category_id: - - '505764' -- input: - product_category_id: fr-2-2-13 - output: - product_category_id: - - '505764' -- input: - product_category_id: fr-2-2-14 - output: - product_category_id: - - '505764' -- input: - product_category_id: fr-2-2-15 - output: - product_category_id: - - '505764' -- input: - product_category_id: fr-2-2-16 - output: - product_category_id: - - '505764' -- input: - product_category_id: fr-2-2-2 - output: - product_category_id: - - '505764' -- input: - product_category_id: fr-2-2-3 - output: - product_category_id: - - '505764' -- input: - product_category_id: fr-2-2-4 - output: - product_category_id: - - '505764' -- input: - product_category_id: fr-2-2-5 - output: - product_category_id: - - '505764' -- input: - product_category_id: fr-2-2-6 - output: - product_category_id: - - '505764' -- input: - product_category_id: fr-2-2-7 - output: - product_category_id: - - '505764' -- input: - product_category_id: fr-2-2-8 - output: - product_category_id: - - '505764' -- input: - product_category_id: fr-2-2-9 - output: - product_category_id: - - '505764' -- input: - product_category_id: fr-2-3 - output: - product_category_id: - - '6433' -- input: - product_category_id: fr-2-4 - output: - product_category_id: - - '451' -- input: - product_category_id: fr-2-5 - output: - product_category_id: - - '2720' -- input: - product_category_id: fr-2-5-1 - output: - product_category_id: - - '2720' -- input: - product_category_id: fr-2-5-2 - output: - product_category_id: - - '2720' -- input: - product_category_id: fr-2-5-3 - output: - product_category_id: - - '2720' -- input: - product_category_id: fr-2-5-4 - output: - product_category_id: - - '2720' -- input: - product_category_id: fr-2-5-5 - output: - product_category_id: - - '2720' -- input: - product_category_id: fr-2-5-7 - output: - product_category_id: - - '2720' -- input: - product_category_id: fr-2-5-8 - output: - product_category_id: - - '2720' -- input: - product_category_id: fr-2-6 - output: - product_category_id: - - '2696' -- input: - product_category_id: fr-2-6-1 - output: - product_category_id: - - '2696' -- input: - product_category_id: fr-2-6-2 - output: - product_category_id: - - '2696' -- input: - product_category_id: fr-2-6-3 - output: - product_category_id: - - '2696' -- input: - product_category_id: fr-2-6-4 - output: - product_category_id: - - '2696' -- input: - product_category_id: fr-2-6-5 - output: - product_category_id: - - '2696' -- input: - product_category_id: fr-2-6-6 - output: - product_category_id: - - '2696' -- input: - product_category_id: fr-2-6-7 - output: - product_category_id: - - '2696' - input: product_category_id: fr-20 output: @@ -21073,7165 +21873,7210 @@ rules: product_category_id: - '462' - input: - product_category_id: fr-3 + product_category_id: gc output: product_category_id: - - '441' + - '53' - input: - product_category_id: fr-3-1 + product_category_id: ha output: product_category_id: - - '6850' + - '632' - input: - product_category_id: fr-3-1-1 + product_category_id: ha-1 output: product_category_id: - - '6850' + - '503739' - input: - product_category_id: fr-3-1-10 + product_category_id: ha-1-1 output: product_category_id: - - '6850' + - '2277' - input: - product_category_id: fr-3-1-11 + product_category_id: ha-1-1-1 output: product_category_id: - - '6850' + - '1735' - input: - product_category_id: fr-3-1-13 + product_category_id: ha-1-1-2 output: product_category_id: - - '6850' + - '6795' - input: - product_category_id: fr-3-1-14 + product_category_id: ha-1-1-3 output: product_category_id: - - '6850' + - '1479' - input: - product_category_id: fr-3-1-15 + product_category_id: ha-1-1-4 output: product_category_id: - - '6850' + - '7504' - input: - product_category_id: fr-3-1-2 + product_category_id: ha-1-1-5 output: product_category_id: - - '6850' + - '6191' - input: - product_category_id: fr-3-1-3 + product_category_id: ha-1-1-6 output: product_category_id: - - '6850' + - '7503' - input: - product_category_id: fr-3-1-4 + product_category_id: ha-1-1-7 output: product_category_id: - - '6850' + - '1749' - input: - product_category_id: fr-3-1-5 + product_category_id: ha-1-1-8 output: product_category_id: - - '6850' + - '505319' - input: - product_category_id: fr-3-1-6 + product_category_id: ha-1-1-9 output: product_category_id: - - '6850' + - '500088' - input: - product_category_id: fr-3-1-7 + product_category_id: ha-1-1-10 output: product_category_id: - - '6850' + - '7470' - input: - product_category_id: fr-3-1-8 + product_category_id: ha-1-2 output: product_category_id: - - '6850' + - '503742' - input: - product_category_id: fr-3-1-9 + product_category_id: ha-1-3 output: product_category_id: - - '6850' + - '2212' - input: - product_category_id: fr-3-2 + product_category_id: ha-1-3-1 output: product_category_id: - - '6851' + - '2212' - input: - product_category_id: fr-3-2-1 + product_category_id: ha-1-3-2 output: product_category_id: - - '6851' + - '2212' - input: - product_category_id: fr-3-2-10 + product_category_id: ha-1-3-3 output: product_category_id: - - '6851' + - '2212' - input: - product_category_id: fr-3-2-12 + product_category_id: ha-1-4 output: product_category_id: - - '6851' + - '1753' - input: - product_category_id: fr-3-2-13 + product_category_id: ha-1-4-1 output: product_category_id: - - '6851' + - '1753' - input: - product_category_id: fr-3-2-14 + product_category_id: ha-1-4-2 output: product_category_id: - - '6851' + - '1753' - input: - product_category_id: fr-3-2-2 + product_category_id: ha-1-4-4 output: product_category_id: - - '6851' + - '1753' - input: - product_category_id: fr-3-2-3 + product_category_id: ha-1-5 output: product_category_id: - - '6851' + - '503743' - input: - product_category_id: fr-3-2-4 + product_category_id: ha-1-5-1 output: product_category_id: - - '6851' + - '3031' - input: - product_category_id: fr-3-2-5 + product_category_id: ha-1-5-2 output: product_category_id: - - '6851' + - '2282' - input: - product_category_id: fr-3-2-6 + product_category_id: ha-1-5-2-1 + output: + product_category_id: + - '2282' +- input: + product_category_id: ha-1-5-2-2 + output: + product_category_id: + - '2282' +- input: + product_category_id: ha-1-5-2-3 + output: + product_category_id: + - '2282' +- input: + product_category_id: ha-1-5-2-4 + output: + product_category_id: + - '2282' +- input: + product_category_id: ha-1-5-2-5 + output: + product_category_id: + - '2282' +- input: + product_category_id: ha-1-5-2-6 + output: + product_category_id: + - '2282' +- input: + product_category_id: ha-1-5-2-7 + output: + product_category_id: + - '2282' +- input: + product_category_id: ha-1-5-3 + output: + product_category_id: + - '499876' +- input: + product_category_id: ha-1-6 + output: + product_category_id: + - '503740' +- input: + product_category_id: ha-1-6-1 output: product_category_id: - - '6851' + - '1361' - input: - product_category_id: fr-3-2-7 + product_category_id: ha-1-6-2 output: product_category_id: - - '6851' + - '2474' - input: - product_category_id: fr-3-2-8 + product_category_id: ha-1-6-3 output: product_category_id: - - '6851' + - '2058' - input: - product_category_id: fr-3-2-9 + product_category_id: ha-1-6-4 output: product_category_id: - - '6851' + - '1648' - input: - product_category_id: fr-3-3 + product_category_id: ha-1-6-5 output: product_category_id: - - '4241' + - '503738' - input: - product_category_id: fr-4 + product_category_id: ha-1-7 output: product_category_id: - - '6356' + - '505305' - input: - product_category_id: fr-4-1 + product_category_id: ha-1-8 output: product_category_id: - - '4063' + - '503744' - input: - product_category_id: fr-4-1-1 + product_category_id: ha-1-8-1 output: product_category_id: - - '4063' + - '503744' - input: - product_category_id: fr-4-1-10 + product_category_id: ha-1-8-2 output: product_category_id: - - '4063' + - '503744' - input: - product_category_id: fr-4-1-11 + product_category_id: ha-1-8-3 output: product_category_id: - - '4063' + - '503744' - input: - product_category_id: fr-4-1-12 + product_category_id: ha-1-8-4 output: product_category_id: - - '4063' + - '503744' - input: - product_category_id: fr-4-1-13 + product_category_id: ha-1-8-5 output: product_category_id: - - '4063' + - '503744' - input: - product_category_id: fr-4-1-14 + product_category_id: ha-1-8-6 output: product_category_id: - - '4063' + - '503744' - input: - product_category_id: fr-4-1-15 + product_category_id: ha-1-9 output: product_category_id: - - '4063' + - '1995' - input: - product_category_id: fr-4-1-16 + product_category_id: ha-1-9-1 output: product_category_id: - - '4063' + - '1995' - input: - product_category_id: fr-4-1-17 + product_category_id: ha-1-9-2 output: product_category_id: - - '4063' + - '1995' - input: - product_category_id: fr-4-1-2 + product_category_id: ha-1-9-3 output: product_category_id: - - '4063' + - '1995' - input: - product_category_id: fr-4-1-3 + product_category_id: ha-1-10 output: product_category_id: - - '4063' + - '503741' - input: - product_category_id: fr-4-1-4 + product_category_id: ha-1-10-1 output: product_category_id: - - '4063' + - '503741' - input: - product_category_id: fr-4-1-5 + product_category_id: ha-1-10-2 output: product_category_id: - - '4063' + - '503741' - input: - product_category_id: fr-4-1-6 + product_category_id: ha-1-10-3 output: product_category_id: - - '4063' + - '503741' - input: - product_category_id: fr-4-1-7 + product_category_id: ha-1-11 output: product_category_id: - - '4063' + - '505802' - input: - product_category_id: fr-4-1-8 + product_category_id: ha-1-11-1 output: product_category_id: - - '4063' + - '505802' - input: - product_category_id: fr-4-1-9 + product_category_id: ha-1-11-2 output: product_category_id: - - '4063' + - '505802' - input: - product_category_id: fr-4-10 + product_category_id: ha-1-11-3 output: product_category_id: - - '6358' + - '505802' - input: - product_category_id: fr-4-11 + product_category_id: ha-1-11-4 output: product_category_id: - - '6356' + - '505802' - input: - product_category_id: fr-4-12 + product_category_id: ha-1-11-5 output: product_category_id: - - '5938' + - '505802' - input: - product_category_id: fr-4-13 + product_category_id: ha-1-11-6 output: product_category_id: - - '4205' + - '505802' - input: - product_category_id: fr-4-13-1 + product_category_id: ha-1-11-7 output: product_category_id: - - '6947' + - '505802' - input: - product_category_id: fr-4-13-2 + product_category_id: ha-1-11-8 output: product_category_id: - - '4268' + - '505802' - input: - product_category_id: fr-4-14 + product_category_id: ha-1-11-9 output: product_category_id: - - '4148' + - '505802' - input: - product_category_id: fr-4-14-1 + product_category_id: ha-2 output: product_category_id: - - '2081' + - '115' - input: - product_category_id: fr-4-14-1-1 + product_category_id: ha-2-1 output: product_category_id: - - '2081' + - '2729' - input: - product_category_id: fr-4-14-1-10 + product_category_id: ha-2-2 output: product_category_id: - - '2081' + - '6343' - input: - product_category_id: fr-4-14-1-11 + product_category_id: ha-2-2-1 output: product_category_id: - - '2081' + - '2972' - input: - product_category_id: fr-4-14-1-2 + product_category_id: ha-2-2-2 output: product_category_id: - - '2081' + - '6446' - input: - product_category_id: fr-4-14-1-3 + product_category_id: ha-2-2-3 output: product_category_id: - - '2081' + - '503727' - input: - product_category_id: fr-4-14-1-4 + product_category_id: ha-2-2-4 output: product_category_id: - - '2081' + - '99338' - input: - product_category_id: fr-4-14-1-5 + product_category_id: ha-2-2-5 output: product_category_id: - - '2081' + - '1356' - input: - product_category_id: fr-4-14-1-6 + product_category_id: ha-2-2-6 output: product_category_id: - - '2081' + - '2795' - input: - product_category_id: fr-4-14-1-7 + product_category_id: ha-2-2-7 output: product_category_id: - - '2081' + - '499970' - input: - product_category_id: fr-4-14-1-8 + product_category_id: ha-2-2-8 output: product_category_id: - - '2081' + - '2665' - input: - product_category_id: fr-4-14-1-9 + product_category_id: ha-2-2-9 output: product_category_id: - - '2081' + - '6458' - input: - product_category_id: fr-4-14-2 + product_category_id: ha-2-2-9-1 output: product_category_id: - - '6360' + - '6458' - input: - product_category_id: fr-4-14-2-1 + product_category_id: ha-2-2-9-2 output: product_category_id: - - '6360' + - '6458' - input: - product_category_id: fr-4-14-2-3 + product_category_id: ha-2-3 output: product_category_id: - - '6360' + - '119' - input: - product_category_id: fr-4-14-2-4 + product_category_id: ha-2-3-1 output: product_category_id: - - '6360' + - '4468' - input: - product_category_id: fr-4-14-2-5 + product_category_id: ha-2-3-1-1 output: product_category_id: - - '6360' + - '4468' - input: - product_category_id: fr-4-14-2-6 + product_category_id: ha-2-3-1-2 output: product_category_id: - - '6360' + - '4468' - input: - product_category_id: fr-4-14-2-7 + product_category_id: ha-2-3-1-3 output: product_category_id: - - '6360' + - '4468' - input: - product_category_id: fr-4-14-2-8 + product_category_id: ha-2-3-2 output: product_category_id: - - '6360' + - '4634' - input: - product_category_id: fr-4-15 + product_category_id: ha-2-4 output: product_category_id: - - '6357' + - '503776' - input: - product_category_id: fr-4-16 + product_category_id: ha-2-5 output: product_category_id: - - '5578' + - '2826' - input: - product_category_id: fr-4-2 + product_category_id: ha-2-6 output: product_category_id: - - '447' + - '120' - input: - product_category_id: fr-4-3 + product_category_id: ha-2-6-1 output: product_category_id: - - '448' + - '120' - input: - product_category_id: fr-4-3-1 + product_category_id: ha-2-6-2 output: product_category_id: - - '448' + - '120' - input: - product_category_id: fr-4-3-10 + product_category_id: ha-2-6-3 output: product_category_id: - - '448' + - '120' - input: - product_category_id: fr-4-3-11 + product_category_id: ha-2-6-4 output: product_category_id: - - '448' + - '120' - input: - product_category_id: fr-4-3-12 + product_category_id: ha-2-7 output: product_category_id: - - '448' + - '499949' - input: - product_category_id: fr-4-3-13 + product_category_id: ha-2-7-1 output: product_category_id: - - '448' + - '499949' - input: - product_category_id: fr-4-3-14 + product_category_id: ha-2-7-2 output: product_category_id: - - '448' + - '499949' - input: - product_category_id: fr-4-3-2 + product_category_id: ha-2-8 output: product_category_id: - - '448' + - '2030' - input: - product_category_id: fr-4-3-3 + product_category_id: ha-2-9 output: product_category_id: - - '448' + - '122' - input: - product_category_id: fr-4-3-4 + product_category_id: ha-2-9-1 output: product_category_id: - - '448' + - '122' - input: - product_category_id: fr-4-3-5 + product_category_id: ha-2-9-2 output: product_category_id: - - '448' + - '122' - input: - product_category_id: fr-4-3-6 + product_category_id: ha-2-9-3 output: product_category_id: - - '448' + - '122' - input: - product_category_id: fr-4-3-7 + product_category_id: ha-2-9-4 output: product_category_id: - - '448' + - '122' - input: - product_category_id: fr-4-3-8 + product_category_id: ha-2-9-5 output: product_category_id: - - '448' + - '122' - input: - product_category_id: fr-4-3-9 + product_category_id: ha-2-9-6 output: product_category_id: - - '448' + - '122' - input: - product_category_id: fr-4-4 + product_category_id: ha-2-10 output: product_category_id: - - '6356' + - '125' - input: - product_category_id: fr-4-4-1 + product_category_id: ha-2-10-1 output: product_category_id: - - '6356' + - '125' - input: - product_category_id: fr-4-4-2 + product_category_id: ha-2-10-2 output: product_category_id: - - '6356' + - '125' - input: - product_category_id: fr-4-4-3 + product_category_id: ha-2-10-3 output: product_category_id: - - '6356' + - '125' - input: - product_category_id: fr-4-4-4 + product_category_id: ha-2-11 output: product_category_id: - - '6356' + - '7112' - input: - product_category_id: fr-4-4-5 + product_category_id: ha-2-12 output: product_category_id: - - '6356' + - '503777' - input: - product_category_id: fr-4-4-6 + product_category_id: ha-2-12-1 output: product_category_id: - - '6356' + - '503777' - input: - product_category_id: fr-4-4-7 + product_category_id: ha-2-12-2 output: product_category_id: - - '6356' + - '503777' - input: - product_category_id: fr-4-4-8 + product_category_id: ha-2-12-3 output: product_category_id: - - '6356' + - '503777' - input: - product_category_id: fr-4-4-9 + product_category_id: ha-2-13 output: product_category_id: - - '6356' + - '123' - input: - product_category_id: fr-4-5 + product_category_id: ha-2-13-1 output: product_category_id: - - '4195' + - '4544' - input: - product_category_id: fr-4-6 + product_category_id: ha-2-13-2 output: product_category_id: - - '463' + - '121' - input: - product_category_id: fr-4-7 + product_category_id: ha-2-13-3 output: product_category_id: - - '465846' + - '2008' - input: - product_category_id: fr-4-8 + product_category_id: ha-2-13-3-1 output: product_category_id: - - '6934' + - '2008' - input: - product_category_id: fr-4-8-1 + product_category_id: ha-2-13-3-2 output: product_category_id: - - '6934' + - '2008' - input: - product_category_id: fr-4-8-10 + product_category_id: ha-2-13-3-3 output: product_category_id: - - '6934' + - '2008' - input: - product_category_id: fr-4-8-11 + product_category_id: ha-2-13-3-4 output: product_category_id: - - '6934' + - '2008' - input: - product_category_id: fr-4-8-12 + product_category_id: ha-2-13-4 output: product_category_id: - - '6934' + - '8270' - input: - product_category_id: fr-4-8-13 + product_category_id: ha-2-13-4-1 output: product_category_id: - - '6934' + - '8270' - input: - product_category_id: fr-4-8-14 + product_category_id: ha-2-13-4-2 output: product_category_id: - - '6934' + - '8270' - input: - product_category_id: fr-4-8-15 + product_category_id: ha-2-13-4-3 output: product_category_id: - - '6934' + - '8270' - input: - product_category_id: fr-4-8-16 + product_category_id: ha-2-14 output: product_category_id: - - '6934' + - '6943' - input: - product_category_id: fr-4-8-2 + product_category_id: ha-2-14-1 output: product_category_id: - - '6934' + - '6943' - input: - product_category_id: fr-4-8-3 + product_category_id: ha-2-14-2 output: product_category_id: - - '6934' + - '6943' - input: - product_category_id: fr-4-8-4 + product_category_id: ha-2-14-3 output: product_category_id: - - '6934' + - '6943' - input: - product_category_id: fr-4-8-5 + product_category_id: ha-2-15 output: product_category_id: - - '6934' + - '503775' - input: - product_category_id: fr-4-8-6 + product_category_id: ha-2-16 output: product_category_id: - - '6934' + - '7439' - input: - product_category_id: fr-4-8-7 + product_category_id: ha-2-16-1 output: product_category_id: - - '6934' + - '7439' - input: - product_category_id: fr-4-8-8 + product_category_id: ha-2-16-2 output: product_category_id: - - '6934' + - '7439' - input: - product_category_id: fr-4-8-9 + product_category_id: ha-2-16-3 output: product_category_id: - - '6934' + - '7439' - input: - product_category_id: fr-4-9 + product_category_id: ha-2-16-4 output: product_category_id: - - '6539' + - '7439' - input: - product_category_id: fr-5 + product_category_id: ha-2-17 output: product_category_id: - - '442' + - '7004' - input: - product_category_id: fr-5-1 + product_category_id: ha-2-17-1 output: product_category_id: - - '453' + - '7004' - input: - product_category_id: fr-5-2 + product_category_id: ha-2-17-2 output: product_category_id: - - '6374' + - '7004' - input: - product_category_id: fr-6 + product_category_id: ha-2-17-3 output: product_category_id: - - '7248' + - '7004' - input: - product_category_id: fr-6-1 + product_category_id: ha-2-17-4 output: product_category_id: - - '8206' + - '7004' - input: - product_category_id: fr-7 + product_category_id: ha-2-17-5 output: product_category_id: - - '443' + - '7004' - input: - product_category_id: fr-7-1 + product_category_id: ha-2-18 output: product_category_id: - - '6499' + - '7136' - input: - product_category_id: fr-7-1-1 + product_category_id: ha-2-18-1 output: product_category_id: - - '6499' + - '7136' - input: - product_category_id: fr-7-1-2 + product_category_id: ha-2-18-2 output: product_category_id: - - '6499' + - '7136' - input: - product_category_id: fr-7-1-3 + product_category_id: ha-2-19 output: product_category_id: - - '6499' + - '7053' - input: - product_category_id: fr-7-10 + product_category_id: ha-2-19-1 output: product_category_id: - - '2002' + - '7053' - input: - product_category_id: fr-7-10-1 + product_category_id: ha-2-19-2 output: product_category_id: - - '2002' + - '7053' - input: - product_category_id: fr-7-10-4 + product_category_id: ha-2-19-3 output: product_category_id: - - '2002' + - '7053' - input: - product_category_id: fr-7-10-5 + product_category_id: ha-2-19-4 output: product_category_id: - - '2002' + - '7053' - input: - product_category_id: fr-7-11 + product_category_id: ha-2-20 output: product_category_id: - - '6859' + - '505300' - input: - product_category_id: fr-7-12 + product_category_id: ha-2-20-1 output: product_category_id: - - '1463' + - '505300' - input: - product_category_id: fr-7-12-1 + product_category_id: ha-2-20-2 output: product_category_id: - - '1463' + - '505300' - input: - product_category_id: fr-7-12-2 + product_category_id: ha-2-20-3 output: product_category_id: - - '1463' + - '505300' - input: - product_category_id: fr-7-2 + product_category_id: ha-2-20-4 output: product_category_id: - - '438' + - '505300' - input: - product_category_id: fr-7-3 + product_category_id: ha-2-21 output: product_category_id: - - '456' + - '499772' - input: - product_category_id: fr-7-3-1 + product_category_id: ha-2-21-1 output: product_category_id: - - '456' + - '499773' - input: - product_category_id: fr-7-3-2 + product_category_id: ha-2-21-2 output: product_category_id: - - '456' + - '503728' - input: - product_category_id: fr-7-3-3 + product_category_id: ha-2-21-2-1 output: product_category_id: - - '456' + - '503728' - input: - product_category_id: fr-7-3-5 + product_category_id: ha-2-21-2-2 output: product_category_id: - - '456' + - '503728' - input: - product_category_id: fr-7-4 + product_category_id: ha-2-21-2-3 output: product_category_id: - - '2919' + - '503728' - input: - product_category_id: fr-7-5 + product_category_id: ha-2-21-2-4 output: product_category_id: - - '500051' + - '503728' - input: - product_category_id: fr-7-6 + product_category_id: ha-2-21-2-5 output: product_category_id: - - '3358' + - '503728' - input: - product_category_id: fr-7-6-1 + product_category_id: ha-2-22 output: product_category_id: - - '3358' + - '124' - input: - product_category_id: fr-7-6-2 + product_category_id: ha-2-22-1 output: product_category_id: - - '3358' + - '124' - input: - product_category_id: fr-7-7 + product_category_id: ha-2-22-2 output: product_category_id: - - '6800' + - '124' - input: - product_category_id: fr-7-8 + product_category_id: ha-2-22-3 output: product_category_id: - - '7197' + - '124' - input: - product_category_id: fr-7-9 + product_category_id: ha-2-22-4 output: product_category_id: - - '5886' + - '124' - input: - product_category_id: fr-8 + product_category_id: ha-2-22-5 output: product_category_id: - - '436' + - '124' - input: - product_category_id: fr-9 + product_category_id: ha-2-22-6 output: product_category_id: - - '457' + - '124' - input: - product_category_id: gc + product_category_id: ha-3 output: product_category_id: - - '53' + - '128' - input: - product_category_id: ha + product_category_id: ha-3-1 output: product_category_id: - - '632' + - '502983' - input: - product_category_id: ha-1 + product_category_id: ha-3-2 output: product_category_id: - - '503739' + - '502973' - input: - product_category_id: ha-1-1 + product_category_id: ha-3-2-1 output: product_category_id: - - '2277' + - '502973' - input: - product_category_id: ha-1-1-1 + product_category_id: ha-3-2-2 output: product_category_id: - - '1735' + - '502973' - input: - product_category_id: ha-1-1-10 + product_category_id: ha-3-2-3 output: product_category_id: - - '7470' + - '502973' - input: - product_category_id: ha-1-1-2 + product_category_id: ha-3-2-4 output: product_category_id: - - '6795' + - '502973' - input: - product_category_id: ha-1-1-3 + product_category_id: ha-3-3 output: product_category_id: - - '1479' + - '1352' - input: - product_category_id: ha-1-1-4 + product_category_id: ha-3-4 output: product_category_id: - - '7504' + - '1919' - input: - product_category_id: ha-1-1-5 + product_category_id: ha-3-4-1 output: product_category_id: - - '6191' + - '1919' - input: - product_category_id: ha-1-1-6 + product_category_id: ha-3-4-2 output: product_category_id: - - '7503' + - '1919' - input: - product_category_id: ha-1-1-7 + product_category_id: ha-3-4-3 output: product_category_id: - - '1749' + - '1919' - input: - product_category_id: ha-1-1-8 + product_category_id: ha-3-5 output: product_category_id: - - '505319' + - '502986' - input: - product_category_id: ha-1-1-9 + product_category_id: ha-3-5-1 output: product_category_id: - - '500088' + - '502986' - input: - product_category_id: ha-1-10 + product_category_id: ha-3-5-2 output: product_category_id: - - '503741' + - '502986' - input: - product_category_id: ha-1-10-1 + product_category_id: ha-3-6 output: product_category_id: - - '503741' + - '1788' - input: - product_category_id: ha-1-10-2 + product_category_id: ha-3-6-1 output: product_category_id: - - '503741' + - '1788' - input: - product_category_id: ha-1-10-3 + product_category_id: ha-3-6-2 output: product_category_id: - - '503741' + - '1788' - input: - product_category_id: ha-1-11 + product_category_id: ha-3-6-3 output: product_category_id: - - '505802' + - '1788' - input: - product_category_id: ha-1-11-1 + product_category_id: ha-3-7 output: product_category_id: - - '505802' + - '502984' - input: - product_category_id: ha-1-11-2 + product_category_id: ha-3-8 output: product_category_id: - - '505802' + - '499958' - input: - product_category_id: ha-1-11-3 + product_category_id: ha-3-8-1 output: product_category_id: - - '505802' + - '499958' - input: - product_category_id: ha-1-11-4 + product_category_id: ha-3-8-2 output: product_category_id: - - '505802' + - '499958' - input: - product_category_id: ha-1-11-5 + product_category_id: ha-3-8-3 output: product_category_id: - - '505802' + - '499958' - input: - product_category_id: ha-1-11-6 + product_category_id: ha-3-8-4 output: product_category_id: - - '505802' + - '499958' - input: - product_category_id: ha-1-11-7 + product_category_id: ha-4 output: product_category_id: - - '505802' + - '543575' - input: - product_category_id: ha-1-11-8 + product_category_id: ha-4-1 output: product_category_id: - - '505802' + - '543703' - input: - product_category_id: ha-1-11-9 + product_category_id: ha-4-2 output: product_category_id: - - '505802' + - '543576' - input: - product_category_id: ha-1-2 + product_category_id: ha-4-2-1 output: product_category_id: - - '503742' + - '543579' - input: - product_category_id: ha-1-3 + product_category_id: ha-4-2-2 output: product_category_id: - - '2212' + - '543578' - input: - product_category_id: ha-1-3-1 + product_category_id: ha-4-3 output: product_category_id: - - '2212' + - '543577' - input: - product_category_id: ha-1-3-2 + product_category_id: ha-5 output: product_category_id: - - '2212' + - '502975' - input: - product_category_id: ha-1-3-3 + product_category_id: ha-5-1 output: product_category_id: - - '2212' + - '502975' - input: - product_category_id: ha-1-4 + product_category_id: ha-5-2 output: product_category_id: - - '1753' + - '502975' - input: - product_category_id: ha-1-4-1 + product_category_id: ha-5-3 output: product_category_id: - - '1753' + - '502975' - input: - product_category_id: ha-1-4-2 + product_category_id: ha-5-4 output: product_category_id: - - '1753' + - '502975' - input: - product_category_id: ha-1-4-4 + product_category_id: ha-5-5 output: product_category_id: - - '1753' + - '502975' - input: - product_category_id: ha-1-5 + product_category_id: ha-6 output: product_category_id: - - '503743' + - '2878' - input: - product_category_id: ha-1-5-1 + product_category_id: ha-6-1 output: product_category_id: - - '3031' + - '7092' - input: - product_category_id: ha-1-5-2 + product_category_id: ha-6-2 output: product_category_id: - - '2282' + - '4696' - input: - product_category_id: ha-1-5-2-1 + product_category_id: ha-6-2-1 output: product_category_id: - - '2282' + - '232167' - input: - product_category_id: ha-1-5-2-2 + product_category_id: ha-6-2-2 output: product_category_id: - - '2282' + - '4697' - input: - product_category_id: ha-1-5-2-3 + product_category_id: ha-6-2-3 output: product_category_id: - - '2282' + - '4698' - input: - product_category_id: ha-1-5-2-4 + product_category_id: ha-6-2-4 output: product_category_id: - - '2282' + - '4699' - input: - product_category_id: ha-1-5-2-5 + product_category_id: ha-6-2-5 output: product_category_id: - - '2282' + - '4700' - input: - product_category_id: ha-1-5-2-6 + product_category_id: ha-6-3 output: product_category_id: - - '2282' + - '499981' - input: - product_category_id: ha-1-5-2-7 + product_category_id: ha-6-4 output: product_category_id: - - '2282' + - '502977' - input: - product_category_id: ha-1-5-3 + product_category_id: ha-6-4-1 output: product_category_id: - - '499876' + - '6298' - input: - product_category_id: ha-1-6 + product_category_id: ha-6-4-2 output: product_category_id: - - '503740' + - '1492' - input: - product_category_id: ha-1-6-1 + product_category_id: ha-6-4-3 output: product_category_id: - - '1361' + - '4469' - input: - product_category_id: ha-1-6-2 + product_category_id: ha-6-4-4 output: product_category_id: - - '2474' + - '3053' - input: - product_category_id: ha-1-6-3 + product_category_id: ha-6-4-5 output: product_category_id: - - '2058' + - '6297' - input: - product_category_id: ha-1-6-4 + product_category_id: ha-6-4-6 output: product_category_id: - - '1648' + - '5119' - input: - product_category_id: ha-1-6-5 + product_category_id: ha-6-4-7 output: product_category_id: - - '503738' + - '6904' - input: - product_category_id: ha-1-7 + product_category_id: ha-6-5 output: product_category_id: - - '505305' + - '1318' - input: - product_category_id: ha-1-8 + product_category_id: ha-6-5-1 output: product_category_id: - - '503744' + - '1318' - input: - product_category_id: ha-1-8-1 + product_category_id: ha-6-5-2 output: product_category_id: - - '503744' + - '1318' - input: - product_category_id: ha-1-8-2 + product_category_id: ha-6-5-3 output: product_category_id: - - '503744' + - '1318' - input: - product_category_id: ha-1-8-3 + product_category_id: ha-6-6 output: product_category_id: - - '503744' + - '7086' - input: - product_category_id: ha-1-8-4 + product_category_id: ha-6-7 output: product_category_id: - - '503744' + - '7270' - input: - product_category_id: ha-1-8-5 + product_category_id: ha-6-8 output: product_category_id: - - '503744' + - '8470' - input: - product_category_id: ha-1-8-6 + product_category_id: ha-6-9 output: product_category_id: - - '503744' + - '1979' - input: - product_category_id: ha-1-9 + product_category_id: ha-6-10 output: product_category_id: - - '1995' + - '1816' - input: - product_category_id: ha-1-9-1 + product_category_id: ha-6-11 output: product_category_id: - - '1995' + - '7557' - input: - product_category_id: ha-1-9-2 + product_category_id: ha-6-11-1 output: product_category_id: - - '1995' + - '7557' - input: - product_category_id: ha-1-9-3 + product_category_id: ha-6-11-2 output: product_category_id: - - '1995' + - '7557' - input: - product_category_id: ha-10 + product_category_id: ha-6-11-3 output: product_category_id: - - '133' + - '7557' - input: - product_category_id: ha-10-1 + product_category_id: ha-6-12 output: product_category_id: - - '1810' + - '6841' - input: - product_category_id: ha-10-1-1 + product_category_id: ha-6-13 output: product_category_id: - - '6732' + - '8112' - input: - product_category_id: ha-10-1-10 + product_category_id: ha-6-14 output: product_category_id: - - '2466' + - '500054' - input: - product_category_id: ha-10-1-10-1 + product_category_id: ha-6-14-1 output: product_category_id: - - '2466' + - '1508' - input: - product_category_id: ha-10-1-10-2 + product_category_id: ha-6-14-2 output: product_category_id: - - '2466' + - '2408' - input: - product_category_id: ha-10-1-10-3 + product_category_id: ha-6-14-2-1 output: product_category_id: - - '2466' + - '2408' - input: - product_category_id: ha-10-1-10-4 + product_category_id: ha-6-14-2-2 output: product_category_id: - - '2466' + - '2408' - input: - product_category_id: ha-10-1-10-5 + product_category_id: ha-6-14-2-3 output: product_category_id: - - '2466' + - '2408' - input: - product_category_id: ha-10-1-2 + product_category_id: ha-6-14-2-4 output: product_category_id: - - '499697' + - '2408' - input: - product_category_id: ha-10-1-2-1 + product_category_id: ha-6-14-2-5 output: product_category_id: - - '499697' + - '2408' - input: - product_category_id: ha-10-1-2-2 + product_category_id: ha-6-14-2-6 output: product_category_id: - - '499697' + - '2408' - input: - product_category_id: ha-10-1-3 + product_category_id: ha-6-14-2-7 output: product_category_id: - - '2068' + - '2408' - input: - product_category_id: ha-10-1-4 + product_category_id: ha-6-14-2-8 output: product_category_id: - - '2710' + - '2408' - input: - product_category_id: ha-10-1-4-1 + product_category_id: ha-6-14-2-9 output: product_category_id: - - '2710' + - '2408' - input: - product_category_id: ha-10-1-4-2 + product_category_id: ha-6-14-2-10 output: product_category_id: - - '2710' + - '2408' - input: - product_category_id: ha-10-1-5 + product_category_id: ha-6-14-2-11 output: product_category_id: - - '2909' + - '2408' - input: - product_category_id: ha-10-1-5-1 + product_category_id: ha-6-14-2-12 output: product_category_id: - - '2909' + - '2408' - input: - product_category_id: ha-10-1-5-2 + product_category_id: ha-6-14-2-13 output: product_category_id: - - '2909' + - '2408' - input: - product_category_id: ha-10-1-6 + product_category_id: ha-6-14-2-14 output: product_category_id: - - '2359' + - '2408' - input: - product_category_id: ha-10-1-6-1 + product_category_id: ha-6-14-3 output: product_category_id: - - '2359' + - '1739' - input: - product_category_id: ha-10-1-6-2 + product_category_id: ha-6-14-4 output: product_category_id: - - '2359' + - '7062' - input: - product_category_id: ha-10-1-7 + product_category_id: ha-6-14-5 output: product_category_id: - - '1694' + - '2230' - input: - product_category_id: ha-10-1-8 + product_category_id: ha-6-14-6 output: product_category_id: - - '2634' + - '2251' - input: - product_category_id: ha-10-1-9 + product_category_id: ha-6-14-6-2 output: product_category_id: - - '2611' + - '2251' - input: - product_category_id: ha-10-1-9-1 + product_category_id: ha-6-14-6-3 output: product_category_id: - - '2611' + - '2251' - input: - product_category_id: ha-10-1-9-2 + product_category_id: ha-6-14-6-4 output: product_category_id: - - '2611' + - '2251' - input: - product_category_id: ha-10-10 + product_category_id: ha-6-14-6-6 output: product_category_id: - - '1723' + - '2251' - input: - product_category_id: ha-10-2 + product_category_id: ha-6-14-6-7 output: product_category_id: - - '504635' + - '2251' - input: - product_category_id: ha-10-2-1 + product_category_id: ha-6-14-6-8 output: product_category_id: - - '2996' + - '2251' - input: - product_category_id: ha-10-2-1-1 + product_category_id: ha-6-14-6-9 output: product_category_id: - - '505368' + - '2251' - input: - product_category_id: ha-10-2-1-2 + product_category_id: ha-6-14-6-10 output: product_category_id: - - '5508' + - '2251' - input: - product_category_id: ha-10-2-1-3 + product_category_id: ha-6-14-6-11 output: product_category_id: - - '2463' + - '2251' - input: - product_category_id: ha-10-2-1-3-1 + product_category_id: ha-6-14-6-12 output: product_category_id: - - '2463' + - '2251' - input: - product_category_id: ha-10-2-1-3-2 + product_category_id: ha-6-14-6-13 output: product_category_id: - - '2463' + - '2251' - input: - product_category_id: ha-10-2-2 + product_category_id: ha-6-14-6-14 output: product_category_id: - - '504637' + - '2251' - input: - product_category_id: ha-10-2-2-1 + product_category_id: ha-6-14-6-15 output: product_category_id: - - '2851' + - '2251' - input: - product_category_id: ha-10-2-2-1-1 + product_category_id: ha-6-14-7 output: product_category_id: - - '2851' + - '500055' - input: - product_category_id: ha-10-2-2-1-2 + product_category_id: ha-6-14-8 output: product_category_id: - - '2851' + - '2195' - input: - product_category_id: ha-10-2-2-2 + product_category_id: ha-6-15 output: product_category_id: - - '1514' + - '1771' - input: - product_category_id: ha-10-2-2-3 + product_category_id: ha-6-16 output: product_category_id: - - '2257' + - '503773' - input: - product_category_id: ha-10-2-2-4 + product_category_id: ha-6-16-1 output: product_category_id: - - '1932' + - '503764' - input: - product_category_id: ha-10-2-2-5 + product_category_id: ha-6-16-2 output: product_category_id: - - '1407' + - '502978' - input: - product_category_id: ha-10-2-2-6 + product_category_id: ha-6-16-3 output: product_category_id: - - '1319' + - '503770' - input: - product_category_id: ha-10-2-2-7 + product_category_id: ha-6-16-4 output: product_category_id: - - '2170' + - '502992' - input: - product_category_id: ha-10-2-3 + product_category_id: ha-6-17 output: product_category_id: - - '504636' + - '6770' - input: - product_category_id: ha-10-2-3-1 + product_category_id: ha-6-18 output: product_category_id: - - '504636' + - '503731' - input: - product_category_id: ha-10-2-3-2 + product_category_id: ha-6-19 output: product_category_id: - - '504636' + - '500030' - input: - product_category_id: ha-10-2-3-3 + product_category_id: ha-6-19-1 output: product_category_id: - - '504636' + - '500030' - input: - product_category_id: ha-10-2-4 + product_category_id: ha-6-19-2 output: product_category_id: - - '1489' + - '500030' - input: - product_category_id: ha-10-2-4-1 + product_category_id: ha-6-20 output: product_category_id: - - '8115' + - '6769' - input: - product_category_id: ha-10-2-4-2 + product_category_id: ha-6-20-1 output: product_category_id: - - '8116' + - '6769' - input: - product_category_id: ha-10-2-4-2-1 + product_category_id: ha-6-20-2 output: product_category_id: - - '8116' + - '6769' - input: - product_category_id: ha-10-2-4-2-2 + product_category_id: ha-6-21 output: product_category_id: - - '8116' + - '8113' - input: - product_category_id: ha-10-2-4-2-3 + product_category_id: ha-6-22 output: product_category_id: - - '8116' + - '499933' - input: - product_category_id: ha-10-2-5 + product_category_id: ha-6-22-1 output: product_category_id: - - '1458' + - '499933' - input: - product_category_id: ha-10-2-5-1 + product_category_id: ha-6-22-2 output: product_category_id: - - '1458' + - '499933' - input: - product_category_id: ha-10-2-5-2 + product_category_id: ha-6-22-3 output: product_category_id: - - '1458' + - '499933' - input: - product_category_id: ha-10-2-5-3 + product_category_id: ha-6-23 output: product_category_id: - - '1458' + - '4988' - input: - product_category_id: ha-10-2-6 + product_category_id: ha-6-24 output: product_category_id: - - '2206' + - '3974' - input: - product_category_id: ha-10-2-6-1 + product_category_id: ha-6-24-1 output: product_category_id: - - '8320' + - '4199' - input: - product_category_id: ha-10-2-6-1-1 + product_category_id: ha-6-24-1-1 output: product_category_id: - - '8320' + - '4199' - input: - product_category_id: ha-10-2-6-1-2 + product_category_id: ha-6-24-1-2 output: product_category_id: - - '8320' + - '4199' - input: - product_category_id: ha-10-2-6-2 + product_category_id: ha-6-24-1-3 output: product_category_id: - - '8277' + - '4199' - input: - product_category_id: ha-10-2-6-2-1 + product_category_id: ha-6-24-2 output: product_category_id: - - '8277' + - '2485' - input: - product_category_id: ha-10-2-6-2-2 + product_category_id: ha-6-24-2-1 output: product_category_id: - - '8277' + - '2485' - input: - product_category_id: ha-10-2-6-3 + product_category_id: ha-6-24-2-2 output: product_category_id: - - '504638' + - '2485' - input: - product_category_id: ha-10-2-6-3-1 + product_category_id: ha-6-24-2-3 output: product_category_id: - - '504638' + - '2485' - input: - product_category_id: ha-10-2-6-3-2 + product_category_id: ha-6-24-3 output: product_category_id: - - '504638' + - '6876' - input: - product_category_id: ha-10-2-6-4 + product_category_id: ha-6-24-4 output: product_category_id: - - '4728' + - '3980' - input: - product_category_id: ha-10-2-6-5 + product_category_id: ha-6-24-4-1 output: product_category_id: - - '2088' + - '3980' - input: - product_category_id: ha-10-2-6-6 + product_category_id: ha-6-24-4-2 output: product_category_id: - - '1779' + - '3980' - input: - product_category_id: ha-10-2-6-6-1 + product_category_id: ha-6-24-4-3 output: product_category_id: - - '1779' + - '3980' - input: - product_category_id: ha-10-2-6-6-2 + product_category_id: ha-6-24-5 output: product_category_id: - - '1779' + - '3280' - input: - product_category_id: ha-10-2-6-6-3 + product_category_id: ha-6-24-5-1 output: product_category_id: - - '1779' + - '3280' - input: - product_category_id: ha-10-2-6-7 + product_category_id: ha-6-24-5-2 output: product_category_id: - - '581' + - '3280' - input: - product_category_id: ha-10-2-6-7-1 + product_category_id: ha-6-24-6 output: product_category_id: - - '581' + - '500103' - input: - product_category_id: ha-10-2-6-7-2 + product_category_id: ha-6-24-6-1 output: product_category_id: - - '581' + - '500103' - input: - product_category_id: ha-10-2-6-8 + product_category_id: ha-6-24-6-2 output: product_category_id: - - '7130' + - '500103' - input: - product_category_id: ha-10-2-6-8-1 + product_category_id: ha-6-24-7 output: product_category_id: - - '7130' + - '4031' - input: - product_category_id: ha-10-2-6-8-2 + product_category_id: ha-6-24-8 output: product_category_id: - - '7130' + - '3919' - input: - product_category_id: ha-10-2-6-9 + product_category_id: ha-6-24-8-1 output: product_category_id: - - '5048' + - '3919' - input: - product_category_id: ha-10-2-7 + product_category_id: ha-6-24-8-2 output: product_category_id: - - '1963' + - '3919' - input: - product_category_id: ha-10-2-7-1 + product_category_id: ha-6-25 output: product_category_id: - - '2410' + - '505320' - input: - product_category_id: ha-10-2-8 + product_category_id: ha-7 output: product_category_id: - - '2691' + - '500096' - input: - product_category_id: ha-10-2-8-1 + product_category_id: ha-7-1 output: product_category_id: - - '1425' + - '500099' - input: - product_category_id: ha-10-2-8-1-1 + product_category_id: ha-7-1-1 output: product_category_id: - - '1425' + - '500099' - input: - product_category_id: ha-10-2-8-1-2 + product_category_id: ha-7-1-2 output: product_category_id: - - '1425' + - '500099' - input: - product_category_id: ha-10-2-8-2 + product_category_id: ha-7-1-3 output: product_category_id: - - '504634' + - '500099' - input: - product_category_id: ha-10-2-8-2-1 + product_category_id: ha-7-2 output: product_category_id: - - '504634' + - '500098' - input: - product_category_id: ha-10-2-8-2-2 + product_category_id: ha-7-2-1 output: product_category_id: - - '504634' + - '500098' - input: - product_category_id: ha-10-2-8-3 + product_category_id: ha-7-2-2 output: product_category_id: - - '1865' + - '500098' - input: - product_category_id: ha-10-2-8-4 + product_category_id: ha-7-2-3 output: product_category_id: - - '7358' + - '500098' - input: - product_category_id: ha-10-2-8-5 + product_category_id: ha-7-3 output: product_category_id: - - '7446' + - '500097' - input: - product_category_id: ha-10-2-8-6 + product_category_id: ha-7-3-1 output: product_category_id: - - '5666' + - '500097' - input: - product_category_id: ha-10-2-8-7 + product_category_id: ha-7-3-2 output: product_category_id: - - '2817' + - '500097' - input: - product_category_id: ha-10-2-8-7-1 + product_category_id: ha-7-3-5 output: product_category_id: - - '2817' + - '500097' - input: - product_category_id: ha-10-2-8-7-2 + product_category_id: ha-7-4 output: product_category_id: - - '2817' + - '500102' - input: - product_category_id: ha-10-2-8-8 + product_category_id: ha-7-4-1 output: product_category_id: - - '5665' + - '500102' - input: - product_category_id: ha-10-2-8-8-1 + product_category_id: ha-7-4-2 output: product_category_id: - - '5665' + - '500102' - input: - product_category_id: ha-10-2-8-8-2 + product_category_id: ha-7-4-3 output: product_category_id: - - '5665' + - '500102' - input: - product_category_id: ha-10-2-8-9 + product_category_id: ha-7-5 output: product_category_id: - - '2478' + - '500101' - input: - product_category_id: ha-10-3 + product_category_id: ha-7-5-1 output: product_category_id: - - '1673' + - '500101' - input: - product_category_id: ha-10-3-1 + product_category_id: ha-7-5-2 output: product_category_id: - - '499999' + - '500101' - input: - product_category_id: ha-10-3-2 + product_category_id: ha-7-5-3 output: product_category_id: - - '1636' + - '500101' - input: - product_category_id: ha-10-3-2-1 + product_category_id: ha-7-6 output: product_category_id: - - '1636' + - '500100' - input: - product_category_id: ha-10-3-2-2 + product_category_id: ha-8 output: product_category_id: - - '1636' + - '499873' - input: - product_category_id: ha-10-3-2-3 + product_category_id: ha-8-1 output: product_category_id: - - '1636' + - '500090' - input: - product_category_id: ha-10-3-3 + product_category_id: ha-8-2 output: product_category_id: - - '2032' + - '499874' - input: - product_category_id: ha-10-3-3-1 + product_category_id: ha-8-3 output: product_category_id: - - '2032' + - '1519' - input: - product_category_id: ha-10-3-3-2 + product_category_id: ha-8-3-1 output: product_category_id: - - '2032' + - '2238' - input: - product_category_id: ha-10-3-3-3 + product_category_id: ha-8-3-2 output: product_category_id: - - '2032' + - '500043' - input: - product_category_id: ha-10-3-4 + product_category_id: ha-8-3-3 output: product_category_id: - - '7244' + - '1897' - input: - product_category_id: ha-10-3-5 + product_category_id: ha-8-4 output: product_category_id: - - '1687' + - '2766' - input: - product_category_id: ha-10-3-5-1 + product_category_id: ha-9 output: product_category_id: - - '2886' + - '1974' - input: - product_category_id: ha-10-3-5-1-1 + product_category_id: ha-9-1 output: product_category_id: - - '2886' + - '6488' - input: - product_category_id: ha-10-3-5-1-2 + product_category_id: ha-9-2 output: product_category_id: - - '2886' + - '8067' - input: - product_category_id: ha-10-3-5-1-3 + product_category_id: ha-9-3 output: product_category_id: - - '2886' + - '1870' - input: - product_category_id: ha-10-3-5-2 + product_category_id: ha-9-3-1 output: product_category_id: - - '2757' + - '1870' - input: - product_category_id: ha-10-3-5-2-1 + product_category_id: ha-9-3-3 output: product_category_id: - - '2757' + - '1870' - input: - product_category_id: ha-10-3-5-2-2 + product_category_id: ha-9-4 output: product_category_id: - - '2757' + - '503730' - input: - product_category_id: ha-10-3-5-2-3 + product_category_id: ha-9-4-1 output: product_category_id: - - '2757' + - '503730' - input: - product_category_id: ha-10-3-6 + product_category_id: ha-9-4-2 output: product_category_id: - - '2062' + - '503730' - input: - product_category_id: ha-10-3-6-1 + product_category_id: ha-9-4-3 output: product_category_id: - - '2376' + - '503730' - input: - product_category_id: ha-10-3-6-2 + product_category_id: ha-9-4-5 output: product_category_id: - - '1921' + - '503730' - input: - product_category_id: ha-10-3-6-2-1 + product_category_id: ha-10 output: product_category_id: - - '1921' + - '133' - input: - product_category_id: ha-10-3-6-2-2 + product_category_id: ha-10-1 output: product_category_id: - - '1921' + - '1810' - input: - product_category_id: ha-10-3-6-2-3 + product_category_id: ha-10-1-1 output: product_category_id: - - '1921' + - '6732' - input: - product_category_id: ha-10-3-6-3 + product_category_id: ha-10-1-2 output: product_category_id: - - '1746' + - '499697' - input: - product_category_id: ha-10-4 + product_category_id: ha-10-1-2-1 output: product_category_id: - - '2570' + - '499697' - input: - product_category_id: ha-10-4-1 + product_category_id: ha-10-1-2-2 output: product_category_id: - - '2570' + - '499697' - input: - product_category_id: ha-10-4-2 + product_category_id: ha-10-1-3 output: product_category_id: - - '2570' + - '2068' - input: - product_category_id: ha-10-4-3 + product_category_id: ha-10-1-4 output: product_category_id: - - '2570' + - '2710' - input: - product_category_id: ha-10-5 + product_category_id: ha-10-1-4-1 output: product_category_id: - - '2216' + - '2710' - input: - product_category_id: ha-10-5-1 + product_category_id: ha-10-1-4-2 output: product_category_id: - - '2216' + - '2710' - input: - product_category_id: ha-10-5-2 + product_category_id: ha-10-1-5 output: product_category_id: - - '2216' + - '2909' - input: - product_category_id: ha-10-5-3 + product_category_id: ha-10-1-5-1 output: product_category_id: - - '2216' + - '2909' - input: - product_category_id: ha-10-6 + product_category_id: ha-10-1-5-2 output: product_category_id: - - '2203' + - '2909' - input: - product_category_id: ha-10-6-1 + product_category_id: ha-10-1-6 output: product_category_id: - - '2203' + - '2359' - input: - product_category_id: ha-10-6-2 + product_category_id: ha-10-1-6-1 output: product_category_id: - - '2203' + - '2359' - input: - product_category_id: ha-10-6-3 + product_category_id: ha-10-1-6-2 output: product_category_id: - - '2203' + - '2359' - input: - product_category_id: ha-10-7 + product_category_id: ha-10-1-7 output: product_category_id: - - '2273' + - '1694' - input: - product_category_id: ha-10-7-1 + product_category_id: ha-10-1-8 output: product_category_id: - - '2055' + - '2634' - input: - product_category_id: ha-10-7-2 + product_category_id: ha-10-1-9 output: product_category_id: - - '2343' + - '2611' - input: - product_category_id: ha-10-7-2-1 + product_category_id: ha-10-1-9-1 output: product_category_id: - - '1821' + - '2611' - input: - product_category_id: ha-10-7-2-2 + product_category_id: ha-10-1-9-2 output: product_category_id: - - '1354' + - '2611' - input: - product_category_id: ha-10-7-3 + product_category_id: ha-10-1-10 output: product_category_id: - - '1390' + - '2466' - input: - product_category_id: ha-10-7-4 + product_category_id: ha-10-1-10-1 output: product_category_id: - - '2171' + - '2466' - input: - product_category_id: ha-10-7-4-1 + product_category_id: ha-10-1-10-2 output: product_category_id: - - '2063' + - '2466' - input: - product_category_id: ha-10-7-4-2 + product_category_id: ha-10-1-10-3 output: product_category_id: - - '2406' + - '2466' - input: - product_category_id: ha-10-7-5 + product_category_id: ha-10-1-10-4 output: product_category_id: - - '5646' + - '2466' - input: - product_category_id: ha-10-7-6 + product_category_id: ha-10-1-10-5 output: product_category_id: - - '1952' + - '2466' - input: - product_category_id: ha-10-7-6-1 + product_category_id: ha-10-2 output: product_category_id: - - '1952' + - '504635' - input: - product_category_id: ha-10-7-6-2 + product_category_id: ha-10-2-1 output: product_category_id: - - '1952' + - '2996' - input: - product_category_id: ha-10-8 + product_category_id: ha-10-2-1-1 output: product_category_id: - - '2243' + - '505368' - input: - product_category_id: ha-10-9 + product_category_id: ha-10-2-1-2 output: product_category_id: - - '6832' + - '5508' - input: - product_category_id: ha-11 + product_category_id: ha-10-2-1-3 output: product_category_id: - - '127' + - '2463' - input: - product_category_id: ha-11-1 + product_category_id: ha-10-2-1-3-1 output: product_category_id: - - '500049' + - '2463' - input: - product_category_id: ha-11-1-1 + product_category_id: ha-10-2-1-3-2 output: product_category_id: - - '500049' + - '2463' - input: - product_category_id: ha-11-1-2 + product_category_id: ha-10-2-2 output: product_category_id: - - '500049' + - '504637' - input: - product_category_id: ha-11-1-3 + product_category_id: ha-10-2-2-1 output: product_category_id: - - '500049' + - '2851' - input: - product_category_id: ha-11-10 + product_category_id: ha-10-2-2-1-1 output: product_category_id: - - '6459' + - '2851' - input: - product_category_id: ha-11-10-1 + product_category_id: ha-10-2-2-1-2 output: product_category_id: - - '1935' + - '2851' - input: - product_category_id: ha-11-10-1-1 + product_category_id: ha-10-2-2-2 output: product_category_id: - - '1935' + - '1514' - input: - product_category_id: ha-11-10-1-2 + product_category_id: ha-10-2-2-3 output: product_category_id: - - '1935' + - '2257' - input: - product_category_id: ha-11-10-1-3 + product_category_id: ha-10-2-2-4 output: product_category_id: - - '1935' + - '1932' - input: - product_category_id: ha-11-10-2 + product_category_id: ha-10-2-2-5 output: product_category_id: - - '499932' + - '1407' - input: - product_category_id: ha-11-10-2-1 + product_category_id: ha-10-2-2-6 output: product_category_id: - - '499932' + - '1319' - input: - product_category_id: ha-11-10-2-2 + product_category_id: ha-10-2-2-7 output: product_category_id: - - '499932' + - '2170' - input: - product_category_id: ha-11-10-2-3 + product_category_id: ha-10-2-3 output: product_category_id: - - '499932' + - '504636' - input: - product_category_id: ha-11-11 + product_category_id: ha-10-2-3-1 output: product_category_id: - - '2345' + - '504636' - input: - product_category_id: ha-11-12 + product_category_id: ha-10-2-3-2 output: product_category_id: - - '6375' + - '504636' - input: - product_category_id: ha-11-13 + product_category_id: ha-10-2-3-3 output: product_category_id: - - '4789' + - '504636' - input: - product_category_id: ha-11-14 + product_category_id: ha-10-2-4 output: product_category_id: - - '4709' + - '1489' - input: - product_category_id: ha-11-15 + product_category_id: ha-10-2-4-1 output: product_category_id: - - '1218' + - '8115' - input: - product_category_id: ha-11-15-1 + product_category_id: ha-10-2-4-2 output: product_category_id: - - '1218' + - '8116' - input: - product_category_id: ha-11-15-2 + product_category_id: ha-10-2-4-2-1 output: product_category_id: - - '1218' + - '8116' - input: - product_category_id: ha-11-15-3 + product_category_id: ha-10-2-4-2-2 output: product_category_id: - - '1218' + - '8116' - input: - product_category_id: ha-11-16 + product_category_id: ha-10-2-4-2-3 output: product_category_id: - - '2413' + - '8116' - input: - product_category_id: ha-11-16-1 + product_category_id: ha-10-2-5 output: product_category_id: - - '2413' + - '1458' - input: - product_category_id: ha-11-16-2 + product_category_id: ha-10-2-5-1 output: product_category_id: - - '2413' + - '1458' - input: - product_category_id: ha-11-16-3 + product_category_id: ha-10-2-5-2 output: product_category_id: - - '2413' + - '1458' - input: - product_category_id: ha-11-17 + product_category_id: ha-10-2-5-3 output: product_category_id: - - '2028' + - '1458' - input: - product_category_id: ha-11-17-1 + product_category_id: ha-10-2-6 output: product_category_id: - - '2028' + - '2206' - input: - product_category_id: ha-11-17-2 + product_category_id: ha-10-2-6-1 output: product_category_id: - - '2028' + - '8320' - input: - product_category_id: ha-11-18 + product_category_id: ha-10-2-6-1-1 output: product_category_id: - - '5533' + - '8320' - input: - product_category_id: ha-11-18-1 + product_category_id: ha-10-2-6-1-2 output: product_category_id: - - '5533' + - '8320' - input: - product_category_id: ha-11-18-2 + product_category_id: ha-10-2-6-2 output: product_category_id: - - '5533' + - '8277' - input: - product_category_id: ha-11-19 + product_category_id: ha-10-2-6-2-1 output: product_category_id: - - '499966' + - '8277' - input: - product_category_id: ha-11-2 + product_category_id: ha-10-2-6-2-2 output: product_category_id: - - '7183' + - '8277' - input: - product_category_id: ha-11-2-1 + product_category_id: ha-10-2-6-3 output: product_category_id: - - '7183' + - '504638' - input: - product_category_id: ha-11-2-2 + product_category_id: ha-10-2-6-3-1 output: product_category_id: - - '7183' + - '504638' - input: - product_category_id: ha-11-2-3 + product_category_id: ha-10-2-6-3-2 output: product_category_id: - - '7183' + - '504638' - input: - product_category_id: ha-11-20 + product_category_id: ha-10-2-6-4 output: product_category_id: - - '5142' + - '4728' - input: - product_category_id: ha-11-21 + product_category_id: ha-10-2-6-5 output: product_category_id: - - '1869' + - '2088' - input: - product_category_id: ha-11-21-1 + product_category_id: ha-10-2-6-6 output: product_category_id: - - '1869' + - '1779' - input: - product_category_id: ha-11-21-2 + product_category_id: ha-10-2-6-6-1 output: product_category_id: - - '1869' + - '1779' - input: - product_category_id: ha-11-21-3 + product_category_id: ha-10-2-6-6-2 output: product_category_id: - - '1869' + - '1779' - input: - product_category_id: ha-11-22 + product_category_id: ha-10-2-6-6-3 output: product_category_id: - - '4715' + - '1779' - input: - product_category_id: ha-11-22-1 + product_category_id: ha-10-2-6-7 output: product_category_id: - - '4715' + - '581' - input: - product_category_id: ha-11-22-2 + product_category_id: ha-10-2-6-7-1 output: product_category_id: - - '4715' + - '581' - input: - product_category_id: ha-11-22-3 + product_category_id: ha-10-2-6-7-2 output: product_category_id: - - '4715' + - '581' - input: - product_category_id: ha-11-23 + product_category_id: ha-10-2-6-8 output: product_category_id: - - '4714' + - '7130' - input: - product_category_id: ha-11-23-1 + product_category_id: ha-10-2-6-8-1 output: product_category_id: - - '4714' + - '7130' - input: - product_category_id: ha-11-23-2 + product_category_id: ha-10-2-6-8-2 output: product_category_id: - - '4714' + - '7130' - input: - product_category_id: ha-11-23-3 + product_category_id: ha-10-2-6-9 output: product_category_id: - - '4714' + - '5048' - input: - product_category_id: ha-11-24 + product_category_id: ha-10-2-7 output: product_category_id: - - '505318' + - '1963' - input: - product_category_id: ha-11-24-1 + product_category_id: ha-10-2-7-1 output: product_category_id: - - '505318' + - '2410' - input: - product_category_id: ha-11-24-2 + product_category_id: ha-10-2-8 output: product_category_id: - - '505318' + - '2691' - input: - product_category_id: ha-11-25 + product_category_id: ha-10-2-8-1 output: product_category_id: - - '2377' + - '1425' - input: - product_category_id: ha-11-25-1 + product_category_id: ha-10-2-8-1-1 output: product_category_id: - - '2377' + - '1425' - input: - product_category_id: ha-11-25-2 + product_category_id: ha-10-2-8-1-2 output: product_category_id: - - '2377' + - '1425' - input: - product_category_id: ha-11-25-3 + product_category_id: ha-10-2-8-2 output: product_category_id: - - '2377' + - '504634' - input: - product_category_id: ha-11-26 + product_category_id: ha-10-2-8-2-1 output: product_category_id: - - '6833' + - '504634' - input: - product_category_id: ha-11-26-1 + product_category_id: ha-10-2-8-2-2 output: product_category_id: - - '6833' + - '504634' - input: - product_category_id: ha-11-26-2 + product_category_id: ha-10-2-8-3 output: product_category_id: - - '6833' + - '1865' - input: - product_category_id: ha-11-27 + product_category_id: ha-10-2-8-4 output: product_category_id: - - '2274' + - '7358' - input: - product_category_id: ha-11-27-1 + product_category_id: ha-10-2-8-5 output: product_category_id: - - '2274' + - '7446' - input: - product_category_id: ha-11-27-2 + product_category_id: ha-10-2-8-6 output: product_category_id: - - '2274' + - '5666' - input: - product_category_id: ha-11-28 + product_category_id: ha-10-2-8-7 output: product_category_id: - - '503729' + - '2817' - input: - product_category_id: ha-11-28-1 + product_category_id: ha-10-2-8-7-1 output: product_category_id: - - '503729' + - '2817' - input: - product_category_id: ha-11-28-2 + product_category_id: ha-10-2-8-7-2 output: product_category_id: - - '503729' + - '2817' - input: - product_category_id: ha-11-28-3 + product_category_id: ha-10-2-8-8 output: product_category_id: - - '503729' + - '5665' - input: - product_category_id: ha-11-3 + product_category_id: ha-10-2-8-8-1 output: product_category_id: - - '499893' + - '5665' - input: - product_category_id: ha-11-4 + product_category_id: ha-10-2-8-8-2 output: product_category_id: - - '6807' + - '5665' - input: - product_category_id: ha-11-4-1 + product_category_id: ha-10-2-8-9 output: product_category_id: - - '6807' + - '2478' - input: - product_category_id: ha-11-4-2 + product_category_id: ha-10-3 output: product_category_id: - - '6807' + - '1673' - input: - product_category_id: ha-11-5 + product_category_id: ha-10-3-1 output: product_category_id: - - '127' + - '499999' - input: - product_category_id: ha-11-6 + product_category_id: ha-10-3-2 output: product_category_id: - - '499768' + - '1636' - input: - product_category_id: ha-11-6-1 + product_category_id: ha-10-3-2-1 output: product_category_id: - - '499770' + - '1636' - input: - product_category_id: ha-11-6-1-1 + product_category_id: ha-10-3-2-2 output: product_category_id: - - '499770' + - '1636' - input: - product_category_id: ha-11-6-1-2 + product_category_id: ha-10-3-2-3 output: product_category_id: - - '499770' + - '1636' - input: - product_category_id: ha-11-6-2 + product_category_id: ha-10-3-3 output: product_category_id: - - '3797' + - '2032' - input: - product_category_id: ha-11-7 + product_category_id: ha-10-3-3-1 output: product_category_id: - - '7275' + - '2032' - input: - product_category_id: ha-11-7-1 + product_category_id: ha-10-3-3-2 output: product_category_id: - - '7275' + - '2032' - input: - product_category_id: ha-11-7-2 + product_category_id: ha-10-3-3-3 output: product_category_id: - - '7275' + - '2032' - input: - product_category_id: ha-11-7-3 + product_category_id: ha-10-3-4 output: product_category_id: - - '7275' + - '7244' - input: - product_category_id: ha-11-8 + product_category_id: ha-10-3-5 output: product_category_id: - - '2006' + - '1687' - input: - product_category_id: ha-11-8-1 + product_category_id: ha-10-3-5-1 output: product_category_id: - - '2006' + - '2886' - input: - product_category_id: ha-11-8-2 + product_category_id: ha-10-3-5-1-1 output: product_category_id: - - '2006' + - '2886' - input: - product_category_id: ha-11-9 + product_category_id: ha-10-3-5-1-2 output: product_category_id: - - '5627' + - '2886' - input: - product_category_id: ha-12 + product_category_id: ha-10-3-5-1-3 output: product_category_id: - - '499982' + - '2886' - input: - product_category_id: ha-13 + product_category_id: ha-10-3-5-2 output: product_category_id: - - '1910' + - '2757' - input: - product_category_id: ha-14 + product_category_id: ha-10-3-5-2-1 output: product_category_id: - - '3650' + - '2757' - input: - product_category_id: ha-14-1 + product_category_id: ha-10-3-5-2-2 output: product_category_id: - - '6939' + - '2757' - input: - product_category_id: ha-14-1-1 + product_category_id: ha-10-3-5-2-3 output: product_category_id: - - '6940' + - '2757' - input: - product_category_id: ha-14-1-1-1 + product_category_id: ha-10-3-6 output: product_category_id: - - '6940' + - '2062' - input: - product_category_id: ha-14-1-1-2 + product_category_id: ha-10-3-6-1 output: product_category_id: - - '6940' + - '2376' - input: - product_category_id: ha-14-10 + product_category_id: ha-10-3-6-2 output: product_category_id: - - '6907' + - '1921' - input: - product_category_id: ha-14-10-1 + product_category_id: ha-10-3-6-2-1 output: product_category_id: - - '6907' + - '1921' - input: - product_category_id: ha-14-10-2 + product_category_id: ha-10-3-6-2-2 output: product_category_id: - - '6907' + - '1921' - input: - product_category_id: ha-14-10-3 + product_category_id: ha-10-3-6-2-3 output: product_category_id: - - '6907' + - '1921' - input: - product_category_id: ha-14-11 + product_category_id: ha-10-3-6-3 output: product_category_id: - - '7472' + - '1746' - input: - product_category_id: ha-14-12 + product_category_id: ha-10-4 output: product_category_id: - - '505323' + - '2570' - input: - product_category_id: ha-14-12-1 + product_category_id: ha-10-4-1 output: product_category_id: - - '505324' + - '2570' - input: - product_category_id: ha-14-13 + product_category_id: ha-10-4-2 output: product_category_id: - - '5526' + - '2570' - input: - product_category_id: ha-14-13-1 + product_category_id: ha-10-4-3 output: product_category_id: - - '5557' + - '2570' - input: - product_category_id: ha-14-13-2 + product_category_id: ha-10-5 output: product_category_id: - - '5556' + - '2216' - input: - product_category_id: ha-14-13-3 + product_category_id: ha-10-5-1 output: product_category_id: - - '503007' + - '2216' - input: - product_category_id: ha-14-13-4 + product_category_id: ha-10-5-2 output: product_category_id: - - '7415' + - '2216' - input: - product_category_id: ha-14-14 + product_category_id: ha-10-5-3 output: product_category_id: - - '499886' + - '2216' - input: - product_category_id: ha-14-15 + product_category_id: ha-10-6 output: product_category_id: - - '7019' + - '2203' - input: - product_category_id: ha-14-15-1 + product_category_id: ha-10-6-1 output: product_category_id: - - '6887' + - '2203' - input: - product_category_id: ha-14-15-2 + product_category_id: ha-10-6-2 output: product_category_id: - - '328062' + - '2203' - input: - product_category_id: ha-14-15-2-1 + product_category_id: ha-10-6-3 output: product_category_id: - - '328062' + - '2203' - input: - product_category_id: ha-14-15-2-2 + product_category_id: ha-10-7 output: product_category_id: - - '328062' + - '2273' - input: - product_category_id: ha-14-15-3 + product_category_id: ha-10-7-1 output: product_category_id: - - '7020' + - '2055' - input: - product_category_id: ha-14-16 + product_category_id: ha-10-7-2 output: product_category_id: - - '6295' + - '2343' - input: - product_category_id: ha-14-17 + product_category_id: ha-10-7-2-1 output: product_category_id: - - '6292' + - '1821' - input: - product_category_id: ha-14-18 + product_category_id: ha-10-7-2-2 output: product_category_id: - - '3744' + - '1354' - input: - product_category_id: ha-14-18-1 + product_category_id: ha-10-7-3 output: product_category_id: - - '3673' + - '1390' - input: - product_category_id: ha-14-18-1-1 + product_category_id: ha-10-7-4 output: product_category_id: - - '3673' + - '2171' - input: - product_category_id: ha-14-18-1-2 + product_category_id: ha-10-7-4-1 output: product_category_id: - - '3673' + - '2063' - input: - product_category_id: ha-14-18-1-3 + product_category_id: ha-10-7-4-2 output: product_category_id: - - '3673' + - '2406' - input: - product_category_id: ha-14-18-2 + product_category_id: ha-10-7-5 output: product_category_id: - - '3300' + - '5646' - input: - product_category_id: ha-14-19 + product_category_id: ha-10-7-6 output: product_category_id: - - '4487' + - '1952' - input: - product_category_id: ha-14-19-1 + product_category_id: ha-10-7-6-1 output: product_category_id: - - '3240' + - '1952' - input: - product_category_id: ha-14-19-1-1 + product_category_id: ha-10-7-6-2 output: product_category_id: - - '3240' + - '1952' - input: - product_category_id: ha-14-19-1-2 + product_category_id: ha-10-8 output: product_category_id: - - '3240' + - '2243' - input: - product_category_id: ha-14-19-1-3 + product_category_id: ha-10-9 output: product_category_id: - - '3240' + - '6832' - input: - product_category_id: ha-14-19-1-4 + product_category_id: ha-10-10 output: product_category_id: - - '3240' + - '1723' - input: - product_category_id: ha-14-19-1-5 + product_category_id: ha-11 output: product_category_id: - - '3240' + - '127' - input: - product_category_id: ha-14-19-1-6 + product_category_id: ha-11-1 output: product_category_id: - - '3240' + - '500049' - input: - product_category_id: ha-14-19-1-7 + product_category_id: ha-11-1-1 output: product_category_id: - - '3240' + - '500049' - input: - product_category_id: ha-14-19-1-8 + product_category_id: ha-11-1-2 output: product_category_id: - - '3240' + - '500049' - input: - product_category_id: ha-14-19-1-9 + product_category_id: ha-11-1-3 output: product_category_id: - - '3240' + - '500049' - input: - product_category_id: ha-14-2 + product_category_id: ha-11-2 output: product_category_id: - - '7326' + - '7183' - input: - product_category_id: ha-14-2-1 + product_category_id: ha-11-2-1 output: product_category_id: - - '7370' + - '7183' - input: - product_category_id: ha-14-2-2 + product_category_id: ha-11-2-2 output: product_category_id: - - '7369' + - '7183' - input: - product_category_id: ha-14-20 + product_category_id: ha-11-2-3 output: product_category_id: - - '6549' + - '7183' - input: - product_category_id: ha-14-20-1 + product_category_id: ha-11-3 output: product_category_id: - - '7515' + - '499893' - input: - product_category_id: ha-14-20-2 + product_category_id: ha-11-4 output: product_category_id: - - '7345' + - '6807' - input: - product_category_id: ha-14-20-3 + product_category_id: ha-11-4-1 output: product_category_id: - - '7346' + - '6807' - input: - product_category_id: ha-14-20-4 + product_category_id: ha-11-4-2 output: product_category_id: - - '6503' + - '6807' - input: - product_category_id: ha-14-20-5 + product_category_id: ha-11-5 output: product_category_id: - - '6501' + - '127' - input: - product_category_id: ha-14-21 + product_category_id: ha-11-6 output: product_category_id: - - '3470' + - '499768' - input: - product_category_id: ha-14-21-1 + product_category_id: ha-11-6-1 output: product_category_id: - - '3210' + - '499770' - input: - product_category_id: ha-14-21-1-1 + product_category_id: ha-11-6-1-1 output: product_category_id: - - '3210' + - '499770' - input: - product_category_id: ha-14-21-1-2 + product_category_id: ha-11-6-1-2 output: product_category_id: - - '3210' + - '499770' - input: - product_category_id: ha-14-21-1-3 + product_category_id: ha-11-6-2 output: product_category_id: - - '3210' + - '3797' - input: - product_category_id: ha-14-22 + product_category_id: ha-11-7 output: product_category_id: - - '3281' + - '7275' - input: - product_category_id: ha-14-22-1 + product_category_id: ha-11-7-1 output: product_category_id: - - '3629' + - '7275' - input: - product_category_id: ha-14-22-2 + product_category_id: ha-11-7-2 output: product_category_id: - - '3609' + - '7275' - input: - product_category_id: ha-14-22-2-1 + product_category_id: ha-11-7-3 output: product_category_id: - - '3609' + - '7275' - input: - product_category_id: ha-14-22-2-2 + product_category_id: ha-11-8 output: product_category_id: - - '3609' + - '2006' - input: - product_category_id: ha-14-22-2-3 + product_category_id: ha-11-8-1 output: product_category_id: - - '3609' + - '2006' - input: - product_category_id: ha-14-23 + product_category_id: ha-11-8-2 output: product_category_id: - - '2174' + - '2006' - input: - product_category_id: ha-14-23-1 + product_category_id: ha-11-9 output: product_category_id: - - '505831' + - '5627' - input: - product_category_id: ha-14-23-1-1 + product_category_id: ha-11-10 output: product_category_id: - - '505831' + - '6459' - input: - product_category_id: ha-14-23-1-2 + product_category_id: ha-11-10-1 output: product_category_id: - - '505831' + - '1935' - input: - product_category_id: ha-14-23-2 + product_category_id: ha-11-10-1-1 output: product_category_id: - - '2202' + - '1935' - input: - product_category_id: ha-14-23-2-1 + product_category_id: ha-11-10-1-2 output: product_category_id: - - '2202' + - '1935' - input: - product_category_id: ha-14-23-2-2 + product_category_id: ha-11-10-1-3 output: product_category_id: - - '2202' + - '1935' - input: - product_category_id: ha-14-23-2-3 + product_category_id: ha-11-10-2 output: product_category_id: - - '2202' + - '499932' - input: - product_category_id: ha-14-24 + product_category_id: ha-11-10-2-1 output: product_category_id: - - '505810' + - '499932' - input: - product_category_id: ha-14-24-1 + product_category_id: ha-11-10-2-2 output: product_category_id: - - '505810' + - '499932' - input: - product_category_id: ha-14-24-2 + product_category_id: ha-11-10-2-3 output: product_category_id: - - '505810' + - '499932' - input: - product_category_id: ha-14-25 + product_category_id: ha-11-11 output: product_category_id: - - '8258' + - '2345' - input: - product_category_id: ha-14-26 + product_category_id: ha-11-12 output: product_category_id: - - '5571' + - '6375' - input: - product_category_id: ha-14-27 + product_category_id: ha-11-13 output: product_category_id: - - '4658' + - '4789' - input: - product_category_id: ha-14-27-1 + product_category_id: ha-11-14 output: product_category_id: - - '4659' + - '4709' - input: - product_category_id: ha-14-27-1-1 + product_category_id: ha-11-15 output: product_category_id: - - '4659' + - '1218' - input: - product_category_id: ha-14-27-1-2 + product_category_id: ha-11-15-1 output: product_category_id: - - '4659' + - '1218' - input: - product_category_id: ha-14-27-1-3 + product_category_id: ha-11-15-2 output: product_category_id: - - '4659' + - '1218' - input: - product_category_id: ha-14-28 + product_category_id: ha-11-15-3 output: product_category_id: - - '505812' + - '1218' - input: - product_category_id: ha-14-28-1 + product_category_id: ha-11-16 output: product_category_id: - - '505812' + - '2413' - input: - product_category_id: ha-14-28-2 + product_category_id: ha-11-16-1 output: product_category_id: - - '505812' + - '2413' - input: - product_category_id: ha-14-28-3 + product_category_id: ha-11-16-2 output: product_category_id: - - '505812' + - '2413' - input: - product_category_id: ha-14-29 + product_category_id: ha-11-16-3 output: product_category_id: - - '499947' + - '2413' - input: - product_category_id: ha-14-3 + product_category_id: ha-11-17 output: product_category_id: - - '8117' + - '2028' - input: - product_category_id: ha-14-3-1 + product_category_id: ha-11-17-1 output: product_category_id: - - '8118' + - '2028' - input: - product_category_id: ha-14-4 + product_category_id: ha-11-17-2 output: product_category_id: - - '3944' + - '2028' - input: - product_category_id: ha-14-4-1 + product_category_id: ha-11-18 output: product_category_id: - - '1540' + - '5533' - input: - product_category_id: ha-14-4-1-1 + product_category_id: ha-11-18-1 output: product_category_id: - - '1540' + - '5533' - input: - product_category_id: ha-14-4-1-2 + product_category_id: ha-11-18-2 output: product_category_id: - - '1540' + - '5533' - input: - product_category_id: ha-14-4-1-3 + product_category_id: ha-11-19 output: product_category_id: - - '1540' + - '499966' - input: - product_category_id: ha-14-4-2 + product_category_id: ha-11-20 output: product_category_id: - - '7140' + - '5142' - input: - product_category_id: ha-14-4-3 + product_category_id: ha-11-21 output: product_category_id: - - '6378' + - '1869' - input: - product_category_id: ha-14-4-3-1 + product_category_id: ha-11-21-1 output: product_category_id: - - '6378' + - '1869' - input: - product_category_id: ha-14-4-3-2 + product_category_id: ha-11-21-2 output: product_category_id: - - '6378' + - '1869' - input: - product_category_id: ha-14-4-4 + product_category_id: ha-11-21-3 output: product_category_id: - - '8276' + - '1869' - input: - product_category_id: ha-14-4-4-1 + product_category_id: ha-11-22 output: product_category_id: - - '8276' + - '4715' - input: - product_category_id: ha-14-4-4-2 + product_category_id: ha-11-22-1 output: product_category_id: - - '8276' + - '4715' - input: - product_category_id: ha-14-4-5 + product_category_id: ha-11-22-2 output: product_category_id: - - '8275' + - '4715' - input: - product_category_id: ha-14-4-5-1 + product_category_id: ha-11-22-3 output: product_category_id: - - '8275' + - '4715' - input: - product_category_id: ha-14-4-5-2 + product_category_id: ha-11-23 output: product_category_id: - - '8275' + - '4714' - input: - product_category_id: ha-14-4-6 + product_category_id: ha-11-23-1 output: product_category_id: - - '6806' + - '4714' - input: - product_category_id: ha-14-5 + product_category_id: ha-11-23-2 output: product_category_id: - - '6471' + - '4714' - input: - product_category_id: ha-14-6 + product_category_id: ha-11-23-3 output: product_category_id: - - '2447' + - '4714' - input: - product_category_id: ha-14-7 + product_category_id: ha-11-24 output: product_category_id: - - '499859' + - '505318' - input: - product_category_id: ha-14-7-1 + product_category_id: ha-11-24-1 output: product_category_id: - - '499860' + - '505318' - input: - product_category_id: ha-14-8 + product_category_id: ha-11-24-2 output: product_category_id: - - '7056' + - '505318' - input: - product_category_id: ha-14-8-1 + product_category_id: ha-11-25 output: product_category_id: - - '7087' + - '2377' - input: - product_category_id: ha-14-8-2 + product_category_id: ha-11-25-1 output: product_category_id: - - '7055' + - '2377' - input: - product_category_id: ha-14-8-3 + product_category_id: ha-11-25-2 output: product_category_id: - - '7057' + - '2377' - input: - product_category_id: ha-14-9 + product_category_id: ha-11-25-3 output: product_category_id: - - '2380' + - '2377' - input: - product_category_id: ha-15 + product_category_id: ha-11-26 output: product_category_id: - - '1167' + - '6833' - input: - product_category_id: ha-15-1 + product_category_id: ha-11-26-1 output: product_category_id: - - '6938' + - '6833' - input: - product_category_id: ha-15-1-1 + product_category_id: ha-11-26-2 output: product_category_id: - - '6938' + - '6833' - input: - product_category_id: ha-15-1-2 + product_category_id: ha-11-27 output: product_category_id: - - '6938' + - '2274' - input: - product_category_id: ha-15-1-3 + product_category_id: ha-11-27-1 output: product_category_id: - - '6938' + - '2274' - input: - product_category_id: ha-15-10 + product_category_id: ha-11-27-2 output: product_category_id: - - '4672' + - '2274' - input: - product_category_id: ha-15-11 + product_category_id: ha-11-28 output: product_category_id: - - '1180' + - '503729' - input: - product_category_id: ha-15-11-1 + product_category_id: ha-11-28-1 output: product_category_id: - - '1181' + - '503729' - input: - product_category_id: ha-15-11-1-2 + product_category_id: ha-11-28-2 output: product_category_id: - - '1181' + - '503729' - input: - product_category_id: ha-15-11-1-3 + product_category_id: ha-11-28-3 output: product_category_id: - - '1181' + - '503729' - input: - product_category_id: ha-15-11-2 + product_category_id: ha-12 output: product_category_id: - - '1182' + - '499982' - input: - product_category_id: ha-15-11-2-1 + product_category_id: ha-13 output: product_category_id: - - '1182' + - '1910' - input: - product_category_id: ha-15-11-2-2 + product_category_id: ha-14 output: product_category_id: - - '1182' + - '3650' - input: - product_category_id: ha-15-11-2-3 + product_category_id: ha-14-1 output: product_category_id: - - '1182' + - '6939' - input: - product_category_id: ha-15-11-3 + product_category_id: ha-14-1-1 output: product_category_id: - - '1454' + - '6940' - input: - product_category_id: ha-15-11-4 + product_category_id: ha-14-1-1-1 output: product_category_id: - - '7562' + - '6940' - input: - product_category_id: ha-15-11-4-1 + product_category_id: ha-14-1-1-2 output: product_category_id: - - '7562' + - '6940' - input: - product_category_id: ha-15-11-4-2 + product_category_id: ha-14-2 output: product_category_id: - - '7562' + - '7326' - input: - product_category_id: ha-15-11-5 + product_category_id: ha-14-2-1 output: product_category_id: - - '2080' + - '7370' - input: - product_category_id: ha-15-11-6 + product_category_id: ha-14-2-2 output: product_category_id: - - '1824' + - '7369' - input: - product_category_id: ha-15-11-6-1 + product_category_id: ha-14-3 output: product_category_id: - - '1824' + - '8117' - input: - product_category_id: ha-15-11-6-2 + product_category_id: ha-14-3-1 output: product_category_id: - - '1824' + - '8118' - input: - product_category_id: ha-15-11-7 + product_category_id: ha-14-4 output: product_category_id: - - '2726' + - '3944' - input: - product_category_id: ha-15-11-7-1 + product_category_id: ha-14-4-1 output: product_category_id: - - '2726' + - '1540' - input: - product_category_id: ha-15-11-7-2 + product_category_id: ha-14-4-1-1 output: product_category_id: - - '2726' + - '1540' - input: - product_category_id: ha-15-11-8 + product_category_id: ha-14-4-1-2 output: product_category_id: - - '2411' + - '1540' - input: - product_category_id: ha-15-11-8-1 + product_category_id: ha-14-4-1-3 output: product_category_id: - - '2411' + - '1540' - input: - product_category_id: ha-15-11-8-2 + product_category_id: ha-14-4-2 output: product_category_id: - - '2411' + - '7140' - input: - product_category_id: ha-15-12 + product_category_id: ha-14-4-3 output: product_category_id: - - '1391' + - '6378' - input: - product_category_id: ha-15-12-1 + product_category_id: ha-14-4-3-1 output: product_category_id: - - '1391' + - '6378' - input: - product_category_id: ha-15-12-2 + product_category_id: ha-14-4-3-2 output: product_category_id: - - '1391' + - '6378' - input: - product_category_id: ha-15-13 + product_category_id: ha-14-4-4 output: product_category_id: - - '126' + - '8276' - input: - product_category_id: ha-15-13-1 + product_category_id: ha-14-4-4-1 output: product_category_id: - - '126' + - '8276' - input: - product_category_id: ha-15-13-2 + product_category_id: ha-14-4-4-2 output: product_category_id: - - '126' + - '8276' - input: - product_category_id: ha-15-13-3 + product_category_id: ha-14-4-5 output: product_category_id: - - '126' + - '8275' - input: - product_category_id: ha-15-14 + product_category_id: ha-14-4-5-1 output: product_category_id: - - '1217' + - '8275' - input: - product_category_id: ha-15-14-1 + product_category_id: ha-14-4-5-2 output: product_category_id: - - '1367' + - '8275' - input: - product_category_id: ha-15-14-1-1 + product_category_id: ha-14-4-6 output: product_category_id: - - '1367' + - '6806' - input: - product_category_id: ha-15-14-1-2 + product_category_id: ha-14-5 output: product_category_id: - - '1367' + - '6471' - input: - product_category_id: ha-15-14-2 + product_category_id: ha-14-6 output: product_category_id: - - '1216' + - '2447' - input: - product_category_id: ha-15-14-3 + product_category_id: ha-14-7 output: product_category_id: - - '2629' + - '499859' - input: - product_category_id: ha-15-14-3-1 + product_category_id: ha-14-7-1 output: product_category_id: - - '2629' + - '499860' - input: - product_category_id: ha-15-14-3-2 + product_category_id: ha-14-8 output: product_category_id: - - '2629' + - '7056' - input: - product_category_id: ha-15-14-3-3 + product_category_id: ha-14-8-1 output: product_category_id: - - '2629' + - '7087' - input: - product_category_id: ha-15-14-4 + product_category_id: ha-14-8-2 output: product_category_id: - - '1465' + - '7055' - input: - product_category_id: ha-15-14-5 + product_category_id: ha-14-8-3 output: product_category_id: - - '1994' + - '7057' - input: - product_category_id: ha-15-14-5-1 + product_category_id: ha-14-9 output: product_category_id: - - '1994' + - '2380' - input: - product_category_id: ha-15-14-5-2 + product_category_id: ha-14-10 output: product_category_id: - - '1994' + - '6907' - input: - product_category_id: ha-15-15 + product_category_id: ha-14-10-1 output: product_category_id: - - '6461' + - '6907' - input: - product_category_id: ha-15-16 + product_category_id: ha-14-10-2 output: product_category_id: - - '338' + - '6907' - input: - product_category_id: ha-15-16-1 + product_category_id: ha-14-10-3 output: product_category_id: - - '543689' + - '6907' - input: - product_category_id: ha-15-16-1-1 + product_category_id: ha-14-11 output: product_category_id: - - '543689' + - '7472' - input: - product_category_id: ha-15-16-1-3 + product_category_id: ha-14-12 output: product_category_id: - - '543689' + - '505323' - input: - product_category_id: ha-15-16-2 + product_category_id: ha-14-12-1 output: product_category_id: - - '2454' + - '505324' - input: - product_category_id: ha-15-17 + product_category_id: ha-14-13 output: product_category_id: - - '7556' + - '5526' - input: - product_category_id: ha-15-17-2 + product_category_id: ha-14-13-1 output: product_category_id: - - '7556' + - '5557' - input: - product_category_id: ha-15-17-3 + product_category_id: ha-14-13-2 output: product_category_id: - - '7556' + - '5556' - input: - product_category_id: ha-15-18 + product_category_id: ha-14-13-3 output: product_category_id: - - '1219' + - '503007' - input: - product_category_id: ha-15-18-1 + product_category_id: ha-14-13-4 output: product_category_id: - - '1219' + - '7415' - input: - product_category_id: ha-15-18-2 + product_category_id: ha-14-14 output: product_category_id: - - '1219' + - '499886' - input: - product_category_id: ha-15-18-3 + product_category_id: ha-14-15 output: product_category_id: - - '1219' + - '7019' - input: - product_category_id: ha-15-19 + product_category_id: ha-14-15-1 output: product_category_id: - - '1185' + - '6887' - input: - product_category_id: ha-15-19-1 + product_category_id: ha-14-15-2 output: product_category_id: - - '1185' + - '328062' - input: - product_category_id: ha-15-19-2 + product_category_id: ha-14-15-2-1 output: product_category_id: - - '1185' + - '328062' - input: - product_category_id: ha-15-19-3 + product_category_id: ha-14-15-2-2 output: product_category_id: - - '1185' + - '328062' - input: - product_category_id: ha-15-2 + product_category_id: ha-14-15-3 output: product_category_id: - - '1169' + - '7020' - input: - product_category_id: ha-15-20 + product_category_id: ha-14-16 output: product_category_id: - - '1186' + - '6295' - input: - product_category_id: ha-15-20-1 + product_category_id: ha-14-17 output: product_category_id: - - '2208' + - '6292' - input: - product_category_id: ha-15-20-1-1 + product_category_id: ha-14-18 output: product_category_id: - - '2208' + - '3744' - input: - product_category_id: ha-15-20-1-2 + product_category_id: ha-14-18-1 output: product_category_id: - - '2208' + - '3673' - input: - product_category_id: ha-15-20-1-3 + product_category_id: ha-14-18-1-1 output: product_category_id: - - '2208' + - '3673' - input: - product_category_id: ha-15-20-2 + product_category_id: ha-14-18-1-2 output: product_category_id: - - '505364' + - '3673' - input: - product_category_id: ha-15-20-2-1 + product_category_id: ha-14-18-1-3 output: product_category_id: - - '505364' + - '3673' - input: - product_category_id: ha-15-20-2-2 + product_category_id: ha-14-18-2 output: product_category_id: - - '505364' + - '3300' - input: - product_category_id: ha-15-21 + product_category_id: ha-14-19 output: product_category_id: - - '499887' + - '4487' - input: - product_category_id: ha-15-22 + product_category_id: ha-14-19-1 output: product_category_id: - - '5927' + - '3240' - input: - product_category_id: ha-15-23 + product_category_id: ha-14-19-1-1 output: product_category_id: - - '1220' + - '3240' - input: - product_category_id: ha-15-23-1 + product_category_id: ha-14-19-1-2 output: product_category_id: - - '1220' + - '3240' - input: - product_category_id: ha-15-23-2 + product_category_id: ha-14-19-1-3 output: product_category_id: - - '1220' + - '3240' - input: - product_category_id: ha-15-24 + product_category_id: ha-14-19-1-4 output: product_category_id: - - '1221' + - '3240' - input: - product_category_id: ha-15-24-1 + product_category_id: ha-14-19-1-5 output: product_category_id: - - '1221' + - '3240' - input: - product_category_id: ha-15-24-2 + product_category_id: ha-14-19-1-6 output: product_category_id: - - '1221' + - '3240' - input: - product_category_id: ha-15-24-3 + product_category_id: ha-14-19-1-7 output: product_category_id: - - '1221' + - '3240' - input: - product_category_id: ha-15-25 + product_category_id: ha-14-19-1-8 output: product_category_id: - - '2456' + - '3240' - input: - product_category_id: ha-15-26 + product_category_id: ha-14-19-1-9 output: product_category_id: - - '7416' + - '3240' - input: - product_category_id: ha-15-27 + product_category_id: ha-14-20 output: product_category_id: - - '130' + - '6549' - input: - product_category_id: ha-15-27-1 + product_category_id: ha-14-20-1 output: product_category_id: - - '2416' + - '7515' - input: - product_category_id: ha-15-27-2 + product_category_id: ha-14-20-2 output: product_category_id: - - '6928' + - '7345' - input: - product_category_id: ha-15-27-2-1 + product_category_id: ha-14-20-3 output: product_category_id: - - '6928' + - '7346' - input: - product_category_id: ha-15-27-2-2 + product_category_id: ha-14-20-4 output: product_category_id: - - '6928' + - '6503' - input: - product_category_id: ha-15-27-2-3 + product_category_id: ha-14-20-5 output: product_category_id: - - '6928' + - '6501' - input: - product_category_id: ha-15-27-3 + product_category_id: ha-14-21 output: product_category_id: - - '1866' + - '3470' - input: - product_category_id: ha-15-27-3-3 + product_category_id: ha-14-21-1 output: product_category_id: - - '1866' + - '3210' - input: - product_category_id: ha-15-27-3-4 + product_category_id: ha-14-21-1-1 output: product_category_id: - - '1866' + - '3210' - input: - product_category_id: ha-15-27-4 + product_category_id: ha-14-21-1-2 output: product_category_id: - - '635' + - '3210' - input: - product_category_id: ha-15-27-5 + product_category_id: ha-14-21-1-3 output: product_category_id: - - '1809' + - '3210' - input: - product_category_id: ha-15-28 + product_category_id: ha-14-22 output: product_category_id: - - '1663' + - '3281' - input: - product_category_id: ha-15-29 + product_category_id: ha-14-22-1 output: product_category_id: - - '1603' + - '3629' - input: - product_category_id: ha-15-29-1 + product_category_id: ha-14-22-2 output: product_category_id: - - '1603' + - '3609' - input: - product_category_id: ha-15-29-2 + product_category_id: ha-14-22-2-1 output: product_category_id: - - '1603' + - '3609' - input: - product_category_id: ha-15-3 + product_category_id: ha-14-22-2-2 output: product_category_id: - - '1171' + - '3609' - input: - product_category_id: ha-15-3-1 + product_category_id: ha-14-22-2-3 output: product_category_id: - - '1171' + - '3609' - input: - product_category_id: ha-15-3-2 + product_category_id: ha-14-23 output: product_category_id: - - '1171' + - '2174' - input: - product_category_id: ha-15-3-3 + product_category_id: ha-14-23-1 output: product_category_id: - - '1171' + - '505831' - input: - product_category_id: ha-15-30 + product_category_id: ha-14-23-1-1 output: product_category_id: - - '503774' + - '505831' - input: - product_category_id: ha-15-30-1 + product_category_id: ha-14-23-1-2 output: product_category_id: - - '503774' + - '505831' - input: - product_category_id: ha-15-30-2 + product_category_id: ha-14-23-2 output: product_category_id: - - '503774' + - '2202' - input: - product_category_id: ha-15-30-3 + product_category_id: ha-14-23-2-1 output: product_category_id: - - '503774' + - '2202' - input: - product_category_id: ha-15-31 + product_category_id: ha-14-23-2-2 output: product_category_id: - - '7030' + - '2202' - input: - product_category_id: ha-15-31-1 + product_category_id: ha-14-23-2-3 output: product_category_id: - - '7030' + - '2202' - input: - product_category_id: ha-15-31-2 + product_category_id: ha-14-24 output: product_category_id: - - '7030' + - '505810' - input: - product_category_id: ha-15-32 + product_category_id: ha-14-24-1 output: product_category_id: - - '5873' + - '505810' - input: - product_category_id: ha-15-32-1 + product_category_id: ha-14-24-2 output: product_category_id: - - '5873' + - '505810' - input: - product_category_id: ha-15-32-2 + product_category_id: ha-14-25 output: product_category_id: - - '5873' + - '8258' - input: - product_category_id: ha-15-33 + product_category_id: ha-14-26 output: product_category_id: - - '1832' + - '5571' - input: - product_category_id: ha-15-34 + product_category_id: ha-14-27 output: product_category_id: - - '1193' + - '4658' - input: - product_category_id: ha-15-34-1 + product_category_id: ha-14-27-1 output: product_category_id: - - '1668' + - '4659' - input: - product_category_id: ha-15-34-2 + product_category_id: ha-14-27-1-1 output: product_category_id: - - '2305' + - '4659' - input: - product_category_id: ha-15-34-2-1 + product_category_id: ha-14-27-1-2 output: product_category_id: - - '2305' + - '4659' - input: - product_category_id: ha-15-34-2-2 + product_category_id: ha-14-27-1-3 output: product_category_id: - - '2305' + - '4659' - input: - product_category_id: ha-15-34-3 + product_category_id: ha-14-28 output: product_category_id: - - '1555' + - '505812' - input: - product_category_id: ha-15-34-4 + product_category_id: ha-14-28-1 output: product_category_id: - - '2337' + - '505812' - input: - product_category_id: ha-15-34-4-1 + product_category_id: ha-14-28-2 output: product_category_id: - - '2337' + - '505812' - input: - product_category_id: ha-15-34-4-2 + product_category_id: ha-14-28-3 output: product_category_id: - - '2337' + - '505812' - input: - product_category_id: ha-15-34-4-3 + product_category_id: ha-14-29 output: product_category_id: - - '2337' + - '499947' - input: - product_category_id: ha-15-34-5 + product_category_id: ha-15 output: product_category_id: - - '7484' + - '1167' - input: - product_category_id: ha-15-34-6 + product_category_id: ha-15-1 output: product_category_id: - - '1799' + - '6938' - input: - product_category_id: ha-15-34-6-1 + product_category_id: ha-15-1-1 output: product_category_id: - - '1799' + - '6938' - input: - product_category_id: ha-15-34-6-2 + product_category_id: ha-15-1-2 output: product_category_id: - - '1799' + - '6938' - input: - product_category_id: ha-15-34-7 + product_category_id: ha-15-1-3 output: product_category_id: - - '1450' + - '6938' - input: - product_category_id: ha-15-34-7-1 + product_category_id: ha-15-2 output: product_category_id: - - '1450' + - '1169' - input: - product_category_id: ha-15-34-7-2 + product_category_id: ha-15-3 output: product_category_id: - - '1450' + - '1171' - input: - product_category_id: ha-15-34-8 + product_category_id: ha-15-3-1 output: product_category_id: - - '2181' + - '1171' - input: - product_category_id: ha-15-34-8-1 + product_category_id: ha-15-3-2 output: product_category_id: - - '2181' + - '1171' - input: - product_category_id: ha-15-34-8-2 + product_category_id: ha-15-3-3 output: product_category_id: - - '2181' + - '1171' - input: - product_category_id: ha-15-34-8-3 + product_category_id: ha-15-4 output: product_category_id: - - '2181' + - '7271' - input: - product_category_id: ha-15-34-9 + product_category_id: ha-15-4-1 output: product_category_id: - - '4132' + - '7271' - input: - product_category_id: ha-15-35 + product_category_id: ha-15-4-2 output: product_category_id: - - '3932' + - '7271' - input: - product_category_id: ha-15-35-1 + product_category_id: ha-15-5 output: product_category_id: - - '3932' + - '1174' - input: - product_category_id: ha-15-35-2 + product_category_id: ha-15-5-1 output: product_category_id: - - '3932' + - '1174' - input: - product_category_id: ha-15-36 + product_category_id: ha-15-5-2 output: product_category_id: - - '1305' + - '1174' - input: - product_category_id: ha-15-36-1 + product_category_id: ha-15-5-3 output: product_category_id: - - '5515' + - '1174' - input: - product_category_id: ha-15-36-1-1 + product_category_id: ha-15-6 output: product_category_id: - - '5515' + - '1215' - input: - product_category_id: ha-15-36-1-2 + product_category_id: ha-15-6-1 output: product_category_id: - - '5515' + - '1215' - input: - product_category_id: ha-15-36-1-3 + product_category_id: ha-15-6-2 output: product_category_id: - - '5515' + - '1215' - input: - product_category_id: ha-15-36-10 + product_category_id: ha-15-6-3 output: product_category_id: - - '1640' + - '1215' - input: - product_category_id: ha-15-36-10-1 + product_category_id: ha-15-7 output: product_category_id: - - '1640' + - '2792' - input: - product_category_id: ha-15-36-10-2 + product_category_id: ha-15-8 output: product_category_id: - - '1640' + - '4325' - input: - product_category_id: ha-15-36-11 + product_category_id: ha-15-8-1 output: product_category_id: - - '1991' + - '4325' - input: - product_category_id: ha-15-36-11-1 + product_category_id: ha-15-8-2 output: product_category_id: - - '1991' + - '4325' - input: - product_category_id: ha-15-36-11-2 + product_category_id: ha-15-9 output: product_category_id: - - '1991' + - '2015' - input: - product_category_id: ha-15-36-12 + product_category_id: ha-15-10 output: product_category_id: - - '1732' + - '4672' - input: - product_category_id: ha-15-36-12-1 + product_category_id: ha-15-11 output: product_category_id: - - '1732' + - '1180' - input: - product_category_id: ha-15-36-12-2 + product_category_id: ha-15-11-1 output: product_category_id: - - '1732' + - '1181' - input: - product_category_id: ha-15-36-12-3 + product_category_id: ha-15-11-1-2 output: product_category_id: - - '1732' + - '1181' - input: - product_category_id: ha-15-36-13 + product_category_id: ha-15-11-1-3 output: product_category_id: - - '5371' + - '1181' - input: - product_category_id: ha-15-36-13-1 + product_category_id: ha-15-11-2 output: product_category_id: - - '5371' + - '1182' - input: - product_category_id: ha-15-36-13-2 + product_category_id: ha-15-11-2-1 output: product_category_id: - - '5371' + - '1182' - input: - product_category_id: ha-15-36-14 + product_category_id: ha-15-11-2-2 output: product_category_id: - - '4754' + - '1182' - input: - product_category_id: ha-15-36-15 + product_category_id: ha-15-11-2-3 output: product_category_id: - - '4506' + - '1182' - input: - product_category_id: ha-15-36-16 + product_category_id: ha-15-11-3 output: product_category_id: - - '2330' + - '1454' - input: - product_category_id: ha-15-36-16-1 + product_category_id: ha-15-11-4 output: product_category_id: - - '2330' + - '7562' - input: - product_category_id: ha-15-36-16-2 + product_category_id: ha-15-11-4-1 output: product_category_id: - - '2330' + - '7562' - input: - product_category_id: ha-15-36-17 + product_category_id: ha-15-11-4-2 output: product_category_id: - - '1191' + - '7562' - input: - product_category_id: ha-15-36-17-1 + product_category_id: ha-15-11-5 output: product_category_id: - - '4081' + - '2080' - input: - product_category_id: ha-15-36-17-1-1 + product_category_id: ha-15-11-6 output: product_category_id: - - '4081' + - '1824' - input: - product_category_id: ha-15-36-17-1-2 + product_category_id: ha-15-11-6-1 output: product_category_id: - - '4081' + - '1824' - input: - product_category_id: ha-15-36-17-1-3 + product_category_id: ha-15-11-6-2 output: product_category_id: - - '4081' + - '1824' - input: - product_category_id: ha-15-36-17-2 + product_category_id: ha-15-11-7 output: product_category_id: - - '4931' + - '2726' - input: - product_category_id: ha-15-36-17-2-1 + product_category_id: ha-15-11-7-1 output: product_category_id: - - '4931' + - '2726' - input: - product_category_id: ha-15-36-17-2-2 + product_category_id: ha-15-11-7-2 output: product_category_id: - - '4931' + - '2726' - input: - product_category_id: ha-15-36-17-2-3 + product_category_id: ha-15-11-8 output: product_category_id: - - '4931' + - '2411' - input: - product_category_id: ha-15-36-17-3 + product_category_id: ha-15-11-8-1 output: product_category_id: - - '4294' + - '2411' - input: - product_category_id: ha-15-36-17-3-1 + product_category_id: ha-15-11-8-2 output: product_category_id: - - '4294' + - '2411' - input: - product_category_id: ha-15-36-17-3-2 + product_category_id: ha-15-12 output: product_category_id: - - '4294' + - '1391' - input: - product_category_id: ha-15-36-18 + product_category_id: ha-15-12-1 output: product_category_id: - - '1698' + - '1391' - input: - product_category_id: ha-15-36-18-1 + product_category_id: ha-15-12-2 output: product_category_id: - - '1698' + - '1391' - input: - product_category_id: ha-15-36-18-2 + product_category_id: ha-15-13 output: product_category_id: - - '1698' + - '126' - input: - product_category_id: ha-15-36-19 + product_category_id: ha-15-13-1 output: product_category_id: - - '1459' + - '126' - input: - product_category_id: ha-15-36-2 + product_category_id: ha-15-13-2 output: product_category_id: - - '4022' + - '126' - input: - product_category_id: ha-15-36-20 + product_category_id: ha-15-13-3 output: product_category_id: - - '4755' + - '126' - input: - product_category_id: ha-15-36-20-1 + product_category_id: ha-15-14 output: product_category_id: - - '4755' + - '1217' - input: - product_category_id: ha-15-36-20-2 + product_category_id: ha-15-14-1 output: product_category_id: - - '4755' + - '1367' - input: - product_category_id: ha-15-36-21 + product_category_id: ha-15-14-1-1 output: product_category_id: - - '4074' + - '1367' - input: - product_category_id: ha-15-36-21-1 + product_category_id: ha-15-14-1-2 output: product_category_id: - - '4074' + - '1367' - input: - product_category_id: ha-15-36-21-2 + product_category_id: ha-15-14-2 output: product_category_id: - - '4074' + - '1216' - input: - product_category_id: ha-15-36-22 + product_category_id: ha-15-14-3 output: product_category_id: - - '1785' + - '2629' - input: - product_category_id: ha-15-36-22-1 + product_category_id: ha-15-14-3-1 output: product_category_id: - - '1785' + - '2629' - input: - product_category_id: ha-15-36-22-2 + product_category_id: ha-15-14-3-2 output: product_category_id: - - '1785' + - '2629' - input: - product_category_id: ha-15-36-22-3 + product_category_id: ha-15-14-3-3 output: product_category_id: - - '1785' + - '2629' - input: - product_category_id: ha-15-36-23 + product_category_id: ha-15-14-4 output: product_category_id: - - '1198' + - '1465' - input: - product_category_id: ha-15-36-24 + product_category_id: ha-15-14-5 output: product_category_id: - - '1539' + - '1994' - input: - product_category_id: ha-15-36-25 + product_category_id: ha-15-14-5-1 output: product_category_id: - - '2021' + - '1994' - input: - product_category_id: ha-15-36-26 + product_category_id: ha-15-14-5-2 output: product_category_id: - - '4756' + - '1994' - input: - product_category_id: ha-15-36-26-1 + product_category_id: ha-15-15 output: product_category_id: - - '4756' + - '6461' - input: - product_category_id: ha-15-36-26-2 + product_category_id: ha-15-16 output: product_category_id: - - '4756' + - '338' - input: - product_category_id: ha-15-36-26-3 + product_category_id: ha-15-16-1 output: product_category_id: - - '4756' + - '543689' - input: - product_category_id: ha-15-36-27 + product_category_id: ha-15-16-1-1 output: product_category_id: - - '4757' + - '543689' - input: - product_category_id: ha-15-36-28 + product_category_id: ha-15-16-1-3 output: product_category_id: - - '1205' + - '543689' - input: - product_category_id: ha-15-36-28-1 + product_category_id: ha-15-16-2 output: product_category_id: - - '1205' + - '2454' - input: - product_category_id: ha-15-36-28-2 + product_category_id: ha-15-17 output: product_category_id: - - '1205' + - '7556' - input: - product_category_id: ha-15-36-28-3 + product_category_id: ha-15-17-2 output: product_category_id: - - '1205' + - '7556' - input: - product_category_id: ha-15-36-29 + product_category_id: ha-15-17-3 output: product_category_id: - - '1413' + - '7556' - input: - product_category_id: ha-15-36-3 + product_category_id: ha-15-18 output: product_category_id: - - '500058' + - '1219' - input: - product_category_id: ha-15-36-3-1 + product_category_id: ha-15-18-1 output: product_category_id: - - '500058' + - '1219' - input: - product_category_id: ha-15-36-3-2 + product_category_id: ha-15-18-2 output: product_category_id: - - '500058' + - '1219' - input: - product_category_id: ha-15-36-3-3 + product_category_id: ha-15-18-3 output: product_category_id: - - '500058' + - '1219' - input: - product_category_id: ha-15-36-30 + product_category_id: ha-15-19 output: product_category_id: - - '1207' + - '1185' - input: - product_category_id: ha-15-36-31 + product_category_id: ha-15-19-1 output: product_category_id: - - '2481' + - '1185' - input: - product_category_id: ha-15-36-32 + product_category_id: ha-15-19-2 output: product_category_id: - - '4340' + - '1185' - input: - product_category_id: ha-15-36-33 + product_category_id: ha-15-19-3 output: product_category_id: - - '6799' + - '1185' - input: - product_category_id: ha-15-36-34 + product_category_id: ha-15-20 output: product_category_id: - - '2093' + - '1186' - input: - product_category_id: ha-15-36-34-1 + product_category_id: ha-15-20-1 output: product_category_id: - - '2093' + - '2208' - input: - product_category_id: ha-15-36-34-2 + product_category_id: ha-15-20-1-1 output: product_category_id: - - '2093' + - '2208' - input: - product_category_id: ha-15-36-35 + product_category_id: ha-15-20-1-2 output: product_category_id: - - '7394' + - '2208' - input: - product_category_id: ha-15-36-35-1 + product_category_id: ha-15-20-1-3 output: product_category_id: - - '7394' + - '2208' - input: - product_category_id: ha-15-36-35-2 + product_category_id: ha-15-20-2 output: product_category_id: - - '7394' + - '505364' - input: - product_category_id: ha-15-36-35-3 + product_category_id: ha-15-20-2-1 output: product_category_id: - - '7394' + - '505364' - input: - product_category_id: ha-15-36-36 + product_category_id: ha-15-20-2-2 output: product_category_id: - - '4758' + - '505364' - input: - product_category_id: ha-15-36-37 + product_category_id: ha-15-21 output: product_category_id: - - '4759' + - '499887' - input: - product_category_id: ha-15-36-37-1 + product_category_id: ha-15-22 output: product_category_id: - - '4759' + - '5927' - input: - product_category_id: ha-15-36-37-2 + product_category_id: ha-15-23 output: product_category_id: - - '4759' + - '1220' - input: - product_category_id: ha-15-36-38 + product_category_id: ha-15-23-1 output: product_category_id: - - '1374' + - '1220' - input: - product_category_id: ha-15-36-4 + product_category_id: ha-15-23-2 output: product_category_id: - - '3602' + - '1220' - input: - product_category_id: ha-15-36-4-1 + product_category_id: ha-15-24 output: product_category_id: - - '3602' + - '1221' - input: - product_category_id: ha-15-36-4-2 + product_category_id: ha-15-24-1 output: product_category_id: - - '3602' + - '1221' - input: - product_category_id: ha-15-36-4-3 + product_category_id: ha-15-24-2 output: product_category_id: - - '3602' + - '1221' - input: - product_category_id: ha-15-36-5 + product_category_id: ha-15-24-3 output: product_category_id: - - '2192' + - '1221' - input: - product_category_id: ha-15-36-5-1 + product_category_id: ha-15-25 output: product_category_id: - - '2192' + - '2456' - input: - product_category_id: ha-15-36-5-2 + product_category_id: ha-15-26 output: product_category_id: - - '2192' + - '7416' - input: - product_category_id: ha-15-36-5-3 + product_category_id: ha-15-27 output: product_category_id: - - '2192' + - '130' - input: - product_category_id: ha-15-36-6 + product_category_id: ha-15-27-1 output: product_category_id: - - '1533' + - '2416' - input: - product_category_id: ha-15-36-7 + product_category_id: ha-15-27-2 output: product_category_id: - - '5487' + - '6928' - input: - product_category_id: ha-15-36-8 + product_category_id: ha-15-27-2-1 output: product_category_id: - - '1850' + - '6928' - input: - product_category_id: ha-15-36-9 + product_category_id: ha-15-27-2-2 output: product_category_id: - - '503737' + - '6928' - input: - product_category_id: ha-15-36-9-1 + product_category_id: ha-15-27-2-3 output: product_category_id: - - '503737' + - '6928' - input: - product_category_id: ha-15-36-9-2 + product_category_id: ha-15-27-3 output: product_category_id: - - '503737' + - '1866' - input: - product_category_id: ha-15-36-9-3 + product_category_id: ha-15-27-3-3 output: product_category_id: - - '503737' + - '1866' - input: - product_category_id: ha-15-37 + product_category_id: ha-15-27-3-4 output: product_category_id: - - '5077' + - '1866' - input: - product_category_id: ha-15-37-1 + product_category_id: ha-15-27-4 output: product_category_id: - - '5077' + - '635' - input: - product_category_id: ha-15-37-2 + product_category_id: ha-15-27-5 output: product_category_id: - - '5077' + - '1809' - input: - product_category_id: ha-15-38 + product_category_id: ha-15-28 output: product_category_id: - - '5587' + - '1663' - input: - product_category_id: ha-15-39 + product_category_id: ha-15-29 output: product_category_id: - - '1194' + - '1603' - input: - product_category_id: ha-15-39-1 + product_category_id: ha-15-29-1 output: product_category_id: - - '1194' + - '1603' - input: - product_category_id: ha-15-39-2 + product_category_id: ha-15-29-2 output: product_category_id: - - '1194' + - '1603' - input: - product_category_id: ha-15-4 + product_category_id: ha-15-30 output: product_category_id: - - '7271' + - '503774' - input: - product_category_id: ha-15-4-1 + product_category_id: ha-15-30-1 output: product_category_id: - - '7271' + - '503774' - input: - product_category_id: ha-15-4-2 + product_category_id: ha-15-30-2 output: product_category_id: - - '7271' + - '503774' - input: - product_category_id: ha-15-40 + product_category_id: ha-15-30-3 output: product_category_id: - - '1206' + - '503774' - input: - product_category_id: ha-15-40-1 + product_category_id: ha-15-31 output: product_category_id: - - '1206' + - '7030' - input: - product_category_id: ha-15-40-2 + product_category_id: ha-15-31-1 output: product_category_id: - - '1206' + - '7030' - input: - product_category_id: ha-15-40-3 + product_category_id: ha-15-31-2 output: product_category_id: - - '1206' + - '7030' - input: - product_category_id: ha-15-40-4 + product_category_id: ha-15-32 output: product_category_id: - - '1206' + - '5873' - input: - product_category_id: ha-15-41 + product_category_id: ha-15-32-1 output: product_category_id: - - '5828' + - '5873' - input: - product_category_id: ha-15-42 + product_category_id: ha-15-32-2 output: product_category_id: - - '2077' + - '5873' - input: - product_category_id: ha-15-42-1 + product_category_id: ha-15-33 output: product_category_id: - - '2486' + - '1832' - input: - product_category_id: ha-15-42-2 + product_category_id: ha-15-34 output: product_category_id: - - '1300' + - '1193' - input: - product_category_id: ha-15-42-3 + product_category_id: ha-15-34-1 output: product_category_id: - - '6556' + - '1668' - input: - product_category_id: ha-15-42-3-1 + product_category_id: ha-15-34-2 output: product_category_id: - - '6556' + - '2305' - input: - product_category_id: ha-15-42-3-2 + product_category_id: ha-15-34-2-1 output: product_category_id: - - '6556' + - '2305' - input: - product_category_id: ha-15-42-4 + product_category_id: ha-15-34-2-2 output: product_category_id: - - '1774' + - '2305' - input: - product_category_id: ha-15-42-4-1 + product_category_id: ha-15-34-3 output: product_category_id: - - '1774' + - '1555' - input: - product_category_id: ha-15-42-4-2 + product_category_id: ha-15-34-4 output: product_category_id: - - '1774' + - '2337' - input: - product_category_id: ha-15-42-4-3 + product_category_id: ha-15-34-4-1 output: product_category_id: - - '1774' + - '2337' - input: - product_category_id: ha-15-42-5 + product_category_id: ha-15-34-4-2 output: product_category_id: - - '499888' + - '2337' - input: - product_category_id: ha-15-42-5-1 + product_category_id: ha-15-34-4-3 output: product_category_id: - - '499888' + - '2337' - input: - product_category_id: ha-15-42-5-2 + product_category_id: ha-15-34-5 output: product_category_id: - - '499888' + - '7484' - input: - product_category_id: ha-15-42-6 + product_category_id: ha-15-34-6 output: product_category_id: - - '1699' + - '1799' - input: - product_category_id: ha-15-42-7 + product_category_id: ha-15-34-6-1 output: product_category_id: - - '2465' + - '1799' - input: - product_category_id: ha-15-42-7-1 + product_category_id: ha-15-34-6-2 output: product_category_id: - - '2465' + - '1799' - input: - product_category_id: ha-15-42-7-2 + product_category_id: ha-15-34-7 output: product_category_id: - - '2465' + - '1450' - input: - product_category_id: ha-15-42-7-3 + product_category_id: ha-15-34-7-1 output: product_category_id: - - '2465' + - '1450' - input: - product_category_id: ha-15-42-8 + product_category_id: ha-15-34-7-2 output: product_category_id: - - '505325' + - '1450' - input: - product_category_id: ha-15-42-8-1 + product_category_id: ha-15-34-8 output: product_category_id: - - '505325' + - '2181' - input: - product_category_id: ha-15-42-8-2 + product_category_id: ha-15-34-8-1 output: product_category_id: - - '505325' + - '2181' - input: - product_category_id: ha-15-42-9 + product_category_id: ha-15-34-8-2 output: product_category_id: - - '6557' + - '2181' - input: - product_category_id: ha-15-43 + product_category_id: ha-15-34-8-3 output: product_category_id: - - '1196' + - '2181' - input: - product_category_id: ha-15-43-1 + product_category_id: ha-15-34-9 output: product_category_id: - - '1196' + - '4132' - input: - product_category_id: ha-15-43-2 + product_category_id: ha-15-35 output: product_category_id: - - '1196' + - '3932' - input: - product_category_id: ha-15-44 + product_category_id: ha-15-35-1 output: product_category_id: - - '1667' + - '3932' - input: - product_category_id: ha-15-44-1 + product_category_id: ha-15-35-2 output: product_category_id: - - '1667' + - '3932' - input: - product_category_id: ha-15-44-2 + product_category_id: ha-15-36 output: product_category_id: - - '1667' + - '1305' - input: - product_category_id: ha-15-45 + product_category_id: ha-15-36-1 output: product_category_id: - - '2053' + - '5515' - input: - product_category_id: ha-15-45-1 + product_category_id: ha-15-36-1-1 output: product_category_id: - - '2053' + - '5515' - input: - product_category_id: ha-15-45-2 + product_category_id: ha-15-36-1-2 output: product_category_id: - - '2053' + - '5515' - input: - product_category_id: ha-15-46 + product_category_id: ha-15-36-1-3 output: product_category_id: - - '1862' + - '5515' - input: - product_category_id: ha-15-47 + product_category_id: ha-15-36-2 output: product_category_id: - - '6868' + - '4022' - input: - product_category_id: ha-15-47-1 + product_category_id: ha-15-36-3 output: product_category_id: - - '6868' + - '500058' - input: - product_category_id: ha-15-47-2 + product_category_id: ha-15-36-3-1 output: product_category_id: - - '6868' + - '500058' - input: - product_category_id: ha-15-48 + product_category_id: ha-15-36-3-2 output: product_category_id: - - '1187' + - '500058' - input: - product_category_id: ha-15-48-1 + product_category_id: ha-15-36-3-3 output: product_category_id: - - '1187' + - '500058' - input: - product_category_id: ha-15-48-2 + product_category_id: ha-15-36-4 output: product_category_id: - - '1187' + - '3602' - input: - product_category_id: ha-15-48-3 + product_category_id: ha-15-36-4-1 output: product_category_id: - - '1187' + - '3602' - input: - product_category_id: ha-15-49 + product_category_id: ha-15-36-4-2 output: product_category_id: - - '1958' + - '3602' - input: - product_category_id: ha-15-49-1 + product_category_id: ha-15-36-4-3 output: product_category_id: - - '1958' + - '3602' - input: - product_category_id: ha-15-49-2 + product_category_id: ha-15-36-5 output: product_category_id: - - '1958' + - '2192' - input: - product_category_id: ha-15-49-3 + product_category_id: ha-15-36-5-1 output: product_category_id: - - '1958' + - '2192' - input: - product_category_id: ha-15-5 + product_category_id: ha-15-36-5-2 output: product_category_id: - - '1174' + - '2192' - input: - product_category_id: ha-15-5-1 + product_category_id: ha-15-36-5-3 output: product_category_id: - - '1174' + - '2192' - input: - product_category_id: ha-15-5-2 + product_category_id: ha-15-36-6 output: product_category_id: - - '1174' + - '1533' - input: - product_category_id: ha-15-5-3 + product_category_id: ha-15-36-7 output: product_category_id: - - '1174' + - '5487' - input: - product_category_id: ha-15-50 + product_category_id: ha-15-36-8 output: product_category_id: - - '1563' + - '1850' - input: - product_category_id: ha-15-50-2 + product_category_id: ha-15-36-9 output: product_category_id: - - '1563' + - '503737' - input: - product_category_id: ha-15-50-3 + product_category_id: ha-15-36-9-1 output: product_category_id: - - '1563' + - '503737' - input: - product_category_id: ha-15-51 + product_category_id: ha-15-36-9-2 output: product_category_id: - - '1225' + - '503737' - input: - product_category_id: ha-15-51-1 + product_category_id: ha-15-36-9-3 output: product_category_id: - - '1225' + - '503737' - input: - product_category_id: ha-15-51-2 + product_category_id: ha-15-36-10 output: product_category_id: - - '1225' + - '1640' - input: - product_category_id: ha-15-52 + product_category_id: ha-15-36-10-1 output: product_category_id: - - '3501' + - '1640' - input: - product_category_id: ha-15-52-1 + product_category_id: ha-15-36-10-2 output: product_category_id: - - '3501' + - '1640' - input: - product_category_id: ha-15-52-2 + product_category_id: ha-15-36-11 output: product_category_id: - - '3501' + - '1991' - input: - product_category_id: ha-15-53 + product_category_id: ha-15-36-11-1 output: product_category_id: - - '1179' + - '1991' - input: - product_category_id: ha-15-54 + product_category_id: ha-15-36-11-2 output: product_category_id: - - '505315' + - '1991' - input: - product_category_id: ha-15-54-1 + product_category_id: ha-15-36-12 output: product_category_id: - - '505315' + - '1732' - input: - product_category_id: ha-15-54-2 + product_category_id: ha-15-36-12-1 output: product_category_id: - - '505315' + - '1732' - input: - product_category_id: ha-15-54-3 + product_category_id: ha-15-36-12-2 output: product_category_id: - - '505315' + - '1732' - input: - product_category_id: ha-15-55 + product_category_id: ha-15-36-12-3 output: product_category_id: - - '1202' + - '1732' - input: - product_category_id: ha-15-55-1 + product_category_id: ha-15-36-13 output: product_category_id: - - '1202' + - '5371' - input: - product_category_id: ha-15-55-2 + product_category_id: ha-15-36-13-1 output: product_category_id: - - '1202' + - '5371' - input: - product_category_id: ha-15-55-3 + product_category_id: ha-15-36-13-2 output: product_category_id: - - '1202' + - '5371' - input: - product_category_id: ha-15-56 + product_category_id: ha-15-36-14 output: product_category_id: - - '1819' + - '4754' - input: - product_category_id: ha-15-56-1 + product_category_id: ha-15-36-15 output: product_category_id: - - '1819' + - '4506' - input: - product_category_id: ha-15-56-2 + product_category_id: ha-15-36-16 output: product_category_id: - - '1819' + - '2330' - input: - product_category_id: ha-15-57 + product_category_id: ha-15-36-16-1 output: product_category_id: - - '7064' + - '2330' - input: - product_category_id: ha-15-57-1 + product_category_id: ha-15-36-16-2 output: product_category_id: - - '7065' + - '2330' - input: - product_category_id: ha-15-57-1-1 + product_category_id: ha-15-36-17 output: product_category_id: - - '7065' + - '1191' - input: - product_category_id: ha-15-57-1-2 + product_category_id: ha-15-36-17-1 output: product_category_id: - - '7065' + - '4081' - input: - product_category_id: ha-15-57-2 + product_category_id: ha-15-36-17-1-1 output: product_category_id: - - '7066' + - '4081' - input: - product_category_id: ha-15-58 + product_category_id: ha-15-36-17-1-2 output: product_category_id: - - '1841' + - '4081' - input: - product_category_id: ha-15-59 + product_category_id: ha-15-36-17-1-3 output: product_category_id: - - '1188' + - '4081' - input: - product_category_id: ha-15-59-1 + product_category_id: ha-15-36-17-2 output: product_category_id: - - '1188' + - '4931' - input: - product_category_id: ha-15-59-2 + product_category_id: ha-15-36-17-2-1 output: product_category_id: - - '1188' + - '4931' - input: - product_category_id: ha-15-59-3 + product_category_id: ha-15-36-17-2-2 output: product_category_id: - - '1188' + - '4931' - input: - product_category_id: ha-15-6 + product_category_id: ha-15-36-17-2-3 output: product_category_id: - - '1215' + - '4931' - input: - product_category_id: ha-15-6-1 + product_category_id: ha-15-36-17-3 output: product_category_id: - - '1215' + - '4294' - input: - product_category_id: ha-15-6-2 + product_category_id: ha-15-36-17-3-1 output: product_category_id: - - '1215' + - '4294' - input: - product_category_id: ha-15-6-3 + product_category_id: ha-15-36-17-3-2 output: product_category_id: - - '1215' + - '4294' - input: - product_category_id: ha-15-60 + product_category_id: ha-15-36-18 output: product_category_id: - - '4419' + - '1698' - input: - product_category_id: ha-15-61 + product_category_id: ha-15-36-18-1 output: product_category_id: - - '1201' + - '1698' - input: - product_category_id: ha-15-62 + product_category_id: ha-15-36-18-2 output: product_category_id: - - '1235' + - '1698' - input: - product_category_id: ha-15-62-1 + product_category_id: ha-15-36-19 output: product_category_id: - - '3582' + - '1459' - input: - product_category_id: ha-15-62-10 + product_category_id: ha-15-36-20 output: product_category_id: - - '4633' + - '4755' - input: - product_category_id: ha-15-62-10-1 + product_category_id: ha-15-36-20-1 output: product_category_id: - - '4633' + - '4755' - input: - product_category_id: ha-15-62-10-2 + product_category_id: ha-15-36-20-2 output: product_category_id: - - '4633' + - '4755' - input: - product_category_id: ha-15-62-11 + product_category_id: ha-15-36-21 output: product_category_id: - - '3706' + - '4074' - input: - product_category_id: ha-15-62-2 + product_category_id: ha-15-36-21-1 output: product_category_id: - - '3516' + - '4074' - input: - product_category_id: ha-15-62-3 + product_category_id: ha-15-36-21-2 output: product_category_id: - - '3594' + - '4074' - input: - product_category_id: ha-15-62-3-1 + product_category_id: ha-15-36-22 output: product_category_id: - - '3594' + - '1785' - input: - product_category_id: ha-15-62-3-2 + product_category_id: ha-15-36-22-1 output: product_category_id: - - '3594' + - '1785' - input: - product_category_id: ha-15-62-3-3 + product_category_id: ha-15-36-22-2 output: product_category_id: - - '3594' + - '1785' - input: - product_category_id: ha-15-62-4 + product_category_id: ha-15-36-22-3 output: product_category_id: - - '3224' + - '1785' - input: - product_category_id: ha-15-62-5 + product_category_id: ha-15-36-23 output: product_category_id: - - '3725' + - '1198' - input: - product_category_id: ha-15-62-6 + product_category_id: ha-15-36-24 output: product_category_id: - - '7077' + - '1539' - input: - product_category_id: ha-15-62-7 + product_category_id: ha-15-36-25 output: product_category_id: - - '3517' + - '2021' - input: - product_category_id: ha-15-62-8 + product_category_id: ha-15-36-26 output: product_category_id: - - '499985' + - '4756' - input: - product_category_id: ha-15-62-9 + product_category_id: ha-15-36-26-1 output: product_category_id: - - '3494' + - '4756' - input: - product_category_id: ha-15-63 + product_category_id: ha-15-36-26-2 output: product_category_id: - - '1203' + - '4756' - input: - product_category_id: ha-15-63-1 + product_category_id: ha-15-36-26-3 output: product_category_id: - - '1203' + - '4756' - input: - product_category_id: ha-15-63-2 + product_category_id: ha-15-36-27 output: product_category_id: - - '1203' + - '4757' - input: - product_category_id: ha-15-63-3 + product_category_id: ha-15-36-28 output: product_category_id: - - '1203' + - '1205' - input: - product_category_id: ha-15-64 + product_category_id: ha-15-36-28-1 output: product_category_id: - - '1923' + - '1205' - input: - product_category_id: ha-15-65 + product_category_id: ha-15-36-28-2 output: product_category_id: - - '1644' + - '1205' - input: - product_category_id: ha-15-66 + product_category_id: ha-15-36-28-3 output: product_category_id: - - '1195' + - '1205' - input: - product_category_id: ha-15-67 + product_category_id: ha-15-36-29 output: product_category_id: - - '1236' + - '1413' - input: - product_category_id: ha-15-68 + product_category_id: ha-15-36-30 output: product_category_id: - - '1787' + - '1207' - input: - product_category_id: ha-15-68-1 + product_category_id: ha-15-36-31 output: product_category_id: - - '1787' + - '2481' - input: - product_category_id: ha-15-68-2 + product_category_id: ha-15-36-32 output: product_category_id: - - '1787' + - '4340' - input: - product_category_id: ha-15-69 + product_category_id: ha-15-36-33 output: product_category_id: - - '1184' + - '6799' - input: - product_category_id: ha-15-69-1 + product_category_id: ha-15-36-34 output: product_category_id: - - '1184' + - '2093' - input: - product_category_id: ha-15-69-2 + product_category_id: ha-15-36-34-1 output: product_category_id: - - '1184' + - '2093' - input: - product_category_id: ha-15-69-3 + product_category_id: ha-15-36-34-2 output: product_category_id: - - '1184' + - '2093' - input: - product_category_id: ha-15-7 + product_category_id: ha-15-36-35 output: product_category_id: - - '2792' + - '7394' - input: - product_category_id: ha-15-70 + product_category_id: ha-15-36-35-1 output: product_category_id: - - '1584' + - '7394' - input: - product_category_id: ha-15-71 + product_category_id: ha-15-36-35-2 output: product_category_id: - - '2835' + - '7394' - input: - product_category_id: ha-15-71-1 + product_category_id: ha-15-36-35-3 output: product_category_id: - - '2835' + - '7394' - input: - product_category_id: ha-15-71-2 + product_category_id: ha-15-36-36 output: product_category_id: - - '2835' + - '4758' - input: - product_category_id: ha-15-71-3 + product_category_id: ha-15-36-37 output: product_category_id: - - '2835' + - '4759' - input: - product_category_id: ha-15-72 + product_category_id: ha-15-36-37-1 output: product_category_id: - - '3745' + - '4759' - input: - product_category_id: ha-15-73 + product_category_id: ha-15-36-37-2 output: product_category_id: - - '1439' + - '4759' - input: - product_category_id: ha-15-74 + product_category_id: ha-15-36-38 output: product_category_id: - - '2198' + - '1374' - input: - product_category_id: ha-15-75 + product_category_id: ha-15-37 output: product_category_id: - - '4919' + - '5077' - input: - product_category_id: ha-15-75-1 + product_category_id: ha-15-37-1 output: product_category_id: - - '6965' + - '5077' - input: - product_category_id: ha-15-75-1-1 + product_category_id: ha-15-37-2 output: product_category_id: - - '6965' + - '5077' - input: - product_category_id: ha-15-75-1-2 + product_category_id: ha-15-38 output: product_category_id: - - '6965' + - '5587' - input: - product_category_id: ha-15-75-1-3 + product_category_id: ha-15-39 output: product_category_id: - - '6965' + - '1194' - input: - product_category_id: ha-15-75-2 + product_category_id: ha-15-39-1 output: product_category_id: - - '4716' + - '1194' - input: - product_category_id: ha-15-76 + product_category_id: ha-15-39-2 output: product_category_id: - - '1167' + - '1194' - input: - product_category_id: ha-15-76-1 + product_category_id: ha-15-40 output: product_category_id: - - '1167' + - '1206' - input: - product_category_id: ha-15-76-2 + product_category_id: ha-15-40-1 output: product_category_id: - - '1167' + - '1206' - input: - product_category_id: ha-15-77 + product_category_id: ha-15-40-2 output: product_category_id: - - '1238' + - '1206' - input: - product_category_id: ha-15-77-1 + product_category_id: ha-15-40-3 output: product_category_id: - - '1238' + - '1206' - input: - product_category_id: ha-15-77-2 + product_category_id: ha-15-40-4 output: product_category_id: - - '1238' + - '1206' - input: - product_category_id: ha-15-77-3 + product_category_id: ha-15-41 output: product_category_id: - - '1238' + - '5828' - input: - product_category_id: ha-15-78 + product_category_id: ha-15-42 output: product_category_id: - - '1469' + - '2077' - input: - product_category_id: ha-15-78-1 + product_category_id: ha-15-42-1 output: product_category_id: - - '1469' + - '2486' - input: - product_category_id: ha-15-78-2 + product_category_id: ha-15-42-2 output: product_category_id: - - '1469' + - '1300' - input: - product_category_id: ha-15-78-3 + product_category_id: ha-15-42-3 output: product_category_id: - - '1469' + - '6556' - input: - product_category_id: ha-15-79 + product_category_id: ha-15-42-3-1 output: product_category_id: - - '5592' + - '6556' - input: - product_category_id: ha-15-8 + product_category_id: ha-15-42-3-2 output: product_category_id: - - '4325' + - '6556' - input: - product_category_id: ha-15-8-1 + product_category_id: ha-15-42-4 output: product_category_id: - - '4325' + - '1774' - input: - product_category_id: ha-15-8-2 + product_category_id: ha-15-42-4-1 output: product_category_id: - - '4325' + - '1774' - input: - product_category_id: ha-15-80 + product_category_id: ha-15-42-4-2 output: product_category_id: - - '1632' + - '1774' - input: - product_category_id: ha-15-80-1 + product_category_id: ha-15-42-4-3 output: product_category_id: - - '1632' + - '1774' - input: - product_category_id: ha-15-80-2 + product_category_id: ha-15-42-5 output: product_category_id: - - '1632' + - '499888' - input: - product_category_id: ha-15-80-3 + product_category_id: ha-15-42-5-1 output: product_category_id: - - '1632' + - '499888' - input: - product_category_id: ha-15-9 + product_category_id: ha-15-42-5-2 output: product_category_id: - - '2015' + - '499888' - input: - product_category_id: ha-2 + product_category_id: ha-15-42-6 output: product_category_id: - - '115' + - '1699' - input: - product_category_id: ha-2-1 + product_category_id: ha-15-42-7 output: product_category_id: - - '2729' + - '2465' - input: - product_category_id: ha-2-10 + product_category_id: ha-15-42-7-1 output: product_category_id: - - '125' + - '2465' - input: - product_category_id: ha-2-10-1 + product_category_id: ha-15-42-7-2 output: product_category_id: - - '125' + - '2465' - input: - product_category_id: ha-2-10-2 + product_category_id: ha-15-42-7-3 output: product_category_id: - - '125' + - '2465' - input: - product_category_id: ha-2-10-3 + product_category_id: ha-15-42-8 output: product_category_id: - - '125' + - '505325' - input: - product_category_id: ha-2-11 + product_category_id: ha-15-42-8-1 output: product_category_id: - - '7112' + - '505325' - input: - product_category_id: ha-2-12 + product_category_id: ha-15-42-8-2 output: product_category_id: - - '503777' + - '505325' - input: - product_category_id: ha-2-12-1 + product_category_id: ha-15-42-9 output: product_category_id: - - '503777' + - '6557' - input: - product_category_id: ha-2-12-2 + product_category_id: ha-15-43 output: product_category_id: - - '503777' + - '1196' - input: - product_category_id: ha-2-12-3 + product_category_id: ha-15-43-1 output: product_category_id: - - '503777' + - '1196' - input: - product_category_id: ha-2-13 + product_category_id: ha-15-43-2 output: product_category_id: - - '123' + - '1196' - input: - product_category_id: ha-2-13-1 + product_category_id: ha-15-44 output: product_category_id: - - '4544' + - '1667' - input: - product_category_id: ha-2-13-2 + product_category_id: ha-15-44-1 output: product_category_id: - - '121' + - '1667' - input: - product_category_id: ha-2-13-3 + product_category_id: ha-15-44-2 output: product_category_id: - - '2008' + - '1667' - input: - product_category_id: ha-2-13-3-1 + product_category_id: ha-15-45 output: product_category_id: - - '2008' + - '2053' - input: - product_category_id: ha-2-13-3-2 + product_category_id: ha-15-45-1 output: product_category_id: - - '2008' + - '2053' - input: - product_category_id: ha-2-13-3-3 + product_category_id: ha-15-45-2 output: product_category_id: - - '2008' + - '2053' - input: - product_category_id: ha-2-13-3-4 + product_category_id: ha-15-46 output: product_category_id: - - '2008' + - '1862' - input: - product_category_id: ha-2-13-4 + product_category_id: ha-15-47 output: product_category_id: - - '8270' + - '6868' - input: - product_category_id: ha-2-13-4-1 + product_category_id: ha-15-47-1 output: product_category_id: - - '8270' + - '6868' - input: - product_category_id: ha-2-13-4-2 + product_category_id: ha-15-47-2 output: product_category_id: - - '8270' + - '6868' - input: - product_category_id: ha-2-13-4-3 + product_category_id: ha-15-48 output: product_category_id: - - '8270' + - '1187' - input: - product_category_id: ha-2-14 + product_category_id: ha-15-48-1 output: product_category_id: - - '6943' + - '1187' - input: - product_category_id: ha-2-14-1 + product_category_id: ha-15-48-2 output: product_category_id: - - '6943' + - '1187' - input: - product_category_id: ha-2-14-2 + product_category_id: ha-15-48-3 output: product_category_id: - - '6943' + - '1187' - input: - product_category_id: ha-2-14-3 + product_category_id: ha-15-49 output: product_category_id: - - '6943' + - '1958' - input: - product_category_id: ha-2-15 + product_category_id: ha-15-49-1 output: product_category_id: - - '503775' + - '1958' - input: - product_category_id: ha-2-16 + product_category_id: ha-15-49-2 output: product_category_id: - - '7439' + - '1958' - input: - product_category_id: ha-2-16-1 + product_category_id: ha-15-49-3 output: product_category_id: - - '7439' + - '1958' - input: - product_category_id: ha-2-16-2 + product_category_id: ha-15-50 output: product_category_id: - - '7439' + - '1563' - input: - product_category_id: ha-2-16-3 + product_category_id: ha-15-50-2 output: product_category_id: - - '7439' + - '1563' - input: - product_category_id: ha-2-16-4 + product_category_id: ha-15-50-3 output: product_category_id: - - '7439' + - '1563' - input: - product_category_id: ha-2-17 + product_category_id: ha-15-51 output: product_category_id: - - '7004' + - '1225' - input: - product_category_id: ha-2-17-1 + product_category_id: ha-15-51-1 output: product_category_id: - - '7004' + - '1225' - input: - product_category_id: ha-2-17-2 + product_category_id: ha-15-51-2 output: product_category_id: - - '7004' + - '1225' - input: - product_category_id: ha-2-17-3 + product_category_id: ha-15-52 output: product_category_id: - - '7004' + - '3501' - input: - product_category_id: ha-2-17-4 + product_category_id: ha-15-52-1 output: product_category_id: - - '7004' + - '3501' - input: - product_category_id: ha-2-17-5 + product_category_id: ha-15-52-2 output: product_category_id: - - '7004' + - '3501' - input: - product_category_id: ha-2-18 + product_category_id: ha-15-53 output: product_category_id: - - '7136' + - '1179' - input: - product_category_id: ha-2-18-1 + product_category_id: ha-15-54 output: product_category_id: - - '7136' + - '505315' - input: - product_category_id: ha-2-18-2 + product_category_id: ha-15-54-1 output: product_category_id: - - '7136' + - '505315' - input: - product_category_id: ha-2-19 + product_category_id: ha-15-54-2 output: product_category_id: - - '7053' + - '505315' - input: - product_category_id: ha-2-19-1 + product_category_id: ha-15-54-3 output: product_category_id: - - '7053' + - '505315' - input: - product_category_id: ha-2-19-2 + product_category_id: ha-15-55 output: product_category_id: - - '7053' + - '1202' - input: - product_category_id: ha-2-19-3 + product_category_id: ha-15-55-1 output: product_category_id: - - '7053' + - '1202' - input: - product_category_id: ha-2-19-4 + product_category_id: ha-15-55-2 output: product_category_id: - - '7053' + - '1202' - input: - product_category_id: ha-2-2 + product_category_id: ha-15-55-3 output: product_category_id: - - '6343' + - '1202' - input: - product_category_id: ha-2-2-1 + product_category_id: ha-15-56 output: product_category_id: - - '2972' + - '1819' - input: - product_category_id: ha-2-2-2 + product_category_id: ha-15-56-1 output: product_category_id: - - '6446' + - '1819' - input: - product_category_id: ha-2-2-3 + product_category_id: ha-15-56-2 output: product_category_id: - - '503727' + - '1819' - input: - product_category_id: ha-2-2-4 + product_category_id: ha-15-57 output: product_category_id: - - '99338' + - '7064' - input: - product_category_id: ha-2-2-5 + product_category_id: ha-15-57-1 output: product_category_id: - - '1356' + - '7065' - input: - product_category_id: ha-2-2-6 + product_category_id: ha-15-57-1-1 output: product_category_id: - - '2795' + - '7065' - input: - product_category_id: ha-2-2-7 + product_category_id: ha-15-57-1-2 output: product_category_id: - - '499970' + - '7065' - input: - product_category_id: ha-2-2-8 + product_category_id: ha-15-57-2 output: product_category_id: - - '2665' + - '7066' - input: - product_category_id: ha-2-2-9 + product_category_id: ha-15-58 output: product_category_id: - - '6458' + - '1841' - input: - product_category_id: ha-2-2-9-1 + product_category_id: ha-15-59 output: product_category_id: - - '6458' + - '1188' - input: - product_category_id: ha-2-2-9-2 + product_category_id: ha-15-59-1 output: product_category_id: - - '6458' + - '1188' - input: - product_category_id: ha-2-20 + product_category_id: ha-15-59-2 output: product_category_id: - - '505300' + - '1188' - input: - product_category_id: ha-2-20-1 + product_category_id: ha-15-59-3 output: product_category_id: - - '505300' + - '1188' - input: - product_category_id: ha-2-20-2 + product_category_id: ha-15-60 output: product_category_id: - - '505300' + - '4419' - input: - product_category_id: ha-2-20-3 + product_category_id: ha-15-61 output: product_category_id: - - '505300' + - '1201' - input: - product_category_id: ha-2-20-4 + product_category_id: ha-15-62 output: product_category_id: - - '505300' + - '1235' - input: - product_category_id: ha-2-21 + product_category_id: ha-15-62-1 output: product_category_id: - - '499772' + - '3582' - input: - product_category_id: ha-2-21-1 + product_category_id: ha-15-62-2 output: product_category_id: - - '499773' + - '3516' - input: - product_category_id: ha-2-21-2 + product_category_id: ha-15-62-3 output: product_category_id: - - '503728' + - '3594' - input: - product_category_id: ha-2-21-2-1 + product_category_id: ha-15-62-3-1 output: product_category_id: - - '503728' + - '3594' - input: - product_category_id: ha-2-21-2-2 + product_category_id: ha-15-62-3-2 output: product_category_id: - - '503728' + - '3594' - input: - product_category_id: ha-2-21-2-3 + product_category_id: ha-15-62-3-3 output: product_category_id: - - '503728' + - '3594' - input: - product_category_id: ha-2-21-2-4 + product_category_id: ha-15-62-4 output: product_category_id: - - '503728' + - '3224' - input: - product_category_id: ha-2-21-2-5 + product_category_id: ha-15-62-5 output: product_category_id: - - '503728' + - '3725' - input: - product_category_id: ha-2-22 + product_category_id: ha-15-62-6 output: product_category_id: - - '124' + - '7077' - input: - product_category_id: ha-2-22-1 + product_category_id: ha-15-62-7 output: product_category_id: - - '124' + - '3517' - input: - product_category_id: ha-2-22-2 + product_category_id: ha-15-62-8 output: product_category_id: - - '124' + - '499985' - input: - product_category_id: ha-2-22-3 + product_category_id: ha-15-62-9 output: product_category_id: - - '124' + - '3494' - input: - product_category_id: ha-2-22-4 + product_category_id: ha-15-62-10 output: product_category_id: - - '124' + - '4633' - input: - product_category_id: ha-2-22-5 + product_category_id: ha-15-62-10-1 output: product_category_id: - - '124' + - '4633' - input: - product_category_id: ha-2-22-6 + product_category_id: ha-15-62-10-2 output: product_category_id: - - '124' + - '4633' - input: - product_category_id: ha-2-3 + product_category_id: ha-15-62-11 output: product_category_id: - - '119' + - '3706' - input: - product_category_id: ha-2-3-1 + product_category_id: ha-15-63 output: product_category_id: - - '4468' + - '1203' - input: - product_category_id: ha-2-3-1-1 + product_category_id: ha-15-63-1 output: product_category_id: - - '4468' + - '1203' - input: - product_category_id: ha-2-3-1-2 + product_category_id: ha-15-63-2 output: product_category_id: - - '4468' + - '1203' - input: - product_category_id: ha-2-3-1-3 + product_category_id: ha-15-63-3 output: product_category_id: - - '4468' + - '1203' - input: - product_category_id: ha-2-3-2 + product_category_id: ha-15-64 output: product_category_id: - - '4634' + - '1923' - input: - product_category_id: ha-2-4 + product_category_id: ha-15-65 output: product_category_id: - - '503776' + - '1644' - input: - product_category_id: ha-2-5 + product_category_id: ha-15-66 output: product_category_id: - - '2826' + - '1195' - input: - product_category_id: ha-2-6 + product_category_id: ha-15-67 output: product_category_id: - - '120' + - '1236' - input: - product_category_id: ha-2-6-1 + product_category_id: ha-15-68 output: product_category_id: - - '120' + - '1787' - input: - product_category_id: ha-2-6-2 + product_category_id: ha-15-68-1 output: product_category_id: - - '120' + - '1787' - input: - product_category_id: ha-2-6-3 + product_category_id: ha-15-68-2 output: product_category_id: - - '120' + - '1787' - input: - product_category_id: ha-2-6-4 + product_category_id: ha-15-69 output: product_category_id: - - '120' + - '1184' - input: - product_category_id: ha-2-7 + product_category_id: ha-15-69-1 output: product_category_id: - - '499949' + - '1184' - input: - product_category_id: ha-2-7-1 + product_category_id: ha-15-69-2 output: product_category_id: - - '499949' + - '1184' - input: - product_category_id: ha-2-7-2 + product_category_id: ha-15-69-3 output: product_category_id: - - '499949' + - '1184' - input: - product_category_id: ha-2-8 + product_category_id: ha-15-70 output: product_category_id: - - '2030' + - '1584' - input: - product_category_id: ha-2-9 + product_category_id: ha-15-71 output: product_category_id: - - '122' + - '2835' - input: - product_category_id: ha-2-9-1 + product_category_id: ha-15-71-1 output: product_category_id: - - '122' + - '2835' - input: - product_category_id: ha-2-9-2 + product_category_id: ha-15-71-2 output: product_category_id: - - '122' + - '2835' - input: - product_category_id: ha-2-9-3 + product_category_id: ha-15-71-3 output: product_category_id: - - '122' + - '2835' - input: - product_category_id: ha-2-9-4 + product_category_id: ha-15-72 output: product_category_id: - - '122' + - '3745' - input: - product_category_id: ha-2-9-5 + product_category_id: ha-15-73 output: product_category_id: - - '122' + - '1439' - input: - product_category_id: ha-2-9-6 + product_category_id: ha-15-74 output: product_category_id: - - '122' + - '2198' - input: - product_category_id: ha-3 + product_category_id: ha-15-75 output: product_category_id: - - '128' + - '4919' - input: - product_category_id: ha-3-1 + product_category_id: ha-15-75-1 output: product_category_id: - - '502983' + - '6965' - input: - product_category_id: ha-3-2 + product_category_id: ha-15-75-1-1 output: product_category_id: - - '502973' + - '6965' - input: - product_category_id: ha-3-2-1 + product_category_id: ha-15-75-1-2 output: product_category_id: - - '502973' + - '6965' - input: - product_category_id: ha-3-2-2 + product_category_id: ha-15-75-1-3 output: product_category_id: - - '502973' + - '6965' - input: - product_category_id: ha-3-2-3 + product_category_id: ha-15-75-2 output: product_category_id: - - '502973' + - '4716' - input: - product_category_id: ha-3-2-4 + product_category_id: ha-15-76 output: product_category_id: - - '502973' + - '1167' - input: - product_category_id: ha-3-3 + product_category_id: ha-15-76-1 output: product_category_id: - - '1352' + - '1167' - input: - product_category_id: ha-3-4 + product_category_id: ha-15-76-2 output: product_category_id: - - '1919' + - '1167' - input: - product_category_id: ha-3-4-1 + product_category_id: ha-15-77 output: product_category_id: - - '1919' + - '1238' - input: - product_category_id: ha-3-4-2 + product_category_id: ha-15-77-1 output: product_category_id: - - '1919' + - '1238' - input: - product_category_id: ha-3-4-3 + product_category_id: ha-15-77-2 output: product_category_id: - - '1919' + - '1238' - input: - product_category_id: ha-3-5 + product_category_id: ha-15-77-3 output: product_category_id: - - '502986' + - '1238' - input: - product_category_id: ha-3-5-1 + product_category_id: ha-15-78 output: product_category_id: - - '502986' + - '1469' - input: - product_category_id: ha-3-5-2 + product_category_id: ha-15-78-1 output: product_category_id: - - '502986' + - '1469' - input: - product_category_id: ha-3-6 + product_category_id: ha-15-78-2 output: product_category_id: - - '1788' + - '1469' - input: - product_category_id: ha-3-6-1 + product_category_id: ha-15-78-3 output: product_category_id: - - '1788' + - '1469' - input: - product_category_id: ha-3-6-2 + product_category_id: ha-15-79 output: product_category_id: - - '1788' + - '5592' - input: - product_category_id: ha-3-6-3 + product_category_id: ha-15-80 output: product_category_id: - - '1788' + - '1632' - input: - product_category_id: ha-3-7 + product_category_id: ha-15-80-1 output: product_category_id: - - '502984' + - '1632' - input: - product_category_id: ha-3-8 + product_category_id: ha-15-80-2 output: product_category_id: - - '499958' + - '1632' - input: - product_category_id: ha-3-8-1 + product_category_id: ha-15-80-3 output: product_category_id: - - '499958' + - '1632' - input: - product_category_id: ha-3-8-2 + product_category_id: hb output: product_category_id: - - '499958' + - '469' - input: - product_category_id: ha-3-8-3 + product_category_id: hb-1 output: product_category_id: - - '499958' + - '491' - input: - product_category_id: ha-3-8-4 + product_category_id: hb-1-1 output: product_category_id: - - '499958' + - '5849' - input: - product_category_id: ha-4 + product_category_id: hb-1-1-1 output: product_category_id: - - '543575' + - '5850' - input: - product_category_id: ha-4-1 + product_category_id: hb-1-1-2 output: product_category_id: - - '543703' + - '5851' - input: - product_category_id: ha-4-2 + product_category_id: hb-1-2 output: product_category_id: - - '543576' + - '7220' - input: - product_category_id: ha-4-2-1 + product_category_id: hb-1-3 output: product_category_id: - - '543579' + - '5071' - input: - product_category_id: ha-4-2-2 + product_category_id: hb-1-3-1 output: product_category_id: - - '543578' + - '505819' - input: - product_category_id: ha-4-3 + product_category_id: hb-1-3-2 output: product_category_id: - - '543577' + - '3688' - input: - product_category_id: ha-5 + product_category_id: hb-1-3-2-1 output: product_category_id: - - '502975' + - '6323' - input: - product_category_id: ha-5-1 + product_category_id: hb-1-3-2-2 output: product_category_id: - - '502975' + - '3905' - input: - product_category_id: ha-5-2 + product_category_id: hb-1-3-2-3 output: product_category_id: - - '502975' + - '3111' - input: - product_category_id: ha-5-3 + product_category_id: hb-1-3-3 output: product_category_id: - - '502975' + - '6284' - input: - product_category_id: ha-5-4 + product_category_id: hb-1-3-3-1 output: product_category_id: - - '502975' + - '6285' - input: - product_category_id: ha-5-5 + product_category_id: hb-1-3-4 output: product_category_id: - - '502975' + - '5072' - input: - product_category_id: ha-6 + product_category_id: hb-1-4 output: product_category_id: - - '2878' + - '494' - input: - product_category_id: ha-6-1 + product_category_id: hb-1-4-1 output: product_category_id: - - '7092' + - '500009' - input: - product_category_id: ha-6-10 + product_category_id: hb-1-4-2 output: product_category_id: - - '1816' + - '2246' - input: - product_category_id: ha-6-11 + product_category_id: hb-1-4-3 output: product_category_id: - - '7557' + - '495' - input: - product_category_id: ha-6-11-1 + product_category_id: hb-1-4-4 output: product_category_id: - - '7557' + - '496' - input: - product_category_id: ha-6-11-2 + product_category_id: hb-1-4-5 output: product_category_id: - - '7557' + - '500' - input: - product_category_id: ha-6-11-3 + product_category_id: hb-1-4-6 output: product_category_id: - - '7557' + - '2633' - input: - product_category_id: ha-6-12 + product_category_id: hb-1-4-7 output: product_category_id: - - '6841' + - '497' - input: - product_category_id: ha-6-13 + product_category_id: hb-1-4-8 output: product_category_id: - - '8112' + - '505822' - input: - product_category_id: ha-6-14 + product_category_id: hb-1-4-8-1 output: product_category_id: - - '500054' + - '543679' - input: - product_category_id: ha-6-14-1 + product_category_id: hb-1-4-8-2 output: product_category_id: - - '1508' + - '543680' - input: - product_category_id: ha-6-14-2 + product_category_id: hb-1-4-9 output: product_category_id: - - '2408' + - '501' - input: - product_category_id: ha-6-14-2-1 + product_category_id: hb-1-4-10 output: product_category_id: - - '2408' + - '4767' - input: - product_category_id: ha-6-14-2-10 + product_category_id: hb-1-4-11 output: product_category_id: - - '2408' + - '5551' - input: - product_category_id: ha-6-14-2-11 + product_category_id: hb-1-5 output: product_category_id: - - '2408' + - '775' - input: - product_category_id: ha-6-14-2-12 + product_category_id: hb-1-6 output: product_category_id: - - '2408' + - '505820' - input: - product_category_id: ha-6-14-2-13 + product_category_id: hb-1-7 output: product_category_id: - - '2408' + - '7002' - input: - product_category_id: ha-6-14-2-14 + product_category_id: hb-1-8 output: product_category_id: - - '2408' + - '508' - input: - product_category_id: ha-6-14-2-2 + product_category_id: hb-1-8-1 output: product_category_id: - - '2408' + - '2954' - input: - product_category_id: ha-6-14-2-3 + product_category_id: hb-1-8-2 output: product_category_id: - - '2408' + - '6206' - input: - product_category_id: ha-6-14-2-4 + product_category_id: hb-1-8-3 output: product_category_id: - - '2408' + - '4527' - input: - product_category_id: ha-6-14-2-5 + product_category_id: hb-1-8-4 output: product_category_id: - - '2408' + - '510' - input: - product_category_id: ha-6-14-2-6 + product_category_id: hb-1-8-5 output: product_category_id: - - '2408' + - '516' - input: - product_category_id: ha-6-14-2-7 + product_category_id: hb-1-8-5-1 output: product_category_id: - - '2408' + - '5848' - input: - product_category_id: ha-6-14-2-8 + product_category_id: hb-1-8-5-2 output: product_category_id: - - '2408' + - '6205' - input: - product_category_id: ha-6-14-2-9 + product_category_id: hb-1-8-5-3 output: product_category_id: - - '2408' + - '4753' - input: - product_category_id: ha-6-14-3 + product_category_id: hb-1-8-6 output: product_category_id: - - '1739' + - '509' - input: - product_category_id: ha-6-14-4 + product_category_id: hb-1-9 output: product_category_id: - - '7062' + - '2890' - input: - product_category_id: ha-6-14-5 + product_category_id: hb-1-9-1 output: product_category_id: - - '2230' + - '2984' - input: - product_category_id: ha-6-14-6 + product_category_id: hb-1-9-2 output: product_category_id: - - '2251' + - '5702' - input: - product_category_id: ha-6-14-6-10 + product_category_id: hb-1-9-3 output: product_category_id: - - '2251' + - '6242' - input: - product_category_id: ha-6-14-6-11 + product_category_id: hb-1-9-4 output: product_category_id: - - '2251' + - '6871' - input: - product_category_id: ha-6-14-6-12 + product_category_id: hb-1-9-5 output: product_category_id: - - '2251' + - '7413' - input: - product_category_id: ha-6-14-6-13 + product_category_id: hb-1-9-6 output: product_category_id: - - '2251' + - '525' - input: - product_category_id: ha-6-14-6-14 + product_category_id: hb-1-9-6-1 output: product_category_id: - - '2251' + - '525' - input: - product_category_id: ha-6-14-6-15 + product_category_id: hb-1-9-6-2 output: product_category_id: - - '2251' + - '525' - input: - product_category_id: ha-6-14-6-2 + product_category_id: hb-1-9-6-3 output: product_category_id: - - '2251' + - '525' - input: - product_category_id: ha-6-14-6-3 + product_category_id: hb-1-9-6-4 output: product_category_id: - - '2251' + - '525' - input: - product_category_id: ha-6-14-6-4 + product_category_id: hb-1-9-6-5 output: product_category_id: - - '2251' + - '525' - input: - product_category_id: ha-6-14-6-6 + product_category_id: hb-1-9-6-6 output: product_category_id: - - '2251' + - '525' - input: - product_category_id: ha-6-14-6-7 + product_category_id: hb-1-9-6-7 output: product_category_id: - - '2251' + - '525' - input: - product_category_id: ha-6-14-6-8 + product_category_id: hb-1-9-6-8 output: product_category_id: - - '2251' + - '525' - input: - product_category_id: ha-6-14-6-9 + product_category_id: hb-1-9-6-9 output: product_category_id: - - '2251' + - '525' - input: - product_category_id: ha-6-14-7 + product_category_id: hb-1-10 output: product_category_id: - - '500055' + - '5690' - input: - product_category_id: ha-6-14-8 + product_category_id: hb-1-10-1 output: product_category_id: - - '2195' + - '5690' - input: - product_category_id: ha-6-15 + product_category_id: hb-1-10-2 output: product_category_id: - - '1771' + - '5690' - input: - product_category_id: ha-6-16 + product_category_id: hb-1-10-3 output: product_category_id: - - '503773' + - '5690' - input: - product_category_id: ha-6-16-1 + product_category_id: hb-1-10-4 output: product_category_id: - - '503764' + - '5690' - input: - product_category_id: ha-6-16-2 + product_category_id: hb-1-10-5 output: product_category_id: - - '502978' + - '5690' - input: - product_category_id: ha-6-16-3 + product_category_id: hb-1-10-6 output: product_category_id: - - '503770' + - '5690' - input: - product_category_id: ha-6-16-4 + product_category_id: hb-1-10-7 output: product_category_id: - - '502992' + - '5690' - input: - product_category_id: ha-6-17 + product_category_id: hb-1-10-8 output: product_category_id: - - '6770' + - '5690' - input: - product_category_id: ha-6-18 + product_category_id: hb-1-10-9 output: product_category_id: - - '503731' + - '5690' - input: - product_category_id: ha-6-19 + product_category_id: hb-1-10-10 output: product_category_id: - - '500030' + - '5690' - input: - product_category_id: ha-6-19-1 + product_category_id: hb-1-11 output: product_category_id: - - '500030' + - '517' - input: - product_category_id: ha-6-19-2 + product_category_id: hb-1-11-6 output: product_category_id: - - '500030' + - '517' - input: - product_category_id: ha-6-2 + product_category_id: hb-1-11-7 output: product_category_id: - - '4696' + - '517' - input: - product_category_id: ha-6-2-1 + product_category_id: hb-1-11-8 output: product_category_id: - - '232167' + - '517' - input: - product_category_id: ha-6-2-2 + product_category_id: hb-1-12 output: product_category_id: - - '4697' + - '500087' - input: - product_category_id: ha-6-2-3 + product_category_id: hb-1-13 output: product_category_id: - - '4698' + - '5966' - input: - product_category_id: ha-6-2-4 + product_category_id: hb-1-14 output: product_category_id: - - '4699' + - '5965' - input: - product_category_id: ha-6-2-5 + product_category_id: hb-1-15 output: product_category_id: - - '4700' + - '505293' - input: - product_category_id: ha-6-20 + product_category_id: hb-1-15-1 output: product_category_id: - - '6769' + - '499934' - input: - product_category_id: ha-6-20-1 + product_category_id: hb-1-15-2 output: product_category_id: - - '6769' + - '7337' - input: - product_category_id: ha-6-20-2 + product_category_id: hb-1-15-3 output: product_category_id: - - '6769' + - '2552' - input: - product_category_id: ha-6-21 + product_category_id: hb-1-15-4 output: product_category_id: - - '8113' + - '7336' - input: - product_category_id: ha-6-22 + product_category_id: hb-1-15-5 output: product_category_id: - - '499933' + - '1680' - input: - product_category_id: ha-6-22-1 + product_category_id: hb-1-15-6 output: product_category_id: - - '499933' + - '505294' - input: - product_category_id: ha-6-22-2 + product_category_id: hb-1-16 output: product_category_id: - - '499933' + - '518' - input: - product_category_id: ha-6-22-3 + product_category_id: hb-1-17 output: product_category_id: - - '499933' + - '519' - input: - product_category_id: ha-6-23 + product_category_id: hb-1-17-1 output: product_category_id: - - '4988' + - '520' - input: - product_category_id: ha-6-24 + product_category_id: hb-1-17-1-1 output: product_category_id: - - '3974' + - '3512' - input: - product_category_id: ha-6-24-1 + product_category_id: hb-1-17-1-2 output: product_category_id: - - '4199' + - '7138' - input: - product_category_id: ha-6-24-1-1 + product_category_id: hb-1-17-1-3 output: product_category_id: - - '4199' + - '502969' - input: - product_category_id: ha-6-24-1-2 + product_category_id: hb-1-17-1-4 output: product_category_id: - - '4199' + - '3364' - input: - product_category_id: ha-6-24-1-3 + product_category_id: hb-1-17-2 output: product_category_id: - - '4199' + - '521' - input: - product_category_id: ha-6-24-2 + product_category_id: hb-1-17-3 output: product_category_id: - - '2485' + - '5488' - input: - product_category_id: ha-6-24-2-1 + product_category_id: hb-1-17-3-1 output: product_category_id: - - '2485' + - '7243' - input: - product_category_id: ha-6-24-2-2 + product_category_id: hb-1-17-3-1-1 output: product_category_id: - - '2485' + - '7243' - input: - product_category_id: ha-6-24-2-3 + product_category_id: hb-1-17-3-1-2 output: product_category_id: - - '2485' + - '7243' - input: - product_category_id: ha-6-24-3 + product_category_id: hb-1-17-3-1-3 output: product_category_id: - - '6876' + - '7243' - input: - product_category_id: ha-6-24-4 + product_category_id: hb-1-17-3-1-4 output: product_category_id: - - '3980' + - '7243' - input: - product_category_id: ha-6-24-4-1 + product_category_id: hb-1-17-3-1-5 output: product_category_id: - - '3980' + - '7243' - input: - product_category_id: ha-6-24-4-2 + product_category_id: hb-1-17-4 output: product_category_id: - - '3980' + - '6929' - input: - product_category_id: ha-6-24-4-3 + product_category_id: hb-1-17-5 output: product_category_id: - - '3980' + - '5164' - input: - product_category_id: ha-6-24-5 + product_category_id: hb-1-17-5-1 output: product_category_id: - - '3280' + - '5165' - input: - product_category_id: ha-6-24-5-1 + product_category_id: hb-1-17-5-1-1 output: product_category_id: - - '3280' + - '5165' - input: - product_category_id: ha-6-24-5-2 + product_category_id: hb-1-17-5-1-2 output: product_category_id: - - '3280' + - '5165' - input: - product_category_id: ha-6-24-6 + product_category_id: hb-1-17-5-1-3 output: product_category_id: - - '500103' + - '5165' - input: - product_category_id: ha-6-24-6-1 + product_category_id: hb-1-17-5-1-4 output: product_category_id: - - '500103' + - '5165' - input: - product_category_id: ha-6-24-6-2 + product_category_id: hb-1-17-5-2 output: product_category_id: - - '500103' + - '4248' - input: - product_category_id: ha-6-24-7 + product_category_id: hb-1-17-5-3 output: product_category_id: - - '4031' + - '5166' - input: - product_category_id: ha-6-24-8 + product_category_id: hb-1-18 output: product_category_id: - - '3919' + - '5870' - input: - product_category_id: ha-6-24-8-1 + product_category_id: hb-1-18-1 output: product_category_id: - - '3919' + - '8541' - input: - product_category_id: ha-6-24-8-2 + product_category_id: hb-1-18-2 output: product_category_id: - - '3919' + - '505352' - input: - product_category_id: ha-6-25 + product_category_id: hb-1-19 output: product_category_id: - - '505320' + - '3777' - input: - product_category_id: ha-6-3 + product_category_id: hb-1-20 output: product_category_id: - - '499981' + - '4551' - input: - product_category_id: ha-6-4 + product_category_id: hb-1-20-1 output: product_category_id: - - '502977' + - '4552' - input: - product_category_id: ha-6-4-1 + product_category_id: hb-1-20-2 output: product_category_id: - - '6298' + - '499692' - input: - product_category_id: ha-6-4-2 + product_category_id: hb-1-20-3 output: product_category_id: - - '1492' + - '7317' - input: - product_category_id: ha-6-4-3 + product_category_id: hb-1-20-3-1 output: product_category_id: - - '4469' + - '7317' - input: - product_category_id: ha-6-4-4 + product_category_id: hb-1-20-3-2 output: product_category_id: - - '3053' + - '7317' - input: - product_category_id: ha-6-4-5 + product_category_id: hb-1-20-3-3 output: product_category_id: - - '6297' + - '7317' - input: - product_category_id: ha-6-4-6 + product_category_id: hb-1-20-4 output: product_category_id: - - '5119' + - '7316' - input: - product_category_id: ha-6-4-7 + product_category_id: hb-1-20-5 output: product_category_id: - - '6904' + - '505669' - input: - product_category_id: ha-6-5 + product_category_id: hb-1-21 output: product_category_id: - - '1318' + - '8082' - input: - product_category_id: ha-6-5-1 + product_category_id: hb-1-22 output: product_category_id: - - '1318' + - '7186' - input: - product_category_id: ha-6-5-2 + product_category_id: hb-1-23 output: product_category_id: - - '1318' + - '8105' - input: - product_category_id: ha-6-5-3 + product_category_id: hb-1-24 output: product_category_id: - - '1318' + - '523' - input: - product_category_id: ha-6-6 + product_category_id: hb-1-24-1 output: product_category_id: - - '7086' + - '523' - input: - product_category_id: ha-6-7 + product_category_id: hb-1-24-2 output: product_category_id: - - '7270' + - '523' - input: - product_category_id: ha-6-8 + product_category_id: hb-1-24-3 output: product_category_id: - - '8470' + - '523' - input: - product_category_id: ha-6-9 + product_category_id: hb-1-24-4 output: product_category_id: - - '1979' + - '523' - input: - product_category_id: ha-7 + product_category_id: hb-1-24-5 output: product_category_id: - - '500096' + - '523' - input: - product_category_id: ha-7-1 + product_category_id: hb-1-24-6 output: product_category_id: - - '500099' + - '523' - input: - product_category_id: ha-7-1-1 + product_category_id: hb-1-25 output: product_category_id: - - '500099' + - '5923' - input: - product_category_id: ha-7-1-2 + product_category_id: hb-2 output: product_category_id: - - '500099' + - '5573' - input: - product_category_id: ha-7-1-3 + product_category_id: hb-2-1 output: product_category_id: - - '500099' + - '499919' - input: - product_category_id: ha-7-2 + product_category_id: hb-2-2 output: product_category_id: - - '500098' + - '500082' - input: - product_category_id: ha-7-2-1 + product_category_id: hb-2-2-1 output: product_category_id: - - '500098' + - '500082' - input: - product_category_id: ha-7-2-2 + product_category_id: hb-2-2-2 output: product_category_id: - - '500098' + - '500082' - input: - product_category_id: ha-7-2-3 + product_category_id: hb-2-2-3 output: product_category_id: - - '500098' + - '500082' - input: - product_category_id: ha-7-3 + product_category_id: hb-2-2-4 output: product_category_id: - - '500097' + - '500082' - input: - product_category_id: ha-7-3-1 + product_category_id: hb-2-3 output: product_category_id: - - '500097' + - '5974' - input: - product_category_id: ha-7-3-2 + product_category_id: hb-2-3-1 output: product_category_id: - - '500097' + - '5974' - input: - product_category_id: ha-7-3-5 + product_category_id: hb-2-3-2 output: product_category_id: - - '500097' + - '5974' - input: - product_category_id: ha-7-4 + product_category_id: hb-2-3-3 output: product_category_id: - - '500102' + - '5974' - input: - product_category_id: ha-7-4-1 + product_category_id: hb-2-3-4 output: product_category_id: - - '500102' + - '5974' - input: - product_category_id: ha-7-4-2 + product_category_id: hb-2-3-5 output: product_category_id: - - '500102' + - '5974' - input: - product_category_id: ha-7-4-3 + product_category_id: hb-2-4 output: product_category_id: - - '500102' + - '500083' - input: - product_category_id: ha-7-5 + product_category_id: hb-2-5 output: product_category_id: - - '500101' + - '5124' - input: - product_category_id: ha-7-5-1 + product_category_id: hb-3 output: product_category_id: - - '500101' + - '2915' - input: - product_category_id: ha-7-5-2 + product_category_id: hb-3-1 output: product_category_id: - - '500101' + - '493' - input: - product_category_id: ha-7-5-3 + product_category_id: hb-3-1-1 output: product_category_id: - - '500101' + - '7404' - input: - product_category_id: ha-7-6 + product_category_id: hb-3-2 output: product_category_id: - - '500100' + - '473' - input: - product_category_id: ha-8 + product_category_id: hb-3-2-1 output: product_category_id: - - '499873' + - '474' - input: - product_category_id: ha-8-1 + product_category_id: hb-3-2-1-1 output: product_category_id: - - '500090' + - '2503' - input: - product_category_id: ha-8-2 + product_category_id: hb-3-2-1-2 output: product_category_id: - - '499874' + - '2522' - input: - product_category_id: ha-8-3 + product_category_id: hb-3-2-1-3 output: product_category_id: - - '1519' + - '2876' - input: - product_category_id: ha-8-3-1 + product_category_id: hb-3-2-1-4 output: product_category_id: - - '2238' + - '2875' - input: - product_category_id: ha-8-3-2 + product_category_id: hb-3-2-1-5 output: product_category_id: - - '500043' + - '2747' - input: - product_category_id: ha-8-3-3 + product_category_id: hb-3-2-1-6 output: product_category_id: - - '1897' + - '3691' - input: - product_category_id: ha-8-4 + product_category_id: hb-3-2-1-7 output: product_category_id: - - '2766' + - '499913' - input: - product_category_id: ha-9 + product_category_id: hb-3-2-1-8 output: product_category_id: - - '1974' + - '3208' - input: - product_category_id: ha-9-1 + product_category_id: hb-3-2-1-9 output: product_category_id: - - '6488' + - '7417' - input: - product_category_id: ha-9-2 + product_category_id: hb-3-2-1-10 output: product_category_id: - - '8067' + - '4049' - input: - product_category_id: ha-9-3 + product_category_id: hb-3-2-2 output: product_category_id: - - '1870' + - '475' - input: - product_category_id: ha-9-3-1 + product_category_id: hb-3-2-3 output: product_category_id: - - '1870' + - '6069' - input: - product_category_id: ha-9-3-3 + product_category_id: hb-3-2-4 output: product_category_id: - - '1870' + - '6331' - input: - product_category_id: ha-9-4 + product_category_id: hb-3-2-5 output: product_category_id: - - '503730' + - '2619' - input: - product_category_id: ha-9-4-1 + product_category_id: hb-3-2-5-1 output: product_category_id: - - '503730' + - '2548' - input: - product_category_id: ha-9-4-2 + product_category_id: hb-3-2-5-1-3 output: product_category_id: - - '503730' + - '6555' - input: - product_category_id: ha-9-4-3 + product_category_id: hb-3-2-5-1-4 output: product_category_id: - - '503730' + - '6282' - input: - product_category_id: ha-9-4-5 + product_category_id: hb-3-2-5-1-5 output: product_category_id: - - '503730' + - '2780' - input: - product_category_id: hb + product_category_id: hb-3-2-5-1-6 output: product_category_id: - - '469' + - '476' - input: - product_category_id: hb-1 + product_category_id: hb-3-2-5-1-7 output: product_category_id: - - '491' + - '4121' - input: - product_category_id: hb-1-1 + product_category_id: hb-3-2-5-1-8 output: product_category_id: - - '5849' + - '502996' - input: - product_category_id: hb-1-1-1 + product_category_id: hb-3-2-5-1-8-1 output: product_category_id: - - '5850' + - '7256' - input: - product_category_id: hb-1-1-2 + product_category_id: hb-3-2-5-1-8-2 output: product_category_id: - - '5851' + - '7493' - input: - product_category_id: hb-1-10 + product_category_id: hb-3-2-5-1-8-3 output: product_category_id: - - '5690' + - '502997' - input: - product_category_id: hb-1-10-1 + product_category_id: hb-3-2-5-1-9 output: product_category_id: - - '5690' + - '3025' - input: - product_category_id: hb-1-10-10 + product_category_id: hb-3-2-5-1-10 output: product_category_id: - - '5690' + - '4106' - input: - product_category_id: hb-1-10-2 + product_category_id: hb-3-2-5-1-11 output: product_category_id: - - '5690' + - '499822' - input: - product_category_id: hb-1-10-3 + product_category_id: hb-3-2-5-1-12 output: product_category_id: - - '5690' + - '7356' - input: - product_category_id: hb-1-10-4 + product_category_id: hb-3-2-5-2 output: product_category_id: - - '5690' + - '2975' - input: - product_category_id: hb-1-10-5 + product_category_id: hb-3-2-5-2-1 output: product_category_id: - - '5690' + - '2739' - input: - product_category_id: hb-1-10-6 + product_category_id: hb-3-2-5-2-2 output: product_category_id: - - '5690' + - '3037' - input: - product_category_id: hb-1-10-7 + product_category_id: hb-3-2-5-2-3 output: product_category_id: - - '5690' + - '7494' - input: - product_category_id: hb-1-10-8 + product_category_id: hb-3-2-5-2-4 output: product_category_id: - - '5690' + - '6300' - input: - product_category_id: hb-1-10-9 + product_category_id: hb-3-2-5-2-5 output: product_category_id: - - '5690' + - '6341' - input: - product_category_id: hb-1-11 + product_category_id: hb-3-2-5-2-6 output: product_category_id: - - '517' + - '2828' - input: - product_category_id: hb-1-11-6 + product_category_id: hb-3-2-5-2-7 output: product_category_id: - - '517' + - '499698' - input: - product_category_id: hb-1-11-7 + product_category_id: hb-3-2-5-2-8 output: product_category_id: - - '517' + - '7490' - input: - product_category_id: hb-1-11-8 + product_category_id: hb-3-2-5-2-9 output: product_category_id: - - '517' + - '5880' - input: - product_category_id: hb-1-12 + product_category_id: hb-3-2-5-2-10 output: product_category_id: - - '500087' + - '2734' - input: - product_category_id: hb-1-13 + product_category_id: hb-3-2-5-3 output: product_category_id: - - '5966' + - '2958' - input: - product_category_id: hb-1-14 + product_category_id: hb-3-2-5-3-1 output: product_category_id: - - '5965' + - '6760' - input: - product_category_id: hb-1-15 + product_category_id: hb-3-2-5-3-2 output: product_category_id: - - '505293' + - '7190' - input: - product_category_id: hb-1-15-1 + product_category_id: hb-3-2-5-3-3 output: product_category_id: - - '499934' + - '499926' - input: - product_category_id: hb-1-15-2 + product_category_id: hb-3-2-5-3-4 output: product_category_id: - - '7337' + - '2511' - input: - product_category_id: hb-1-15-3 + product_category_id: hb-3-2-5-3-5 output: product_category_id: - - '2552' + - '6261' - input: - product_category_id: hb-1-15-4 + product_category_id: hb-3-2-5-3-6 output: product_category_id: - - '7336' + - '7018' - input: - product_category_id: hb-1-15-5 + product_category_id: hb-3-2-5-3-7 output: product_category_id: - - '1680' + - '8132' - input: - product_category_id: hb-1-15-6 + product_category_id: hb-3-2-5-3-8 output: product_category_id: - - '505294' + - '6260' - input: - product_category_id: hb-1-16 + product_category_id: hb-3-2-6 output: product_category_id: - - '518' + - '477' - input: - product_category_id: hb-1-17 + product_category_id: hb-3-2-6-1 output: product_category_id: - - '519' + - '5978' - input: - product_category_id: hb-1-17-1 + product_category_id: hb-3-2-6-1-2 output: product_category_id: - - '520' + - '5979' - input: - product_category_id: hb-1-17-1-1 + product_category_id: hb-3-2-6-1-4 output: product_category_id: - - '3512' + - '5981' - input: - product_category_id: hb-1-17-1-2 + product_category_id: hb-3-2-6-2 output: product_category_id: - - '7138' + - '4779' - input: - product_category_id: hb-1-17-1-3 + product_category_id: hb-3-2-6-3 output: product_category_id: - - '502969' + - '2779' - input: - product_category_id: hb-1-17-1-4 + product_category_id: hb-3-2-6-3-1 output: product_category_id: - - '3364' + - '8220' - input: - product_category_id: hb-1-17-2 + product_category_id: hb-3-2-6-3-2 output: product_category_id: - - '521' + - '2904' - input: - product_category_id: hb-1-17-3 + product_category_id: hb-3-2-6-3-3 output: product_category_id: - - '5488' + - '2686' - input: - product_category_id: hb-1-17-3-1 + product_category_id: hb-3-2-6-3-4 output: product_category_id: - - '7243' + - '2807' - input: - product_category_id: hb-1-17-3-1-1 + product_category_id: hb-3-2-6-3-5 output: product_category_id: - - '7243' + - '2761' - input: - product_category_id: hb-1-17-3-1-2 + product_category_id: hb-3-2-6-3-6 output: product_category_id: - - '7243' + - '6340' - input: - product_category_id: hb-1-17-3-1-3 + product_category_id: hb-3-2-6-3-7 output: product_category_id: - - '7243' + - '8219' - input: - product_category_id: hb-1-17-3-1-4 + product_category_id: hb-3-2-6-3-8 output: product_category_id: - - '7243' + - '2834' - input: - product_category_id: hb-1-17-3-1-5 + product_category_id: hb-3-2-6-4 output: product_category_id: - - '7243' + - '2571' - input: - product_category_id: hb-1-17-4 + product_category_id: hb-3-2-6-4-1 output: product_category_id: - - '6929' + - '6305' - input: - product_category_id: hb-1-17-5 + product_category_id: hb-3-2-6-4-2 output: product_category_id: - - '5164' + - '2980' - input: - product_category_id: hb-1-17-5-1 + product_category_id: hb-3-2-6-4-3 output: product_category_id: - - '5165' + - '8218' - input: - product_category_id: hb-1-17-5-1-1 + product_category_id: hb-3-2-6-4-4 output: product_category_id: - - '5165' + - '2765' - input: - product_category_id: hb-1-17-5-1-2 + product_category_id: hb-3-2-6-4-5 output: product_category_id: - - '5165' + - '6304' - input: - product_category_id: hb-1-17-5-1-3 + product_category_id: hb-3-2-6-5 output: product_category_id: - - '5165' + - '2645' - input: - product_category_id: hb-1-17-5-1-4 + product_category_id: hb-3-2-6-5-1 output: product_category_id: - - '5165' + - '6306' - input: - product_category_id: hb-1-17-5-2 + product_category_id: hb-3-2-6-5-2 output: product_category_id: - - '4248' + - '2858' - input: - product_category_id: hb-1-17-5-3 + product_category_id: hb-3-2-6-5-3 output: product_category_id: - - '5166' + - '2589' - input: - product_category_id: hb-1-18 + product_category_id: hb-3-2-6-5-5 output: product_category_id: - - '5870' + - '8217' - input: - product_category_id: hb-1-18-1 + product_category_id: hb-3-2-6-5-6 output: product_category_id: - - '8541' + - '3021' - input: - product_category_id: hb-1-18-2 + product_category_id: hb-3-2-6-6 output: product_category_id: - - '505352' + - '6072' - input: - product_category_id: hb-1-19 + product_category_id: hb-3-2-6-7 output: product_category_id: - - '3777' + - '3509' - input: - product_category_id: hb-1-2 + product_category_id: hb-3-2-7 output: product_category_id: - - '7220' + - '478' - input: - product_category_id: hb-1-20 + product_category_id: hb-3-2-7-1 output: product_category_id: - - '4551' + - '3009' - input: - product_category_id: hb-1-20-1 + product_category_id: hb-3-2-7-1-1 output: product_category_id: - - '4552' + - '3009' - input: - product_category_id: hb-1-20-2 + product_category_id: hb-3-2-7-1-2 output: product_category_id: - - '499692' + - '3009' - input: - product_category_id: hb-1-20-3 + product_category_id: hb-3-2-7-2 output: product_category_id: - - '7317' + - '4218' - input: - product_category_id: hb-1-20-3-1 + product_category_id: hb-3-2-7-3 output: product_category_id: - - '7317' + - '6893' - input: - product_category_id: hb-1-20-3-2 + product_category_id: hb-3-2-7-4 output: product_category_id: - - '7317' + - '5975' - input: - product_category_id: hb-1-20-3-3 + product_category_id: hb-3-2-7-8 output: product_category_id: - - '7317' + - '233419' - input: - product_category_id: hb-1-20-4 + product_category_id: hb-3-2-7-9 output: product_category_id: - - '7316' + - '2946' - input: - product_category_id: hb-1-20-5 + product_category_id: hb-3-2-7-10 output: product_category_id: - - '505669' + - '7445' - input: - product_category_id: hb-1-21 + product_category_id: hb-3-2-7-11 output: product_category_id: - - '8082' + - '2683' - input: - product_category_id: hb-1-22 + product_category_id: hb-3-2-8 output: product_category_id: - - '7186' + - '479' - input: - product_category_id: hb-1-23 + product_category_id: hb-3-2-8-1 output: product_category_id: - - '8105' + - '479' - input: - product_category_id: hb-1-24 + product_category_id: hb-3-2-8-2 output: product_category_id: - - '523' + - '479' - input: - product_category_id: hb-1-24-1 + product_category_id: hb-3-2-8-3 output: product_category_id: - - '523' + - '479' - input: - product_category_id: hb-1-24-2 + product_category_id: hb-3-2-8-4 output: product_category_id: - - '523' + - '479' - input: - product_category_id: hb-1-24-3 + product_category_id: hb-3-2-9 output: product_category_id: - - '523' + - '567' - input: - product_category_id: hb-1-24-4 + product_category_id: hb-3-2-9-1 output: product_category_id: - - '523' + - '481' - input: - product_category_id: hb-1-24-5 + product_category_id: hb-3-2-9-2 output: product_category_id: - - '523' + - '7429' - input: - product_category_id: hb-1-24-6 + product_category_id: hb-3-2-9-3 output: product_category_id: - - '523' + - '6104' - input: - product_category_id: hb-1-25 + product_category_id: hb-3-2-9-4 output: product_category_id: - - '5923' + - '5980' - input: - product_category_id: hb-1-3 + product_category_id: hb-3-2-9-5 output: product_category_id: - - '5071' + - '8029' - input: - product_category_id: hb-1-3-1 + product_category_id: hb-3-2-9-6 output: product_category_id: - - '505819' + - '2526' - input: - product_category_id: hb-1-3-2 + product_category_id: hb-3-2-9-7 output: product_category_id: - - '3688' + - '7467' - input: - product_category_id: hb-1-3-2-1 + product_category_id: hb-3-2-9-8 output: product_category_id: - - '6323' + - '6791' - input: - product_category_id: hb-1-3-2-2 + product_category_id: hb-3-2-9-9 output: product_category_id: - - '3905' + - '482' - input: - product_category_id: hb-1-3-2-3 + product_category_id: hb-3-2-9-9-1 output: product_category_id: - - '3111' + - '543573' - input: - product_category_id: hb-1-3-3 + product_category_id: hb-3-2-9-9-2 output: product_category_id: - - '6284' + - '543574' - input: - product_category_id: hb-1-3-3-1 + product_category_id: hb-3-2-9-10 output: product_category_id: - - '6285' + - '2592' - input: - product_category_id: hb-1-3-4 + product_category_id: hb-3-2-9-11 output: product_category_id: - - '5072' + - '6034' - input: - product_category_id: hb-1-4 + product_category_id: hb-3-2-9-12 output: product_category_id: - - '494' + - '6753' - input: - product_category_id: hb-1-4-1 + product_category_id: hb-3-2-9-13 output: product_category_id: - - '500009' + - '6262' - input: - product_category_id: hb-1-4-10 + product_category_id: hb-3-2-9-14 output: product_category_id: - - '4767' + - '5820' - input: - product_category_id: hb-1-4-11 + product_category_id: hb-3-2-9-15 output: product_category_id: - - '5551' + - '2844' - input: - product_category_id: hb-1-4-2 + product_category_id: hb-3-2-9-16 output: product_category_id: - - '2246' + - '2740' - input: - product_category_id: hb-1-4-3 + product_category_id: hb-3-2-9-16-1 output: product_category_id: - - '495' + - '5338' - input: - product_category_id: hb-1-4-4 + product_category_id: hb-3-2-9-16-2 output: product_category_id: - - '496' + - '5339' - input: - product_category_id: hb-1-4-5 + product_category_id: hb-3-2-9-17 output: product_category_id: - - '500' + - '5976' - input: - product_category_id: hb-1-4-6 + product_category_id: hb-3-2-9-17-1 output: product_category_id: - - '2633' + - '543659' - input: - product_category_id: hb-1-4-7 + product_category_id: hb-3-2-9-17-2 output: product_category_id: - - '497' + - '543658' - input: - product_category_id: hb-1-4-8 + product_category_id: hb-3-2-9-18 output: product_category_id: - - '505822' + - '6863' - input: - product_category_id: hb-1-4-8-1 + product_category_id: hb-3-2-9-19 output: product_category_id: - - '543679' + - '567' - input: - product_category_id: hb-1-4-8-2 + product_category_id: hb-3-2-9-20 output: product_category_id: - - '543680' + - '2592' - input: - product_category_id: hb-1-4-9 + product_category_id: hb-3-2-9-21 output: product_category_id: - - '501' + - '567' - input: - product_category_id: hb-1-5 + product_category_id: hb-3-3 output: product_category_id: - - '775' + - '4929' - input: - product_category_id: hb-1-6 + product_category_id: hb-3-4 output: product_category_id: - - '505820' + - '2934' - input: - product_category_id: hb-1-7 + product_category_id: hb-3-5 output: product_category_id: - - '7002' + - '484' - input: - product_category_id: hb-1-8 + product_category_id: hb-3-5-1 output: product_category_id: - - '508' + - '543599' - input: - product_category_id: hb-1-8-1 + product_category_id: hb-3-5-2 output: product_category_id: - - '2954' + - '543598' - input: - product_category_id: hb-1-8-2 + product_category_id: hb-3-6 output: product_category_id: - - '6206' + - '506' - input: - product_category_id: hb-1-8-3 + product_category_id: hb-3-6-1 output: product_category_id: - - '4527' + - '5706' - input: - product_category_id: hb-1-8-4 + product_category_id: hb-3-6-2 output: product_category_id: - - '510' + - '6559' - input: - product_category_id: hb-1-8-5 + product_category_id: hb-3-6-3 output: product_category_id: - - '516' + - '6560' - input: - product_category_id: hb-1-8-5-1 + product_category_id: hb-3-6-4 output: product_category_id: - - '5848' + - '500024' - input: - product_category_id: hb-1-8-5-2 + product_category_id: hb-3-6-5 output: product_category_id: - - '6205' + - '6561' - input: - product_category_id: hb-1-8-5-3 + product_category_id: hb-3-6-6 output: product_category_id: - - '4753' + - '6562' - input: - product_category_id: hb-1-8-6 + product_category_id: hb-3-6-7 output: product_category_id: - - '509' + - '7542' - input: - product_category_id: hb-1-9 + product_category_id: hb-3-6-8 output: product_category_id: - - '2890' + - '2596' - input: - product_category_id: hb-1-9-1 + product_category_id: hb-3-6-8-1 output: product_category_id: - - '2984' + - '2596' - input: - product_category_id: hb-1-9-2 + product_category_id: hb-3-6-8-2 output: product_category_id: - - '5702' + - '2596' - input: - product_category_id: hb-1-9-3 + product_category_id: hb-3-6-8-3 output: product_category_id: - - '6242' + - '2596' - input: - product_category_id: hb-1-9-4 + product_category_id: hb-3-7 output: product_category_id: - - '6871' + - '7134' - input: - product_category_id: hb-1-9-5 + product_category_id: hb-3-8 output: product_category_id: - - '7413' + - '485' - input: - product_category_id: hb-1-9-6 + product_category_id: hb-3-8-2 output: product_category_id: - - '525' + - '6862' - input: - product_category_id: hb-1-9-6-1 + product_category_id: hb-3-8-3 output: product_category_id: - - '525' + - '5821' - input: - product_category_id: hb-1-9-6-2 + product_category_id: hb-3-8-4 output: product_category_id: - - '525' + - '2387' - input: - product_category_id: hb-1-9-6-3 + product_category_id: hb-3-8-4-1 output: product_category_id: - - '525' + - '2387' - input: - product_category_id: hb-1-9-6-4 + product_category_id: hb-3-8-4-2 output: product_category_id: - - '525' + - '2387' - input: - product_category_id: hb-1-9-6-5 + product_category_id: hb-3-8-4-3 output: product_category_id: - - '525' + - '2387' - input: - product_category_id: hb-1-9-6-6 + product_category_id: hb-3-8-4-4 output: product_category_id: - - '525' + - '2387' - input: - product_category_id: hb-1-9-6-7 + product_category_id: hb-3-8-4-5 output: product_category_id: - - '525' + - '2387' - input: - product_category_id: hb-1-9-6-8 + product_category_id: hb-3-8-4-6 output: product_category_id: - - '525' + - '2387' - input: - product_category_id: hb-1-9-6-9 + product_category_id: hb-3-8-5 output: product_category_id: - - '525' + - '8122' - input: - product_category_id: hb-2 + product_category_id: hb-3-8-6 output: product_category_id: - - '5573' + - '2564' - input: - product_category_id: hb-2-1 + product_category_id: hb-3-9 output: product_category_id: - - '499919' + - '515' - input: - product_category_id: hb-2-2 + product_category_id: hb-3-9-1 output: product_category_id: - - '500082' + - '2992' - input: - product_category_id: hb-2-2-1 + product_category_id: hb-3-9-2 output: product_category_id: - - '500082' + - '3022' - input: - product_category_id: hb-2-2-2 + product_category_id: hb-3-9-3 output: product_category_id: - - '500082' + - '3049' - input: - product_category_id: hb-2-2-3 + product_category_id: hb-3-9-4 output: product_category_id: - - '500082' + - '2801' - input: - product_category_id: hb-2-2-4 + product_category_id: hb-3-9-4-1 output: product_category_id: - - '500082' + - '2801' - input: - product_category_id: hb-2-3 + product_category_id: hb-3-9-4-2 output: product_category_id: - - '5974' + - '2801' - input: - product_category_id: hb-2-3-1 + product_category_id: hb-3-9-4-3 output: product_category_id: - - '5974' + - '2801' - input: - product_category_id: hb-2-3-2 + product_category_id: hb-3-9-5 output: product_category_id: - - '5974' + - '7495' - input: - product_category_id: hb-2-3-3 + product_category_id: hb-3-10 output: product_category_id: - - '5974' + - '486' - input: - product_category_id: hb-2-3-4 + product_category_id: hb-3-10-1 output: product_category_id: - - '5974' + - '8452' - input: - product_category_id: hb-2-3-5 + product_category_id: hb-3-10-2 output: product_category_id: - - '5974' + - '2814' - input: - product_category_id: hb-2-4 + product_category_id: hb-3-10-3 output: product_category_id: - - '500083' + - '6053' - input: - product_category_id: hb-2-5 + product_category_id: hb-3-10-4 output: product_category_id: - - '5124' + - '5977' - input: - product_category_id: hb-3 + product_category_id: hb-3-10-5 output: product_category_id: - - '2915' + - '6099' - input: - product_category_id: hb-3-1 + product_category_id: hb-3-10-6 output: product_category_id: - - '493' + - '4766' - input: - product_category_id: hb-3-1-1 + product_category_id: hb-3-10-7 output: product_category_id: - - '7404' + - '6052' - input: - product_category_id: hb-3-10 + product_category_id: hb-3-10-8 output: product_category_id: - - '486' + - '3013' - input: - product_category_id: hb-3-10-1 + product_category_id: hb-3-10-9 output: product_category_id: - - '8452' + - '6429' - input: product_category_id: hb-3-10-10 output: @@ -28347,16 +29192,6 @@ rules: output: product_category_id: - '543616' -- input: - product_category_id: hb-3-10-13-1-10 - output: - product_category_id: - - '543616' -- input: - product_category_id: hb-3-10-13-1-11 - output: - product_category_id: - - '543616' - input: product_category_id: hb-3-10-13-1-2 output: @@ -28397,6 +29232,16 @@ rules: output: product_category_id: - '543616' +- input: + product_category_id: hb-3-10-13-1-10 + output: + product_category_id: + - '543616' +- input: + product_category_id: hb-3-10-13-1-11 + output: + product_category_id: + - '543616' - input: product_category_id: hb-3-10-13-2 output: @@ -28442,31 +29287,6 @@ rules: output: product_category_id: - '543615' -- input: - product_category_id: hb-3-10-13-3-10 - output: - product_category_id: - - '543615' -- input: - product_category_id: hb-3-10-13-3-11 - output: - product_category_id: - - '543615' -- input: - product_category_id: hb-3-10-13-3-12 - output: - product_category_id: - - '543615' -- input: - product_category_id: hb-3-10-13-3-13 - output: - product_category_id: - - '543615' -- input: - product_category_id: hb-3-10-13-3-14 - output: - product_category_id: - - '543615' - input: product_category_id: hb-3-10-13-3-2 output: @@ -28508,45 +29328,30 @@ rules: product_category_id: - '543615' - input: - product_category_id: hb-3-10-2 - output: - product_category_id: - - '2814' -- input: - product_category_id: hb-3-10-3 - output: - product_category_id: - - '6053' -- input: - product_category_id: hb-3-10-4 - output: - product_category_id: - - '5977' -- input: - product_category_id: hb-3-10-5 + product_category_id: hb-3-10-13-3-10 output: product_category_id: - - '6099' + - '543615' - input: - product_category_id: hb-3-10-6 + product_category_id: hb-3-10-13-3-11 output: product_category_id: - - '4766' + - '543615' - input: - product_category_id: hb-3-10-7 + product_category_id: hb-3-10-13-3-12 output: product_category_id: - - '6052' + - '543615' - input: - product_category_id: hb-3-10-8 + product_category_id: hb-3-10-13-3-13 output: product_category_id: - - '3013' + - '543615' - input: - product_category_id: hb-3-10-9 + product_category_id: hb-3-10-13-3-14 output: product_category_id: - - '6429' + - '543615' - input: product_category_id: hb-3-11 output: @@ -28617,6 +29422,46 @@ rules: output: product_category_id: - '6189' +- input: + product_category_id: hb-3-12-2 + output: + product_category_id: + - '2620' +- input: + product_category_id: hb-3-12-3 + output: + product_category_id: + - '5823' +- input: + product_category_id: hb-3-12-4 + output: + product_category_id: + - '6455' +- input: + product_category_id: hb-3-12-5 + output: + product_category_id: + - '5295' +- input: + product_category_id: hb-3-12-6 + output: + product_category_id: + - '5155' +- input: + product_category_id: hb-3-12-7 + output: + product_category_id: + - '5824' +- input: + product_category_id: hb-3-12-8 + output: + product_category_id: + - '8543' +- input: + product_category_id: hb-3-12-9 + output: + product_category_id: + - '2527' - input: product_category_id: hb-3-12-10 output: @@ -28667,11 +29512,6 @@ rules: output: product_category_id: - '3019' -- input: - product_category_id: hb-3-12-14-10 - output: - product_category_id: - - '3019' - input: product_category_id: hb-3-12-14-2 output: @@ -28712,6 +29552,11 @@ rules: output: product_category_id: - '3019' +- input: + product_category_id: hb-3-12-14-10 + output: + product_category_id: + - '3019' - input: product_category_id: hb-3-12-15 output: @@ -28767,51 +29612,11 @@ rules: output: product_category_id: - '1360' -- input: - product_category_id: hb-3-12-2 - output: - product_category_id: - - '2620' - input: product_category_id: hb-3-12-20 output: product_category_id: - '4316' -- input: - product_category_id: hb-3-12-3 - output: - product_category_id: - - '5823' -- input: - product_category_id: hb-3-12-4 - output: - product_category_id: - - '6455' -- input: - product_category_id: hb-3-12-5 - output: - product_category_id: - - '5295' -- input: - product_category_id: hb-3-12-6 - output: - product_category_id: - - '5155' -- input: - product_category_id: hb-3-12-7 - output: - product_category_id: - - '5824' -- input: - product_category_id: hb-3-12-8 - output: - product_category_id: - - '8543' -- input: - product_category_id: hb-3-12-9 - output: - product_category_id: - - '2527' - input: product_category_id: hb-3-13 output: @@ -28827,26 +29632,6 @@ rules: output: product_category_id: - '529' -- input: - product_category_id: hb-3-14-10 - output: - product_category_id: - - '2681' -- input: - product_category_id: hb-3-14-11 - output: - product_category_id: - - '2971' -- input: - product_category_id: hb-3-14-12 - output: - product_category_id: - - '5111' -- input: - product_category_id: hb-3-14-13 - output: - product_category_id: - - '2508' - input: product_category_id: hb-3-14-2 output: @@ -28942,6 +29727,26 @@ rules: output: product_category_id: - '8531' +- input: + product_category_id: hb-3-14-10 + output: + product_category_id: + - '2681' +- input: + product_category_id: hb-3-14-11 + output: + product_category_id: + - '2971' +- input: + product_category_id: hb-3-14-12 + output: + product_category_id: + - '5111' +- input: + product_category_id: hb-3-14-13 + output: + product_category_id: + - '2508' - input: product_category_id: hb-3-15 output: @@ -29011,9867 +29816,9767 @@ rules: product_category_id: hb-3-18 output: product_category_id: - - '2656' -- input: - product_category_id: hb-3-19 - output: - product_category_id: - - '1380' -- input: - product_category_id: hb-3-19-1 - output: - product_category_id: - - '3011' -- input: - product_category_id: hb-3-19-1-1 - output: - product_category_id: - - '7363' -- input: - product_category_id: hb-3-19-1-2 - output: - product_category_id: - - '6510' -- input: - product_category_id: hb-3-19-1-2-1 - output: - product_category_id: - - '6510' -- input: - product_category_id: hb-3-19-1-2-2 - output: - product_category_id: - - '6510' -- input: - product_category_id: hb-3-19-1-3 - output: - product_category_id: - - '6509' -- input: - product_category_id: hb-3-19-1-4 - output: - product_category_id: - - '2923' -- input: - product_category_id: hb-3-19-1-4-1 - output: - product_category_id: - - '2923' -- input: - product_category_id: hb-3-19-1-4-2 - output: - product_category_id: - - '2923' -- input: - product_category_id: hb-3-19-1-4-3 - output: - product_category_id: - - '2923' -- input: - product_category_id: hb-3-19-1-4-4 - output: - product_category_id: - - '2923' -- input: - product_category_id: hb-3-19-1-4-5 - output: - product_category_id: - - '2923' -- input: - product_category_id: hb-3-19-2 - output: - product_category_id: - - '2922' -- input: - product_category_id: hb-3-19-3 - output: - product_category_id: - - '2733' -- input: - product_category_id: hb-3-19-4 - output: - product_category_id: - - '524' -- input: - product_category_id: hb-3-19-5 - output: - product_category_id: - - '2521' -- input: - product_category_id: hb-3-19-5-1 - output: - product_category_id: - - '5507' -- input: - product_category_id: hb-3-19-5-2 - output: - product_category_id: - - '352853' -- input: - product_category_id: hb-3-19-5-3 - output: - product_category_id: - - '543538' + - '2656' - input: - product_category_id: hb-3-19-5-4 + product_category_id: hb-3-19 output: product_category_id: - - '8204' + - '1380' - input: - product_category_id: hb-3-19-5-4-1 + product_category_id: hb-3-19-1 output: product_category_id: - - '8204' + - '3011' - input: - product_category_id: hb-3-19-5-4-2 + product_category_id: hb-3-19-1-1 output: product_category_id: - - '8204' + - '7363' - input: - product_category_id: hb-3-19-6 + product_category_id: hb-3-19-1-2 output: product_category_id: - - '6977' + - '6510' - input: - product_category_id: hb-3-2 + product_category_id: hb-3-19-1-2-1 output: product_category_id: - - '473' + - '6510' - input: - product_category_id: hb-3-2-1 + product_category_id: hb-3-19-1-2-2 output: product_category_id: - - '474' + - '6510' - input: - product_category_id: hb-3-2-1-1 + product_category_id: hb-3-19-1-3 output: product_category_id: - - '2503' + - '6509' - input: - product_category_id: hb-3-2-1-10 + product_category_id: hb-3-19-1-4 output: product_category_id: - - '4049' + - '2923' - input: - product_category_id: hb-3-2-1-2 + product_category_id: hb-3-19-1-4-1 output: product_category_id: - - '2522' + - '2923' - input: - product_category_id: hb-3-2-1-3 + product_category_id: hb-3-19-1-4-2 output: product_category_id: - - '2876' + - '2923' - input: - product_category_id: hb-3-2-1-4 + product_category_id: hb-3-19-1-4-3 output: product_category_id: - - '2875' + - '2923' - input: - product_category_id: hb-3-2-1-5 + product_category_id: hb-3-19-1-4-4 output: product_category_id: - - '2747' + - '2923' - input: - product_category_id: hb-3-2-1-6 + product_category_id: hb-3-19-1-4-5 output: product_category_id: - - '3691' + - '2923' - input: - product_category_id: hb-3-2-1-7 + product_category_id: hb-3-19-2 output: product_category_id: - - '499913' + - '2922' - input: - product_category_id: hb-3-2-1-8 + product_category_id: hb-3-19-3 output: product_category_id: - - '3208' + - '2733' - input: - product_category_id: hb-3-2-1-9 + product_category_id: hb-3-19-4 output: product_category_id: - - '7417' + - '524' - input: - product_category_id: hb-3-2-2 + product_category_id: hb-3-19-5 output: product_category_id: - - '475' + - '2521' - input: - product_category_id: hb-3-2-3 + product_category_id: hb-3-19-5-1 output: product_category_id: - - '6069' + - '5507' - input: - product_category_id: hb-3-2-4 + product_category_id: hb-3-19-5-2 output: product_category_id: - - '6331' + - '352853' - input: - product_category_id: hb-3-2-5 + product_category_id: hb-3-19-5-3 output: product_category_id: - - '2619' + - '543538' - input: - product_category_id: hb-3-2-5-1 + product_category_id: hb-3-19-5-4 output: product_category_id: - - '2548' + - '8204' - input: - product_category_id: hb-3-2-5-1-10 + product_category_id: hb-3-19-5-4-1 output: product_category_id: - - '4106' + - '8204' - input: - product_category_id: hb-3-2-5-1-11 + product_category_id: hb-3-19-5-4-2 output: product_category_id: - - '499822' + - '8204' - input: - product_category_id: hb-3-2-5-1-12 + product_category_id: hb-3-19-6 output: product_category_id: - - '7356' + - '6977' - input: - product_category_id: hb-3-2-5-1-3 + product_category_id: hg output: product_category_id: - - '6555' + - '536' - input: - product_category_id: hb-3-2-5-1-4 + product_category_id: hg-1 output: product_category_id: - - '6282' + - '574' - input: - product_category_id: hb-3-2-5-1-5 + product_category_id: hg-1-1 output: product_category_id: - - '2780' + - '575' - input: - product_category_id: hb-3-2-5-1-6 + product_category_id: hg-1-1-1 output: product_category_id: - - '476' + - '575' - input: - product_category_id: hb-3-2-5-1-7 + product_category_id: hg-1-1-2 output: product_category_id: - - '4121' + - '575' - input: - product_category_id: hb-3-2-5-1-8 + product_category_id: hg-1-1-3 output: product_category_id: - - '502996' + - '575' - input: - product_category_id: hb-3-2-5-1-8-1 + product_category_id: hg-1-1-4 output: product_category_id: - - '7256' + - '575' - input: - product_category_id: hb-3-2-5-1-8-2 + product_category_id: hg-1-1-5 output: product_category_id: - - '7493' + - '575' - input: - product_category_id: hb-3-2-5-1-8-3 + product_category_id: hg-1-2 output: product_category_id: - - '502997' + - '577' - input: - product_category_id: hb-3-2-5-1-9 + product_category_id: hg-1-3 output: product_category_id: - - '3025' + - '4366' - input: - product_category_id: hb-3-2-5-2 + product_category_id: hg-1-4 output: product_category_id: - - '2975' + - '7093' - input: - product_category_id: hb-3-2-5-2-1 + product_category_id: hg-1-5 output: product_category_id: - - '2739' + - '6858' - input: - product_category_id: hb-3-2-5-2-10 + product_category_id: hg-1-6 output: product_category_id: - - '2734' + - '579' - input: - product_category_id: hb-3-2-5-2-2 + product_category_id: hg-1-7 output: product_category_id: - - '3037' + - '8016' - input: - product_category_id: hb-3-2-5-2-3 + product_category_id: hg-1-8 output: product_category_id: - - '7494' + - '5141' - input: - product_category_id: hb-3-2-5-2-4 + product_category_id: hg-1-9 output: product_category_id: - - '6300' + - '2418' - input: - product_category_id: hb-3-2-5-2-5 + product_category_id: hg-1-10 output: product_category_id: - - '6341' + - '2034' - input: - product_category_id: hb-3-2-5-2-6 + product_category_id: hg-1-11 output: product_category_id: - - '2828' + - '8114' - input: - product_category_id: hb-3-2-5-2-7 + product_category_id: hg-1-12 output: product_category_id: - - '499698' + - '578' - input: - product_category_id: hb-3-2-5-2-8 + product_category_id: hg-1-13 output: product_category_id: - - '7490' + - '580' - input: - product_category_id: hb-3-2-5-2-9 + product_category_id: hg-1-14 output: product_category_id: - - '5880' + - '1962' - input: - product_category_id: hb-3-2-5-3 + product_category_id: hg-1-15 output: product_category_id: - - '2958' + - '4971' - input: - product_category_id: hb-3-2-5-3-1 + product_category_id: hg-1-16 output: product_category_id: - - '6760' + - '582' - input: - product_category_id: hb-3-2-5-3-2 + product_category_id: hg-1-17 output: product_category_id: - - '7190' + - '7509' - input: - product_category_id: hb-3-2-5-3-3 + product_category_id: hg-1-18 output: product_category_id: - - '499926' + - '583' - input: - product_category_id: hb-3-2-5-3-4 + product_category_id: hg-1-18-2 output: product_category_id: - - '2511' + - '583' - input: - product_category_id: hb-3-2-5-3-5 + product_category_id: hg-1-18-3 output: product_category_id: - - '6261' + - '583' - input: - product_category_id: hb-3-2-5-3-6 + product_category_id: hg-1-19 output: product_category_id: - - '7018' + - '584' - input: - product_category_id: hb-3-2-5-3-7 + product_category_id: hg-1-20 output: product_category_id: - - '8132' + - '585' - input: - product_category_id: hb-3-2-5-3-8 + product_category_id: hg-1-21 output: product_category_id: - - '6260' + - '586' - input: - product_category_id: hb-3-2-6 + product_category_id: hg-1-21-1 output: product_category_id: - - '477' + - '586' - input: - product_category_id: hb-3-2-6-1 + product_category_id: hg-1-21-2 output: product_category_id: - - '5978' + - '586' - input: - product_category_id: hb-3-2-6-1-2 + product_category_id: hg-2 output: product_category_id: - - '5979' + - '359' - input: - product_category_id: hb-3-2-6-1-4 + product_category_id: hg-2-1 output: product_category_id: - - '5981' + - '5491' - input: - product_category_id: hb-3-2-6-2 + product_category_id: hg-2-2 output: product_category_id: - - '4779' + - '3873' - input: - product_category_id: hb-3-2-6-3 + product_category_id: hg-2-3 output: product_category_id: - - '2779' + - '2161' - input: - product_category_id: hb-3-2-6-3-1 + product_category_id: hg-2-4 output: product_category_id: - - '8220' + - '500025' - input: - product_category_id: hb-3-2-6-3-2 + product_category_id: hg-2-5 output: product_category_id: - - '2904' + - '363' - input: - product_category_id: hb-3-2-6-3-3 + product_category_id: hg-2-6 output: product_category_id: - - '2686' + - '364' - input: - product_category_id: hb-3-2-6-3-4 + product_category_id: hg-2-6-1 output: product_category_id: - - '2807' + - '364' - input: - product_category_id: hb-3-2-6-3-5 + product_category_id: hg-2-6-2 output: product_category_id: - - '2761' + - '364' - input: - product_category_id: hb-3-2-6-3-6 + product_category_id: hg-2-7 output: product_category_id: - - '6340' + - '499865' - input: - product_category_id: hb-3-2-6-3-7 + product_category_id: hg-2-7-2 output: product_category_id: - - '8219' + - '499865' - input: - product_category_id: hb-3-2-6-3-8 + product_category_id: hg-2-7-3 output: product_category_id: - - '2834' + - '499865' - input: - product_category_id: hb-3-2-6-4 + product_category_id: hg-2-7-4 output: product_category_id: - - '2571' + - '499865' - input: - product_category_id: hb-3-2-6-4-1 + product_category_id: hg-2-7-5 output: product_category_id: - - '6305' + - '499865' - input: - product_category_id: hb-3-2-6-4-2 + product_category_id: hg-2-8 output: product_category_id: - - '2980' + - '3819' - input: - product_category_id: hb-3-2-6-4-3 + product_category_id: hg-2-8-1 output: product_category_id: - - '8218' + - '3819' - input: - product_category_id: hb-3-2-6-4-4 + product_category_id: hg-2-8-2 output: product_category_id: - - '2765' + - '3819' - input: - product_category_id: hb-3-2-6-4-5 + product_category_id: hg-2-8-3 output: product_category_id: - - '6304' + - '3819' - input: - product_category_id: hb-3-2-6-5 + product_category_id: hg-2-8-4 output: product_category_id: - - '2645' + - '3819' - input: - product_category_id: hb-3-2-6-5-1 + product_category_id: hg-2-9 output: product_category_id: - - '6306' + - '365' - input: - product_category_id: hb-3-2-6-5-2 + product_category_id: hg-3 output: product_category_id: - - '2858' + - '696' - input: - product_category_id: hb-3-2-6-5-3 + product_category_id: hg-3-1 output: product_category_id: - - '2589' + - '572' - input: - product_category_id: hb-3-2-6-5-5 + product_category_id: hg-3-2 output: product_category_id: - - '8217' + - '6265' - input: - product_category_id: hb-3-2-6-5-6 + product_category_id: hg-3-2-1 output: product_category_id: - - '3021' + - '6265' - input: - product_category_id: hb-3-2-6-6 + product_category_id: hg-3-2-2 output: product_category_id: - - '6072' + - '6265' - input: - product_category_id: hb-3-2-6-7 + product_category_id: hg-3-2-3 output: product_category_id: - - '3509' + - '6265' - input: - product_category_id: hb-3-2-7 + product_category_id: hg-3-2-4 output: product_category_id: - - '478' + - '6265' - input: - product_category_id: hb-3-2-7-1 + product_category_id: hg-3-3 output: product_category_id: - - '3009' + - '6266' - input: - product_category_id: hb-3-2-7-1-1 + product_category_id: hg-3-4 output: product_category_id: - - '3009' + - '9' - input: - product_category_id: hb-3-2-7-1-2 + product_category_id: hg-3-4-1 output: product_category_id: - - '3009' + - '500045' - input: - product_category_id: hb-3-2-7-10 + product_category_id: hg-3-4-2 output: product_category_id: - - '7445' + - '500044' - input: - product_category_id: hb-3-2-7-11 + product_category_id: hg-3-4-2-1 output: product_category_id: - - '2683' + - '500044' - input: - product_category_id: hb-3-2-7-2 + product_category_id: hg-3-4-2-2 output: product_category_id: - - '4218' + - '500044' - input: - product_category_id: hb-3-2-7-3 + product_category_id: hg-3-4-2-3 output: product_category_id: - - '6893' + - '500044' - input: - product_category_id: hb-3-2-7-4 + product_category_id: hg-3-4-3 output: product_category_id: - - '5975' + - '11' - input: - product_category_id: hb-3-2-7-8 + product_category_id: hg-3-5 output: product_category_id: - - '233419' + - '4456' - input: - product_category_id: hb-3-2-7-9 + product_category_id: hg-3-6 output: product_category_id: - - '2946' + - '573' - input: - product_category_id: hb-3-2-8 + product_category_id: hg-3-7 output: product_category_id: - - '479' + - '5521' - input: - product_category_id: hb-3-2-8-1 + product_category_id: hg-3-7-1 output: product_category_id: - - '479' + - '5521' - input: - product_category_id: hb-3-2-8-2 + product_category_id: hg-3-7-3 output: product_category_id: - - '479' + - '5521' - input: - product_category_id: hb-3-2-8-3 + product_category_id: hg-3-7-4 output: product_category_id: - - '479' + - '5521' - input: - product_category_id: hb-3-2-8-4 + product_category_id: hg-3-7-5 output: product_category_id: - - '479' + - '5521' - input: - product_category_id: hb-3-2-9 + product_category_id: hg-3-7-6 output: product_category_id: - - '567' + - '5521' - input: - product_category_id: hb-3-2-9-1 + product_category_id: hg-3-7-7 output: product_category_id: - - '481' + - '5521' - input: - product_category_id: hb-3-2-9-10 + product_category_id: hg-3-7-8 output: product_category_id: - - '2592' + - '5521' - input: - product_category_id: hb-3-2-9-11 + product_category_id: hg-3-7-9 output: product_category_id: - - '6034' + - '5521' - input: - product_category_id: hb-3-2-9-12 + product_category_id: hg-3-8 output: product_category_id: - - '6753' + - '6993' - input: - product_category_id: hb-3-2-9-13 + product_category_id: hg-3-8-1 output: product_category_id: - - '6262' + - '698' - input: - product_category_id: hb-3-2-9-14 + product_category_id: hg-3-8-2 output: product_category_id: - - '5820' + - '6995' - input: - product_category_id: hb-3-2-9-15 + product_category_id: hg-3-8-3 output: product_category_id: - - '2844' + - '6994' - input: - product_category_id: hb-3-2-9-16 + product_category_id: hg-3-9 output: product_category_id: - - '2740' + - '230911' - input: - product_category_id: hb-3-2-9-16-1 + product_category_id: hg-3-9-6 output: product_category_id: - - '5338' + - '230911' - input: - product_category_id: hb-3-2-9-16-2 + product_category_id: hg-3-9-7 output: product_category_id: - - '5339' + - '230911' - input: - product_category_id: hb-3-2-9-17 + product_category_id: hg-3-9-8 output: product_category_id: - - '5976' + - '230911' - input: - product_category_id: hb-3-2-9-17-1 + product_category_id: hg-3-10 output: product_category_id: - - '543659' + - '500078' - input: - product_category_id: hb-3-2-9-17-2 + product_category_id: hg-3-10-1 output: product_category_id: - - '543658' + - '500079' - input: - product_category_id: hb-3-2-9-18 + product_category_id: hg-3-10-2 output: product_category_id: - - '6863' + - '699' - input: - product_category_id: hb-3-2-9-19 + product_category_id: hg-3-10-3 output: product_category_id: - - '567' + - '500080' - input: - product_category_id: hb-3-2-9-2 + product_category_id: hg-3-11 output: product_category_id: - - '7429' + - '697' - input: - product_category_id: hb-3-2-9-20 + product_category_id: hg-3-12 output: product_category_id: - - '2592' + - '587' - input: - product_category_id: hb-3-2-9-21 + product_category_id: hg-3-13 output: product_category_id: - - '567' + - '7380' - input: - product_category_id: hb-3-2-9-3 + product_category_id: hg-3-14 output: product_category_id: - - '6104' + - '4453' - input: - product_category_id: hb-3-2-9-4 + product_category_id: hg-3-15 output: product_category_id: - - '5980' + - '4453' - input: - product_category_id: hb-3-2-9-5 + product_category_id: hg-3-16 output: product_category_id: - - '8029' + - '505827' - input: - product_category_id: hb-3-2-9-6 + product_category_id: hg-3-16-1 output: product_category_id: - - '2526' + - '505827' - input: - product_category_id: hb-3-2-9-7 + product_category_id: hg-3-16-2 output: product_category_id: - - '7467' + - '505827' - input: - product_category_id: hb-3-2-9-8 + product_category_id: hg-3-16-3 output: product_category_id: - - '6791' + - '505827' - input: - product_category_id: hb-3-2-9-9 + product_category_id: hg-3-16-4 output: product_category_id: - - '482' + - '505827' - input: - product_category_id: hb-3-2-9-9-1 + product_category_id: hg-3-16-5 output: product_category_id: - - '543573' + - '505827' - input: - product_category_id: hb-3-2-9-9-2 + product_category_id: hg-3-17 output: product_category_id: - - '543574' + - '3890' - input: - product_category_id: hb-3-3 + product_category_id: hg-3-17-1 output: product_category_id: - - '4929' + - '4546' - input: - product_category_id: hb-3-4 + product_category_id: hg-3-17-2 output: product_category_id: - - '2934' + - '6912' - input: - product_category_id: hb-3-5 + product_category_id: hg-3-17-2-1 output: product_category_id: - - '484' + - '6912' - input: - product_category_id: hb-3-5-1 + product_category_id: hg-3-17-2-2 output: product_category_id: - - '543599' + - '6912' - input: - product_category_id: hb-3-5-2 + product_category_id: hg-3-17-3 output: product_category_id: - - '543598' + - '3696' - input: - product_category_id: hb-3-6 + product_category_id: hg-3-17-3-1 output: product_category_id: - - '506' + - '3696' - input: - product_category_id: hb-3-6-1 + product_category_id: hg-3-17-3-2 output: product_category_id: - - '5706' + - '3696' - input: - product_category_id: hb-3-6-2 + product_category_id: hg-3-17-4 output: product_category_id: - - '6559' + - '3840' - input: - product_category_id: hb-3-6-3 + product_category_id: hg-3-18 output: product_category_id: - - '6560' + - '5708' - input: - product_category_id: hb-3-6-4 + product_category_id: hg-3-19 output: product_category_id: - - '500024' + - '7206' - input: - product_category_id: hb-3-6-5 + product_category_id: hg-3-20 output: product_category_id: - - '6561' + - '6317' - input: - product_category_id: hb-3-6-6 + product_category_id: hg-3-21 output: product_category_id: - - '6562' + - '6457' - input: - product_category_id: hb-3-6-7 + product_category_id: hg-3-22 output: product_category_id: - - '7542' + - '7113' - input: - product_category_id: hb-3-6-8 + product_category_id: hg-3-23 output: product_category_id: - - '2596' + - '708' - input: - product_category_id: hb-3-6-8-1 + product_category_id: hg-3-24 output: product_category_id: - - '2596' + - '5875' - input: - product_category_id: hb-3-6-8-2 + product_category_id: hg-3-25 output: product_category_id: - - '2596' + - '6456' - input: - product_category_id: hb-3-6-8-3 + product_category_id: hg-3-26 output: product_category_id: - - '2596' + - '2675' - input: - product_category_id: hb-3-7 + product_category_id: hg-3-27 output: product_category_id: - - '7134' + - '7172' - input: - product_category_id: hb-3-8 + product_category_id: hg-3-28 output: product_category_id: - - '485' + - '6936' - input: - product_category_id: hb-3-8-2 + product_category_id: hg-3-29 output: product_category_id: - - '6862' + - '6935' - input: - product_category_id: hb-3-8-3 + product_category_id: hg-3-30 output: product_category_id: - - '5821' + - '5609' - input: - product_category_id: hb-3-8-4 + product_category_id: hg-3-31 output: product_category_id: - - '2387' + - '7422' - input: - product_category_id: hb-3-8-4-1 + product_category_id: hg-3-32 output: product_category_id: - - '2387' + - '7419' - input: - product_category_id: hb-3-8-4-2 + product_category_id: hg-3-32-1 output: product_category_id: - - '2387' + - '7420' - input: - product_category_id: hb-3-8-4-3 + product_category_id: hg-3-32-2 output: product_category_id: - - '2387' + - '503010' - input: - product_category_id: hb-3-8-4-4 + product_category_id: hg-3-32-3 output: product_category_id: - - '2387' + - '7421' - input: - product_category_id: hb-3-8-4-5 + product_category_id: hg-3-33 output: product_category_id: - - '2387' + - '701' - input: - product_category_id: hb-3-8-4-6 + product_category_id: hg-3-34 output: product_category_id: - - '2387' + - '4770' - input: - product_category_id: hb-3-8-5 + product_category_id: hg-3-35 output: product_category_id: - - '8122' + - '702' - input: - product_category_id: hb-3-8-6 + product_category_id: hg-3-35-1 output: product_category_id: - - '2564' + - '2921' - input: - product_category_id: hb-3-9 + product_category_id: hg-3-35-2 output: product_category_id: - - '515' + - '6763' - input: - product_category_id: hb-3-9-1 + product_category_id: hg-3-35-2-1 output: product_category_id: - - '2992' + - '6763' - input: - product_category_id: hb-3-9-2 + product_category_id: hg-3-35-2-3 output: product_category_id: - - '3022' + - '6763' - input: - product_category_id: hb-3-9-3 + product_category_id: hg-3-35-3 output: product_category_id: - - '3049' + - '2763' - input: - product_category_id: hb-3-9-4 + product_category_id: hg-3-36 output: product_category_id: - - '2801' + - '704' - input: - product_category_id: hb-3-9-4-1 + product_category_id: hg-3-36-1 output: product_category_id: - - '2801' + - '704' - input: - product_category_id: hb-3-9-4-2 + product_category_id: hg-3-36-2 output: product_category_id: - - '2801' + - '704' - input: - product_category_id: hb-3-9-4-3 + product_category_id: hg-3-37 output: product_category_id: - - '2801' + - '499693' - input: - product_category_id: hb-3-9-5 + product_category_id: hg-3-38 output: product_category_id: - - '7495' + - '3221' - input: - product_category_id: hg + product_category_id: hg-3-39 output: product_category_id: - - '536' + - '500121' - input: - product_category_id: hg-1 + product_category_id: hg-3-39-1 output: product_category_id: - - '574' + - '6336' - input: - product_category_id: hg-1-1 + product_category_id: hg-3-39-2 output: product_category_id: - - '575' + - '2784' - input: - product_category_id: hg-1-1-1 + product_category_id: hg-3-39-3 output: product_category_id: - - '575' + - '500122' - input: - product_category_id: hg-1-1-2 + product_category_id: hg-3-39-4 output: product_category_id: - - '575' + - '4741' - input: - product_category_id: hg-1-1-3 + product_category_id: hg-3-40 output: product_category_id: - - '575' + - '592' - input: - product_category_id: hg-1-1-4 + product_category_id: hg-3-40-1 output: product_category_id: - - '575' + - '3898' - input: - product_category_id: hg-1-1-5 + product_category_id: hg-3-40-2 output: product_category_id: - - '575' + - '588' - input: - product_category_id: hg-1-10 + product_category_id: hg-3-40-3 output: product_category_id: - - '2034' + - '5847' - input: - product_category_id: hg-1-11 + product_category_id: hg-3-40-4 output: product_category_id: - - '8114' + - '3686' - input: - product_category_id: hg-1-12 + product_category_id: hg-3-40-5 output: product_category_id: - - '578' + - '4740' - input: - product_category_id: hg-1-13 + product_category_id: hg-3-40-6 output: product_category_id: - - '580' + - '6767' - input: - product_category_id: hg-1-14 + product_category_id: hg-3-41 output: product_category_id: - - '1962' + - '503000' - input: - product_category_id: hg-1-15 + product_category_id: hg-3-42 output: product_category_id: - - '4971' + - '7382' - input: - product_category_id: hg-1-16 + product_category_id: hg-3-43 output: product_category_id: - - '582' + - '6547' - input: - product_category_id: hg-1-17 + product_category_id: hg-3-43-1 output: product_category_id: - - '7509' + - '6547' - input: - product_category_id: hg-1-18 + product_category_id: hg-3-43-2 output: product_category_id: - - '583' + - '6547' - input: - product_category_id: hg-1-18-2 + product_category_id: hg-3-44 output: product_category_id: - - '583' + - '7436' - input: - product_category_id: hg-1-18-3 + product_category_id: hg-3-45 output: product_category_id: - - '583' + - '6333' - input: - product_category_id: hg-1-19 + product_category_id: hg-3-45-1 output: product_category_id: - - '584' + - '7177' - input: - product_category_id: hg-1-2 + product_category_id: hg-3-45-2 output: product_category_id: - - '577' + - '7052' - input: - product_category_id: hg-1-20 + product_category_id: hg-3-45-3 output: product_category_id: - - '585' + - '7176' - input: - product_category_id: hg-1-21 + product_category_id: hg-3-45-4 output: product_category_id: - - '586' + - '6334' - input: - product_category_id: hg-1-21-1 + product_category_id: hg-3-45-5 output: product_category_id: - - '586' + - '7339' - input: - product_category_id: hg-1-21-2 + product_category_id: hg-3-46 output: product_category_id: - - '586' + - '706' - input: - product_category_id: hg-1-3 + product_category_id: hg-3-47 output: product_category_id: - - '4366' + - '595' - input: - product_category_id: hg-1-4 + product_category_id: hg-3-48 output: product_category_id: - - '7093' + - '3473' - input: - product_category_id: hg-1-5 + product_category_id: hg-3-49 output: product_category_id: - - '6858' + - '6324' - input: - product_category_id: hg-1-6 + product_category_id: hg-3-50 output: product_category_id: - - '579' + - '5885' - input: - product_category_id: hg-1-7 + product_category_id: hg-3-51 output: product_category_id: - - '8016' + - '6927' - input: - product_category_id: hg-1-8 + product_category_id: hg-3-52 output: product_category_id: - - '5141' + - '597' - input: - product_category_id: hg-1-9 + product_category_id: hg-3-53 output: product_category_id: - - '2418' + - '4295' - input: - product_category_id: hg-10 + product_category_id: hg-3-53-1 output: product_category_id: - - '630' + - '4295' - input: - product_category_id: hg-10-1 + product_category_id: hg-3-53-2 output: product_category_id: - - '7351' + - '4295' - input: - product_category_id: hg-10-10 + product_category_id: hg-3-54 output: product_category_id: - - '7406' + - '709' - input: - product_category_id: hg-10-11 + product_category_id: hg-3-55 output: product_category_id: - - '728' + - '710' - input: - product_category_id: hg-10-11-1 + product_category_id: hg-3-56 output: product_category_id: - - '4220' + - '5876' - input: - product_category_id: hg-10-11-2 + product_category_id: hg-3-57 output: product_category_id: - - '2631' + - '598' - input: - product_category_id: hg-10-11-2-1 + product_category_id: hg-3-58 output: product_category_id: - - '2631' + - '596' - input: - product_category_id: hg-10-11-2-2 + product_category_id: hg-3-58-1 output: product_category_id: - - '2631' + - '5359' - input: - product_category_id: hg-10-11-2-3 + product_category_id: hg-3-58-2 output: product_category_id: - - '2631' + - '5504' - input: - product_category_id: hg-10-11-2-4 + product_category_id: hg-3-58-3 output: product_category_id: - - '2631' + - '6603' - input: - product_category_id: hg-10-11-2-5 + product_category_id: hg-3-58-4 output: product_category_id: - - '2631' + - '499805' - input: - product_category_id: hg-10-11-2-6 + product_category_id: hg-3-58-5 output: product_category_id: - - '2631' + - '6532' - input: - product_category_id: hg-10-11-3 + product_category_id: hg-3-58-6 output: product_category_id: - - '2869' + - '499804' - input: - product_category_id: hg-10-11-3-1 + product_category_id: hg-3-58-7 output: product_category_id: - - '2869' + - '3144' - input: - product_category_id: hg-10-11-3-2 + product_category_id: hg-3-58-8 output: product_category_id: - - '2869' + - '5990' - input: - product_category_id: hg-10-11-3-3 + product_category_id: hg-3-58-9 output: product_category_id: - - '2869' + - '5991' - input: - product_category_id: hg-10-11-3-4 + product_category_id: hg-3-58-10 output: product_category_id: - - '2869' + - '5930' - input: - product_category_id: hg-10-11-3-5 + product_category_id: hg-3-58-11 output: product_category_id: - - '2869' + - '6531' - input: - product_category_id: hg-10-11-4 + product_category_id: hg-3-58-12 output: product_category_id: - - '2865' + - '505809' - input: - product_category_id: hg-10-11-4-1 + product_category_id: hg-3-59 output: product_category_id: - - '7137' + - '5922' - input: - product_category_id: hg-10-11-4-2 + product_category_id: hg-3-60 output: product_category_id: - - '512' + - '599' - input: - product_category_id: hg-10-12 + product_category_id: hg-3-61 output: product_category_id: - - '630' + - '6535' - input: - product_category_id: hg-10-13 + product_category_id: hg-3-62 output: product_category_id: - - '3307' + - '7173' - input: - product_category_id: hg-10-14 + product_category_id: hg-3-63 output: product_category_id: - - '628' + - '711' - input: - product_category_id: hg-10-14-1 + product_category_id: hg-3-64 output: product_category_id: - - '5600' + - '4454' - input: - product_category_id: hg-10-14-10 + product_category_id: hg-3-65 output: product_category_id: - - '5604' + - '4233' - input: - product_category_id: hg-10-14-10-1 + product_category_id: hg-3-66 output: product_category_id: - - '5604' + - '6424' - input: - product_category_id: hg-10-14-10-2 + product_category_id: hg-3-66-1 output: product_category_id: - - '5604' + - '6424' - input: - product_category_id: hg-10-14-11 + product_category_id: hg-3-66-2 output: product_category_id: - - '2431' + - '6424' - input: - product_category_id: hg-10-14-11-1 + product_category_id: hg-3-67 output: product_category_id: - - '2431' + - '602' - input: - product_category_id: hg-10-14-11-2 + product_category_id: hg-3-68 output: product_category_id: - - '2431' + - '2334' - input: - product_category_id: hg-10-14-2 + product_category_id: hg-3-69 output: product_category_id: - - '2301' + - '712' - input: - product_category_id: hg-10-14-3 + product_category_id: hg-3-69-1 output: product_category_id: - - '1874' + - '712' - input: - product_category_id: hg-10-14-4 + product_category_id: hg-3-69-2 output: product_category_id: - - '8033' + - '712' - input: - product_category_id: hg-10-14-5 + product_category_id: hg-3-70 output: product_category_id: - - '2371' + - '714' - input: - product_category_id: hg-10-14-6 + product_category_id: hg-3-71 output: product_category_id: - - '5601' + - '2839' - input: - product_category_id: hg-10-14-6-1 + product_category_id: hg-3-71-1 output: product_category_id: - - '5601' + - '2839' - input: - product_category_id: hg-10-14-6-2 + product_category_id: hg-3-71-2 output: product_category_id: - - '5601' + - '2839' - input: - product_category_id: hg-10-14-7 + product_category_id: hg-3-72 output: product_category_id: - - '8032' + - '6530' - input: - product_category_id: hg-10-14-8 + product_category_id: hg-3-73 output: product_category_id: - - '1659' + - '6254' - input: - product_category_id: hg-10-14-8-1 + product_category_id: hg-3-73-1 output: product_category_id: - - '1659' + - '6256' - input: - product_category_id: hg-10-14-8-2 + product_category_id: hg-3-73-2 output: product_category_id: - - '1659' + - '6257' - input: - product_category_id: hg-10-14-9 + product_category_id: hg-3-73-3 output: product_category_id: - - '8031' + - '6255' - input: - product_category_id: hg-10-15 + product_category_id: hg-3-73-3-1 output: product_category_id: - - '499885' + - '6255' - input: - product_category_id: hg-10-16 + product_category_id: hg-3-73-3-2 output: product_category_id: - - '636' + - '6255' - input: - product_category_id: hg-10-16-1 + product_category_id: hg-3-73-4 output: product_category_id: - - '5558' + - '8042' - input: - product_category_id: hg-10-16-1-1 + product_category_id: hg-3-73-4-1 output: product_category_id: - - '3722' + - '8042' - input: - product_category_id: hg-10-16-1-2 + product_category_id: hg-3-73-4-2 output: product_category_id: - - '5714' + - '8042' - input: - product_category_id: hg-10-16-1-2-1 + product_category_id: hg-3-73-4-3 output: product_category_id: - - '5714' + - '8042' - input: - product_category_id: hg-10-16-1-2-2 + product_category_id: hg-3-73-4-4 output: product_category_id: - - '5714' + - '8042' - input: - product_category_id: hg-10-16-1-3 + product_category_id: hg-3-73-4-5 output: product_category_id: - - '5716' + - '8042' - input: - product_category_id: hg-10-16-1-4 + product_category_id: hg-3-74 output: product_category_id: - - '631' + - '603' - input: - product_category_id: hg-10-16-1-5 + product_category_id: hg-3-74-1 output: product_category_id: - - '7514' + - '2882' - input: - product_category_id: hg-10-16-1-6 + product_category_id: hg-3-74-1-1 output: product_category_id: - - '5559' + - '2882' - input: - product_category_id: hg-10-16-1-6-1 + product_category_id: hg-3-74-1-2 output: product_category_id: - - '5559' + - '2882' - input: - product_category_id: hg-10-16-1-6-2 + product_category_id: hg-3-74-2 output: product_category_id: - - '5559' + - '6492' - input: - product_category_id: hg-10-16-2 + product_category_id: hg-3-74-3 output: product_category_id: - - '5128' + - '2885' - input: - product_category_id: hg-10-16-3 + product_category_id: hg-3-74-3-1 output: product_category_id: - - '8058' + - '2885' - input: - product_category_id: hg-10-16-4 + product_category_id: hg-3-74-3-2 output: product_category_id: - - '3561' + - '2885' - input: - product_category_id: hg-10-16-5 + product_category_id: hg-3-74-4 output: product_category_id: - - '6986' + - '5989' - input: - product_category_id: hg-10-16-6 + product_category_id: hg-3-74-5 output: product_category_id: - - '5631' + - '4375' - input: - product_category_id: hg-10-16-7 + product_category_id: hg-3-74-6 output: product_category_id: - - '7255' + - '2621' - input: - product_category_id: hg-10-16-8 + product_category_id: hg-3-74-6-1 output: product_category_id: - - '4360' + - '2621' - input: - product_category_id: hg-10-16-8-1 + product_category_id: hg-3-74-6-2 output: product_category_id: - - '40' + - '2621' - input: - product_category_id: hg-10-16-8-2 + product_category_id: hg-3-75 output: product_category_id: - - '4237' + - '3262' - input: - product_category_id: hg-10-16-9 + product_category_id: hg-3-75-1 output: product_category_id: - - '2446' + - '3262' - input: - product_category_id: hg-10-16-9-1 + product_category_id: hg-3-75-2 output: product_category_id: - - '499930' + - '3262' - input: - product_category_id: hg-10-16-9-1-1 + product_category_id: hg-3-75-3 output: product_category_id: - - '499930' + - '3262' - input: - product_category_id: hg-10-16-9-1-2 + product_category_id: hg-3-75-5 output: product_category_id: - - '499930' + - '3262' - input: - product_category_id: hg-10-16-9-2 + product_category_id: hg-3-76 output: product_category_id: - - '5494' + - '6267' - input: - product_category_id: hg-10-16-9-2-1 + product_category_id: hg-3-76-1 output: product_category_id: - - '5494' + - '6267' - input: - product_category_id: hg-10-16-9-2-2 + product_category_id: hg-3-76-2 output: product_category_id: - - '5494' + - '6267' - input: - product_category_id: hg-10-16-9-3 + product_category_id: hg-4 output: product_category_id: - - '5707' + - '5835' - input: - product_category_id: hg-10-17 + product_category_id: hg-4-1 output: product_category_id: - - '5056' + - '4490' - input: - product_category_id: hg-10-17-1 + product_category_id: hg-4-2 output: product_category_id: - - '5056' + - '6897' - input: - product_category_id: hg-10-17-2 + product_category_id: hg-4-3 output: product_category_id: - - '5056' + - '5836' - input: - product_category_id: hg-10-18 + product_category_id: hg-4-4 output: product_category_id: - - '4516' + - '7058' - input: - product_category_id: hg-10-18-1 + product_category_id: hg-4-5 output: product_category_id: - - '500039' + - '4491' - input: - product_category_id: hg-10-18-2 + product_category_id: hg-5 output: product_category_id: - - '5143' + - '2862' - input: - product_category_id: hg-10-18-3 + product_category_id: hg-5-1 output: product_category_id: - - '4517' + - '2044' - input: - product_category_id: hg-10-18-4 + product_category_id: hg-5-2 output: product_category_id: - - '637' + - '6563' - input: - product_category_id: hg-10-18-4-1 + product_category_id: hg-5-3 output: product_category_id: - - '637' + - '7523' - input: - product_category_id: hg-10-18-4-2 + product_category_id: hg-5-4 output: product_category_id: - - '637' + - '7109' - input: - product_category_id: hg-10-19 + product_category_id: hg-5-5 output: product_category_id: - - '6757' + - '2365' - input: - product_category_id: hg-10-19-1 + product_category_id: hg-5-6 output: product_category_id: - - '6765' + - '1530' - input: - product_category_id: hg-10-19-2 + product_category_id: hg-5-7 output: product_category_id: - - '6726' + - '625' - input: - product_category_id: hg-10-19-3 + product_category_id: hg-5-7-1 output: product_category_id: - - '500115' + - '625' - input: - product_category_id: hg-10-19-4 + product_category_id: hg-5-8 output: product_category_id: - - '4717' + - '7091' - input: - product_category_id: hg-10-19-5 + product_category_id: hg-5-9 output: product_category_id: - - '6758' + - '7029' - input: - product_category_id: hg-10-2 + product_category_id: hg-5-9-1 output: product_category_id: - - '499674' + - '7029' - input: - product_category_id: hg-10-2-1 + product_category_id: hg-5-9-2 output: product_category_id: - - '499674' + - '7029' - input: - product_category_id: hg-10-2-2 + product_category_id: hg-5-9-3 output: product_category_id: - - '499674' + - '7029' - input: - product_category_id: hg-10-3 + product_category_id: hg-5-10 output: product_category_id: - - '7214' + - '695' - input: - product_category_id: hg-10-4 + product_category_id: hg-5-10-1 output: product_category_id: - - '8522' + - '695' - input: - product_category_id: hg-10-5 + product_category_id: hg-5-10-2 output: product_category_id: - - '2374' + - '695' - input: - product_category_id: hg-10-6 + product_category_id: hg-5-11 output: product_category_id: - - '623' + - '4918' - input: - product_category_id: hg-10-6-1 + product_category_id: hg-6 output: product_category_id: - - '4671' + - '6792' - input: - product_category_id: hg-10-6-10 + product_category_id: hg-6-1 output: product_category_id: - - '6419' + - '6792' - input: - product_category_id: hg-10-6-11 + product_category_id: hg-6-2 output: product_category_id: - - '4973' + - '6792' - input: - product_category_id: hg-10-6-11-1 + product_category_id: hg-7 output: product_category_id: - - '7330' + - '1679' - input: - product_category_id: hg-10-6-11-10 + product_category_id: hg-7-1 output: product_category_id: - - '6474' + - '7226' - input: - product_category_id: hg-10-6-11-11 + product_category_id: hg-7-2 output: product_category_id: - - '4978' + - '1871' - input: - product_category_id: hg-10-6-11-12 + product_category_id: hg-7-3 output: product_category_id: - - '4979' + - '1639' - input: - product_category_id: hg-10-6-11-13 + product_category_id: hg-7-4 output: product_category_id: - - '7552' + - '1434' - input: - product_category_id: hg-10-6-11-14 + product_category_id: hg-7-5 output: product_category_id: - - '7426' + - '1934' - input: - product_category_id: hg-10-6-11-14-1 + product_category_id: hg-7-6 output: product_category_id: - - '7426' + - '7227' - input: - product_category_id: hg-10-6-11-14-2 + product_category_id: hg-7-7 output: product_category_id: - - '7426' + - '499673' - input: - product_category_id: hg-10-6-11-15 + product_category_id: hg-7-7-1 output: product_category_id: - - '4980' + - '2164' - input: - product_category_id: hg-10-6-11-16 + product_category_id: hg-7-7-2 output: product_category_id: - - '4981' + - '1471' - input: - product_category_id: hg-10-6-11-16-1 + product_category_id: hg-7-8 output: product_category_id: - - '4981' + - '1306' - input: - product_category_id: hg-10-6-11-16-2 + product_category_id: hg-7-8-1 output: product_category_id: - - '4981' + - '1306' - input: - product_category_id: hg-10-6-11-17 + product_category_id: hg-7-8-2 output: product_category_id: - - '7462' + - '1306' - input: - product_category_id: hg-10-6-11-2 + product_category_id: hg-8 output: product_category_id: - - '4974' + - '3348' - input: - product_category_id: hg-10-6-11-3 + product_category_id: hg-8-1 output: product_category_id: - - '500065' + - '2367' - input: - product_category_id: hg-10-6-11-4 + product_category_id: hg-8-1-1 output: product_category_id: - - '4975' + - '5826' - input: - product_category_id: hg-10-6-11-5 + product_category_id: hg-8-1-2 output: product_category_id: - - '7510' + - '3573' - input: - product_category_id: hg-10-6-11-5-1 + product_category_id: hg-8-2 output: product_category_id: - - '7510' + - '3410' - input: - product_category_id: hg-10-6-11-5-2 + product_category_id: hg-8-2-1 output: product_category_id: - - '7510' + - '3667' - input: - product_category_id: hg-10-6-11-5-3 + product_category_id: hg-8-3 output: product_category_id: - - '7510' + - '4667' - input: - product_category_id: hg-10-6-11-6 + product_category_id: hg-8-3-1 output: product_category_id: - - '8043' + - '4667' - input: - product_category_id: hg-10-6-11-7 + product_category_id: hg-8-3-3 output: product_category_id: - - '4977' + - '4667' - input: - product_category_id: hg-10-6-11-8 + product_category_id: hg-8-4 output: product_category_id: - - '5825' + - '5089' - input: - product_category_id: hg-10-6-11-9 + product_category_id: hg-8-4-1 output: product_category_id: - - '4976' + - '5089' - input: - product_category_id: hg-10-6-11-9-1 + product_category_id: hg-8-5 output: product_category_id: - - '543649' + - '4548' - input: - product_category_id: hg-10-6-11-9-2 + product_category_id: hg-8-5-1 output: product_category_id: - - '543650' + - '4548' - input: - product_category_id: hg-10-6-12 + product_category_id: hg-8-5-3 output: product_category_id: - - '6264' + - '4548' - input: - product_category_id: hg-10-6-13 + product_category_id: hg-8-5-4 output: product_category_id: - - '2713' + - '4548' - input: - product_category_id: hg-10-6-14 + product_category_id: hg-8-5-5 output: product_category_id: - - '499767' + - '4548' - input: - product_category_id: hg-10-6-15 + product_category_id: hg-8-5-6 output: product_category_id: - - '4670' + - '4548' - input: - product_category_id: hg-10-6-16 + product_category_id: hg-8-5-8 output: product_category_id: - - '8071' + - '4548' - input: - product_category_id: hg-10-6-17 + product_category_id: hg-8-6 output: product_category_id: - - '2796' + - '6773' - input: - product_category_id: hg-10-6-18 + product_category_id: hg-8-6-1 output: product_category_id: - - '2610' + - '6773' - input: - product_category_id: hg-10-6-2 + product_category_id: hg-8-6-2 output: product_category_id: - - '499892' + - '6773' - input: - product_category_id: hg-10-6-3 + product_category_id: hg-8-6-3 output: product_category_id: - - '2857' + - '6773' - input: - product_category_id: hg-10-6-4 + product_category_id: hg-8-6-4 output: product_category_id: - - '6437' + - '6773' - input: - product_category_id: hg-10-6-5 + product_category_id: hg-8-6-5 output: product_category_id: - - '4677' + - '6773' - input: - product_category_id: hg-10-6-6 + product_category_id: hg-8-6-6 output: product_category_id: - - '5113' + - '6773' - input: - product_category_id: hg-10-6-7 + product_category_id: hg-8-6-7 output: product_category_id: - - '6263' + - '6773' - input: - product_category_id: hg-10-6-8 + product_category_id: hg-8-7 output: product_category_id: - - '2250' + - '7110' - input: - product_category_id: hg-10-6-9 + product_category_id: hg-8-7-1 output: product_category_id: - - '4515' + - '7111' - input: - product_category_id: hg-10-7 + product_category_id: hg-8-7-1-1 output: product_category_id: - - '2530' + - '7111' - input: - product_category_id: hg-10-7-1 + product_category_id: hg-8-7-1-2 output: product_category_id: - - '624' + - '7111' - input: - product_category_id: hg-10-7-2 + product_category_id: hg-8-7-1-3 output: product_category_id: - - '3846' + - '7111' - input: - product_category_id: hg-10-7-3 + product_category_id: hg-8-8 output: product_category_id: - - '2742' + - '3862' - input: - product_category_id: hg-10-7-4 + product_category_id: hg-8-8-1 output: product_category_id: - - '629' + - '3402' - input: - product_category_id: hg-10-8 + product_category_id: hg-8-9 output: product_category_id: - - '3355' + - '3456' - input: - product_category_id: hg-10-9 + product_category_id: hg-8-9-1 output: product_category_id: - - '627' + - '5158' - input: - product_category_id: hg-10-9-1 + product_category_id: hg-8-9-1-1 output: product_category_id: - - '4982' + - '5158' - input: - product_category_id: hg-10-9-10 + product_category_id: hg-8-9-1-2 output: product_category_id: - - '7457' + - '5158' - input: - product_category_id: hg-10-9-11 + product_category_id: hg-8-9-1-4 output: product_category_id: - - '499937' + - '5158' - input: - product_category_id: hg-10-9-12 + product_category_id: hg-8-9-2 output: product_category_id: - - '4656' + - '5159' - input: - product_category_id: hg-10-9-12-1 + product_category_id: hg-8-9-2-1 output: product_category_id: - - '4656' + - '5159' - input: - product_category_id: hg-10-9-12-2 + product_category_id: hg-8-9-2-2 output: product_category_id: - - '4656' + - '5159' - input: - product_category_id: hg-10-9-13 + product_category_id: hg-8-9-2-3 output: product_category_id: - - '499931' + - '5159' - input: - product_category_id: hg-10-9-13-2 + product_category_id: hg-8-9-3 output: product_category_id: - - '499931' + - '5160' - input: - product_category_id: hg-10-9-14 + product_category_id: hg-8-9-4 output: product_category_id: - - '633' + - '500085' - input: - product_category_id: hg-10-9-15 + product_category_id: hg-8-10 output: product_category_id: - - '5084' + - '4650' - input: - product_category_id: hg-10-9-16 + product_category_id: hg-8-10-1 output: product_category_id: - - '634' + - '4651' - input: - product_category_id: hg-10-9-17 + product_category_id: hg-8-11 output: product_category_id: - - '2754' + - '618' - input: - product_category_id: hg-10-9-18 + product_category_id: hg-8-11-2 output: product_category_id: - - '5085' + - '618' - input: - product_category_id: hg-10-9-19 + product_category_id: hg-8-11-4 output: product_category_id: - - '3080' + - '618' - input: - product_category_id: hg-10-9-2 + product_category_id: hg-8-11-5 output: product_category_id: - - '5704' + - '618' - input: - product_category_id: hg-10-9-20 + product_category_id: hg-8-11-6 output: product_category_id: - - '7502' + - '618' - input: - product_category_id: hg-10-9-20-1 + product_category_id: hg-8-11-9 output: product_category_id: - - '7502' + - '618' - input: - product_category_id: hg-10-9-20-2 + product_category_id: hg-8-11-11 output: product_category_id: - - '7502' + - '618' - input: - product_category_id: hg-10-9-3 + product_category_id: hg-8-11-12 output: product_category_id: - - '7320' + - '618' - input: - product_category_id: hg-10-9-4 + product_category_id: hg-8-11-17 output: product_category_id: - - '2677' + - '618' - input: - product_category_id: hg-10-9-4-1 + product_category_id: hg-8-11-21 output: product_category_id: - - '2677' + - '618' - input: - product_category_id: hg-10-9-4-2 + product_category_id: hg-8-11-22 output: product_category_id: - - '2677' + - '618' - input: - product_category_id: hg-10-9-5 + product_category_id: hg-8-11-25 output: product_category_id: - - '6240' + - '618' - input: - product_category_id: hg-10-9-6 + product_category_id: hg-8-11-26 output: product_category_id: - - '5705' + - '618' - input: - product_category_id: hg-10-9-7 + product_category_id: hg-8-11-28 output: product_category_id: - - '2794' + - '618' - input: - product_category_id: hg-10-9-7-1 + product_category_id: hg-8-11-29 output: product_category_id: - - '2794' + - '618' - input: - product_category_id: hg-10-9-7-2 + product_category_id: hg-8-11-44 output: product_category_id: - - '2794' + - '618' - input: - product_category_id: hg-10-9-8 + product_category_id: hg-8-11-47 output: product_category_id: - - '4657' + - '618' - input: - product_category_id: hg-10-9-9 + product_category_id: hg-8-11-48 output: product_category_id: - - '6387' + - '618' - input: - product_category_id: hg-11 + product_category_id: hg-8-11-49 output: product_category_id: - - '638' + - '618' - input: - product_category_id: hg-11-1 + product_category_id: hg-8-11-51 output: product_category_id: - - '649' + - '618' - input: - product_category_id: hg-11-1-1 + product_category_id: hg-8-11-52 output: product_category_id: - - '7075' + - '618' - input: - product_category_id: hg-11-1-10 + product_category_id: hg-8-11-62 output: product_category_id: - - '651' + - '618' - input: - product_category_id: hg-11-1-10-1 + product_category_id: hg-8-12 output: product_category_id: - - '4222' + - '2751' - input: - product_category_id: hg-11-1-10-2 + product_category_id: hg-8-12-1 output: product_category_id: - - '3427' + - '2310' - input: - product_category_id: hg-11-1-10-3 + product_category_id: hg-8-12-2 output: product_category_id: - - '6956' + - '2175' - input: - product_category_id: hg-11-1-10-4 + product_category_id: hg-8-12-3 output: product_category_id: - - '505327' + - '1744' - input: - product_category_id: hg-11-1-10-5 + product_category_id: hg-8-12-4 output: product_category_id: - - '503757' + - '500063' - input: - product_category_id: hg-11-1-11 + product_category_id: hg-8-12-5 output: product_category_id: - - '2976' + - '1835' - input: - product_category_id: hg-11-1-11-1 + product_category_id: hg-8-12-6 output: product_category_id: - - '2976' + - '2221' - input: - product_category_id: hg-11-1-11-2 + product_category_id: hg-8-12-7 output: product_category_id: - - '2976' + - '1709' - input: - product_category_id: hg-11-1-11-3 + product_category_id: hg-9 output: product_category_id: - - '2976' + - '604' - input: - product_category_id: hg-11-1-11-4 + product_category_id: hg-9-1 output: product_category_id: - - '2976' + - '1626' - input: - product_category_id: hg-11-1-11-5 + product_category_id: hg-9-1-1 output: product_category_id: - - '2976' + - '605' - input: - product_category_id: hg-11-1-12 + product_category_id: hg-9-1-2 output: product_category_id: - - '650' + - '606' - input: - product_category_id: hg-11-1-13 + product_category_id: hg-9-1-3 output: product_category_id: - - '7008' + - '607' - input: - product_category_id: hg-11-1-14 + product_category_id: hg-9-1-4 output: product_category_id: - - '7139' + - '7328' - input: - product_category_id: hg-11-1-15 + product_category_id: hg-9-1-5 output: product_category_id: - - '649' + - '6727' - input: - product_category_id: hg-11-1-16 + product_category_id: hg-9-1-5-3 output: product_category_id: - - '4563' + - '6727' - input: - product_category_id: hg-11-1-17 + product_category_id: hg-9-1-5-5 output: product_category_id: - - '8493' + - '6727' - input: - product_category_id: hg-11-1-2 + product_category_id: hg-9-1-6 output: product_category_id: - - '1817' + - '608' - input: - product_category_id: hg-11-1-3 + product_category_id: hg-9-1-6-1 output: product_category_id: - - '7569' + - '1700' - input: - product_category_id: hg-11-1-3-1 + product_category_id: hg-9-1-6-2 output: product_category_id: - - '7569' + - '2535' - input: - product_category_id: hg-11-1-3-2 + product_category_id: hg-9-1-6-3 output: product_category_id: - - '7569' + - '7527' - input: - product_category_id: hg-11-1-4 + product_category_id: hg-9-1-6-4 output: product_category_id: - - '505806' + - '4485' - input: - product_category_id: hg-11-1-4-1 + product_category_id: hg-9-1-6-5 output: product_category_id: - - '505806' + - '8090' - input: - product_category_id: hg-11-1-4-2 + product_category_id: hg-9-1-7 output: product_category_id: - - '505806' + - '3082' - input: - product_category_id: hg-11-1-5 + product_category_id: hg-9-1-7-1 output: product_category_id: - - '499990' + - '3082' - input: - product_category_id: hg-11-1-5-1 + product_category_id: hg-9-1-7-2 output: product_category_id: - - '499990' + - '3082' - input: - product_category_id: hg-11-1-5-2 + product_category_id: hg-9-1-8 output: product_category_id: - - '499990' + - '2060' - input: - product_category_id: hg-11-1-5-3 + product_category_id: hg-9-1-9 output: product_category_id: - - '499990' + - '613' - input: - product_category_id: hg-11-1-5-4 + product_category_id: hg-9-1-10 output: product_category_id: - - '499990' + - '6709' - input: - product_category_id: hg-11-1-5-5 + product_category_id: hg-9-1-11 output: product_category_id: - - '499990' + - '2649' - input: - product_category_id: hg-11-1-6 + product_category_id: hg-9-1-12 output: product_category_id: - - '4562' + - '611' - input: - product_category_id: hg-11-1-7 + product_category_id: hg-9-2 output: product_category_id: - - '7238' + - '235920' - input: - product_category_id: hg-11-1-8 + product_category_id: hg-9-3 output: product_category_id: - - '2363' + - '616' - input: - product_category_id: hg-11-1-9 + product_category_id: hg-9-3-1 output: product_category_id: - - '6957' + - '543601' - input: - product_category_id: hg-11-10 + product_category_id: hg-9-3-1-1 output: product_category_id: - - '672' + - '543601' - input: - product_category_id: hg-11-10-1 + product_category_id: hg-9-3-1-2 output: product_category_id: - - '6740' + - '543601' - input: - product_category_id: hg-11-10-1-1 + product_category_id: hg-9-3-1-3 output: product_category_id: - - '6740' + - '543601' - input: - product_category_id: hg-11-10-1-2 + product_category_id: hg-9-3-1-4 output: product_category_id: - - '6740' + - '543601' - input: - product_category_id: hg-11-10-10 + product_category_id: hg-9-3-1-5 output: product_category_id: - - '677' + - '543601' - input: - product_category_id: hg-11-10-2 + product_category_id: hg-9-3-1-6 output: product_category_id: - - '652' + - '543601' - input: - product_category_id: hg-11-10-2-1 + product_category_id: hg-9-3-1-7 output: product_category_id: - - '652' + - '543601' - input: - product_category_id: hg-11-10-2-2 + product_category_id: hg-9-3-2 output: product_category_id: - - '652' + - '543600' - input: - product_category_id: hg-11-10-3 + product_category_id: hg-9-3-2-1 output: product_category_id: - - '672' + - '543600' - input: - product_category_id: hg-11-10-3-1 + product_category_id: hg-9-3-2-2 output: product_category_id: - - '672' + - '543600' - input: - product_category_id: hg-11-10-3-2 + product_category_id: hg-9-3-2-3 output: product_category_id: - - '676' + - '543600' - input: - product_category_id: hg-11-10-3-3 + product_category_id: hg-9-3-2-4 output: product_category_id: - - '676' + - '543600' - input: - product_category_id: hg-11-10-3-4 + product_category_id: hg-9-3-2-5 output: product_category_id: - - '676' + - '543600' - input: - product_category_id: hg-11-10-4 + product_category_id: hg-9-3-3 output: product_category_id: - - '673' + - '616' - input: - product_category_id: hg-11-10-4-1 + product_category_id: hg-9-3-4 output: product_category_id: - - '3498' + - '543602' - input: - product_category_id: hg-11-10-4-2 + product_category_id: hg-9-3-4-1 output: product_category_id: - - '5537' + - '543602' - input: - product_category_id: hg-11-10-4-3 + product_category_id: hg-9-3-4-2 output: product_category_id: - - '3553' + - '543602' - input: - product_category_id: hg-11-10-5 + product_category_id: hg-9-3-4-3 output: product_category_id: - - '674' + - '543602' - input: - product_category_id: hg-11-10-5-1 + product_category_id: hg-9-3-4-5 output: product_category_id: - - '7568' + - '543602' - input: - product_category_id: hg-11-10-5-2 + product_category_id: hg-9-3-4-6 output: product_category_id: - - '6049' + - '543602' - input: - product_category_id: hg-11-10-5-3 + product_category_id: hg-9-3-4-7 output: product_category_id: - - '6051' + - '543602' - input: - product_category_id: hg-11-10-5-4 + product_category_id: hg-9-3-6 output: product_category_id: - - '6958' + - '543603' - input: - product_category_id: hg-11-10-5-5 + product_category_id: hg-9-3-6-1 output: product_category_id: - - '2169' + - '543603' - input: - product_category_id: hg-11-10-5-6 + product_category_id: hg-9-3-6-2 output: product_category_id: - - '2694' + - '543603' - input: - product_category_id: hg-11-10-5-7 + product_category_id: hg-9-3-6-3 output: product_category_id: - - '2712' + - '543603' - input: - product_category_id: hg-11-10-5-8 + product_category_id: hg-9-3-6-4 output: product_category_id: - - '2951' + - '543603' - input: - product_category_id: hg-11-10-6 + product_category_id: hg-9-3-6-5 output: product_category_id: - - '675' + - '543603' - input: - product_category_id: hg-11-10-6-1 + product_category_id: hg-9-3-6-6 output: product_category_id: - - '675' + - '543603' - input: - product_category_id: hg-11-10-6-2 + product_category_id: hg-9-4 output: product_category_id: - - '6439' + - '5294' - input: - product_category_id: hg-11-10-6-2-1 + product_category_id: hg-9-4-1 output: product_category_id: - - '6439' + - '5294' - input: - product_category_id: hg-11-10-6-2-3 + product_category_id: hg-9-4-2 output: product_category_id: - - '6439' + - '5294' - input: - product_category_id: hg-11-10-6-2-4 + product_category_id: hg-9-5 output: product_category_id: - - '6439' + - '4483' - input: - product_category_id: hg-11-10-6-3 + product_category_id: hg-9-6 output: product_category_id: - - '3699' + - '6741' - input: - product_category_id: hg-11-10-6-4 + product_category_id: hg-9-6-1 output: product_category_id: - - '5647' + - '6741' - input: - product_category_id: hg-11-10-6-5 + product_category_id: hg-9-6-2 output: product_category_id: - - '4015' + - '6741' - input: - product_category_id: hg-11-10-6-6 + product_category_id: hg-9-7 output: product_category_id: - - '3939' + - '609' - input: - product_category_id: hg-11-10-6-7 + product_category_id: hg-9-8 output: product_category_id: - - '3844' + - '2706' - input: - product_category_id: hg-11-10-7 + product_category_id: hg-9-8-1 output: product_category_id: - - '4026' + - '2612' - input: - product_category_id: hg-11-10-7-1 + product_category_id: hg-9-8-2 output: product_category_id: - - '6086' + - '5138' - input: - product_category_id: hg-11-10-7-10 + product_category_id: hg-9-8-3 output: product_category_id: - - '3373' + - '5139' - input: - product_category_id: hg-11-10-7-10-1 + product_category_id: hg-9-8-3-1 output: product_category_id: - - '3373' + - '5139' - input: - product_category_id: hg-11-10-7-10-2 + product_category_id: hg-9-8-3-2 output: product_category_id: - - '3373' + - '5139' - input: - product_category_id: hg-11-10-7-11 + product_category_id: hg-9-8-4 output: product_category_id: - - '3941' + - '2849' - input: - product_category_id: hg-11-10-7-2 + product_category_id: hg-9-8-4-1 output: product_category_id: - - '5135' + - '2849' - input: - product_category_id: hg-11-10-7-3 + product_category_id: hg-9-8-4-2 output: product_category_id: - - '4372' + - '2849' - input: - product_category_id: hg-11-10-7-4 + product_category_id: hg-9-8-4-3 output: product_category_id: - - '7550' + - '2849' - input: - product_category_id: hg-11-10-7-5 + product_category_id: hg-9-8-4-4 output: product_category_id: - - '3703' + - '2849' - input: - product_category_id: hg-11-10-7-6 + product_category_id: hg-9-8-5 output: product_category_id: - - '4735' + - '5140' - input: - product_category_id: hg-11-10-7-7 + product_category_id: hg-9-8-6 output: product_category_id: - - '3330' + - '2549' - input: - product_category_id: hg-11-10-7-8 + product_category_id: hg-9-9 output: product_category_id: - - '3802' + - '500081' - input: - product_category_id: hg-11-10-7-9 + product_category_id: hg-9-10 output: product_category_id: - - '4009' + - '619' - input: - product_category_id: hg-11-10-8 + product_category_id: hg-9-10-1 output: product_category_id: - - '6425' + - '619' - input: - product_category_id: hg-11-10-8-1 + product_category_id: hg-9-10-2 output: product_category_id: - - '6434' + - '619' - input: - product_category_id: hg-11-10-8-2 + product_category_id: hg-9-11 output: product_category_id: - - '6427' + - '7121' - input: - product_category_id: hg-11-10-8-3 + product_category_id: hg-9-12 output: product_category_id: - - '6426' + - '621' - input: - product_category_id: hg-11-10-9 + product_category_id: hg-10 output: product_category_id: - - '8046' + - '630' - input: - product_category_id: hg-11-10-9-1 + product_category_id: hg-10-1 output: product_category_id: - - '8046' + - '7351' - input: - product_category_id: hg-11-10-9-2 + product_category_id: hg-10-2 output: product_category_id: - - '8046' + - '499674' - input: - product_category_id: hg-11-2 + product_category_id: hg-10-2-1 output: product_category_id: - - '6070' + - '499674' - input: - product_category_id: hg-11-2-1 + product_category_id: hg-10-2-2 output: product_category_id: - - '640' + - '499674' - input: - product_category_id: hg-11-2-1-1 + product_category_id: hg-10-3 output: product_category_id: - - '4764' + - '7214' - input: - product_category_id: hg-11-2-1-10 + product_category_id: hg-10-4 output: product_category_id: - - '647' + - '8522' - input: - product_category_id: hg-11-2-1-11 + product_category_id: hg-10-5 output: product_category_id: - - '648' + - '2374' - input: - product_category_id: hg-11-2-1-2 + product_category_id: hg-10-6 output: product_category_id: - - '641' + - '623' - input: - product_category_id: hg-11-2-1-3 + product_category_id: hg-10-6-1 output: product_category_id: - - '642' + - '4671' - input: - product_category_id: hg-11-2-1-4 + product_category_id: hg-10-6-2 output: product_category_id: - - '6756' + - '499892' - input: - product_category_id: hg-11-2-1-5 + product_category_id: hg-10-6-3 output: product_category_id: - - '643' + - '2857' - input: - product_category_id: hg-11-2-1-6 + product_category_id: hg-10-6-4 output: product_category_id: - - '644' + - '6437' - input: - product_category_id: hg-11-2-1-7 + product_category_id: hg-10-6-5 output: product_category_id: - - '645' + - '4677' - input: - product_category_id: hg-11-2-1-8 + product_category_id: hg-10-6-6 output: product_category_id: - - '2843' + - '5113' - input: - product_category_id: hg-11-2-1-9 + product_category_id: hg-10-6-7 output: product_category_id: - - '646' + - '6263' - input: - product_category_id: hg-11-2-2 + product_category_id: hg-10-6-8 output: product_category_id: - - '4502' + - '2250' - input: - product_category_id: hg-11-2-2-1 + product_category_id: hg-10-6-9 output: product_category_id: - - '4503' + - '4515' - input: - product_category_id: hg-11-2-2-1-1 + product_category_id: hg-10-6-10 output: product_category_id: - - '4503' + - '6419' - input: - product_category_id: hg-11-2-2-1-2 + product_category_id: hg-10-6-11 output: product_category_id: - - '4503' + - '4973' - input: - product_category_id: hg-11-2-2-2 + product_category_id: hg-10-6-11-1 output: product_category_id: - - '7131' + - '7330' - input: - product_category_id: hg-11-2-2-2-1 + product_category_id: hg-10-6-11-2 output: product_category_id: - - '7131' + - '4974' - input: - product_category_id: hg-11-2-2-2-2 + product_category_id: hg-10-6-11-3 output: product_category_id: - - '7131' + - '500065' - input: - product_category_id: hg-11-2-2-3 + product_category_id: hg-10-6-11-4 output: product_category_id: - - '4726' + - '4975' - input: - product_category_id: hg-11-2-3 + product_category_id: hg-10-6-11-5 output: product_category_id: - - '654' + - '7510' - input: - product_category_id: hg-11-2-3-1 + product_category_id: hg-10-6-11-5-1 output: product_category_id: - - '655' + - '7510' - input: - product_category_id: hg-11-2-3-10 + product_category_id: hg-10-6-11-5-2 output: product_category_id: - - '660' + - '7510' - input: - product_category_id: hg-11-2-3-10-1 + product_category_id: hg-10-6-11-5-3 output: product_category_id: - - '660' + - '7510' - input: - product_category_id: hg-11-2-3-10-2 + product_category_id: hg-10-6-11-6 output: product_category_id: - - '660' + - '8043' - input: - product_category_id: hg-11-2-3-11 + product_category_id: hg-10-6-11-7 output: product_category_id: - - '661' + - '4977' - input: - product_category_id: hg-11-2-3-12 + product_category_id: hg-10-6-11-8 output: product_category_id: - - '4423' + - '5825' - input: - product_category_id: hg-11-2-3-13 + product_category_id: hg-10-6-11-9 output: product_category_id: - - '662' + - '4976' - input: - product_category_id: hg-11-2-3-13-1 + product_category_id: hg-10-6-11-9-1 output: product_category_id: - - '662' + - '543649' - input: - product_category_id: hg-11-2-3-13-2 + product_category_id: hg-10-6-11-9-2 output: product_category_id: - - '662' + - '543650' - input: - product_category_id: hg-11-2-3-14 + product_category_id: hg-10-6-11-10 output: product_category_id: - - '663' + - '6474' - input: - product_category_id: hg-11-2-3-15 + product_category_id: hg-10-6-11-11 output: product_category_id: - - '659' + - '4978' - input: - product_category_id: hg-11-2-3-16 + product_category_id: hg-10-6-11-12 output: product_category_id: - - '5340' + - '4979' - input: - product_category_id: hg-11-2-3-16-1 + product_category_id: hg-10-6-11-13 output: product_category_id: - - '5340' + - '7552' - input: - product_category_id: hg-11-2-3-16-2 + product_category_id: hg-10-6-11-14 output: product_category_id: - - '5340' + - '7426' - input: - product_category_id: hg-11-2-3-17 + product_category_id: hg-10-6-11-14-1 output: product_category_id: - - '664' + - '7426' - input: - product_category_id: hg-11-2-3-2 + product_category_id: hg-10-6-11-14-2 output: product_category_id: - - '4721' + - '7426' - input: - product_category_id: hg-11-2-3-3 + product_category_id: hg-10-6-11-15 output: product_category_id: - - '6838' + - '4980' - input: - product_category_id: hg-11-2-3-3-1 + product_category_id: hg-10-6-11-16 output: product_category_id: - - '6838' + - '4981' - input: - product_category_id: hg-11-2-3-3-2 + product_category_id: hg-10-6-11-16-1 output: product_category_id: - - '6838' + - '4981' - input: - product_category_id: hg-11-2-3-4 + product_category_id: hg-10-6-11-16-2 output: product_category_id: - - '656' + - '4981' - input: - product_category_id: hg-11-2-3-5 + product_category_id: hg-10-6-11-17 output: product_category_id: - - '657' + - '7462' - input: - product_category_id: hg-11-2-3-6 + product_category_id: hg-10-6-12 output: product_category_id: - - '6518' + - '6264' - input: - product_category_id: hg-11-2-3-7 + product_category_id: hg-10-6-13 output: product_category_id: - - '658' + - '2713' - input: - product_category_id: hg-11-2-3-8 + product_category_id: hg-10-6-14 output: product_category_id: - - '5110' + - '499767' - input: - product_category_id: hg-11-2-3-9 + product_category_id: hg-10-6-15 output: product_category_id: - - '4459' + - '4670' - input: - product_category_id: hg-11-2-4 + product_category_id: hg-10-6-16 output: product_category_id: - - '6071' + - '8071' - input: - product_category_id: hg-11-2-5 + product_category_id: hg-10-6-17 output: product_category_id: - - '4424' + - '2796' - input: - product_category_id: hg-11-2-5-1 + product_category_id: hg-10-6-18 output: product_category_id: - - '4661' + - '2610' - input: - product_category_id: hg-11-2-5-2 + product_category_id: hg-10-7 output: product_category_id: - - '4660' + - '2530' - input: - product_category_id: hg-11-2-5-3 + product_category_id: hg-10-7-1 output: product_category_id: - - '4501' + - '624' - input: - product_category_id: hg-11-2-5-3-1 + product_category_id: hg-10-7-2 output: product_category_id: - - '4501' + - '3846' - input: - product_category_id: hg-11-2-5-3-2 + product_category_id: hg-10-7-3 output: product_category_id: - - '4501' + - '2742' - input: - product_category_id: hg-11-2-5-3-3 + product_category_id: hg-10-7-4 output: product_category_id: - - '4501' + - '629' - input: - product_category_id: hg-11-2-5-3-4 + product_category_id: hg-10-8 output: product_category_id: - - '4501' + - '3355' - input: - product_category_id: hg-11-2-5-3-6 + product_category_id: hg-10-9 output: product_category_id: - - '4501' + - '627' - input: - product_category_id: hg-11-2-5-4 + product_category_id: hg-10-9-1 output: product_category_id: - - '4529' + - '4982' - input: - product_category_id: hg-11-2-5-5 + product_category_id: hg-10-9-2 output: product_category_id: - - '4427' + - '5704' - input: - product_category_id: hg-11-2-5-5-1 + product_category_id: hg-10-9-3 output: product_category_id: - - '4663' + - '7320' - input: - product_category_id: hg-11-2-5-5-2 + product_category_id: hg-10-9-4 output: product_category_id: - - '4662' + - '2677' - input: - product_category_id: hg-11-3 + product_category_id: hg-10-9-4-1 output: product_category_id: - - '2920' + - '2677' - input: - product_category_id: hg-11-3-1 + product_category_id: hg-10-9-4-2 output: product_category_id: - - '4722' + - '2677' - input: - product_category_id: hg-11-3-10 + product_category_id: hg-10-9-5 output: product_category_id: - - '3800' + - '6240' - input: - product_category_id: hg-11-3-11 + product_category_id: hg-10-9-6 output: product_category_id: - - '3809' + - '5705' - input: - product_category_id: hg-11-3-12 + product_category_id: hg-10-9-7 output: product_category_id: - - '6449' + - '2794' - input: - product_category_id: hg-11-3-2 + product_category_id: hg-10-9-7-1 output: product_category_id: - - '3435' + - '2794' - input: - product_category_id: hg-11-3-3 + product_category_id: hg-10-9-7-2 output: product_category_id: - - '1017' + - '2794' - input: - product_category_id: hg-11-3-4 + product_category_id: hg-10-9-8 output: product_category_id: - - '4520' + - '4657' - input: - product_category_id: hg-11-3-4-1 + product_category_id: hg-10-9-9 output: product_category_id: - - '4521' + - '6387' - input: - product_category_id: hg-11-3-4-2 + product_category_id: hg-10-9-10 output: product_category_id: - - '4522' + - '7457' - input: - product_category_id: hg-11-3-5 + product_category_id: hg-10-9-11 output: product_category_id: - - '1444' + - '499937' - input: - product_category_id: hg-11-3-6 + product_category_id: hg-10-9-12 output: product_category_id: - - '2507' + - '4656' - input: - product_category_id: hg-11-3-7 + product_category_id: hg-10-9-12-1 output: product_category_id: - - '669' + - '4656' - input: - product_category_id: hg-11-3-7-1 + product_category_id: hg-10-9-12-2 output: product_category_id: - - '669' + - '4656' - input: - product_category_id: hg-11-3-7-2 + product_category_id: hg-10-9-13 output: product_category_id: - - '669' + - '499931' - input: - product_category_id: hg-11-3-7-3 + product_category_id: hg-10-9-13-2 output: product_category_id: - - '669' + - '499931' - input: - product_category_id: hg-11-3-7-4 + product_category_id: hg-10-9-14 output: product_category_id: - - '669' + - '633' - input: - product_category_id: hg-11-3-8 + product_category_id: hg-10-9-15 output: product_category_id: - - '671' + - '5084' - input: - product_category_id: hg-11-3-9 + product_category_id: hg-10-9-16 output: product_category_id: - - '5060' + - '634' - input: - product_category_id: hg-11-4 + product_category_id: hg-10-9-17 output: product_category_id: - - '2626' + - '2754' - input: - product_category_id: hg-11-4-1 + product_category_id: hg-10-9-18 output: product_category_id: - - '3337' + - '5085' - input: - product_category_id: hg-11-4-2 + product_category_id: hg-10-9-19 output: product_category_id: - - '6534' + - '3080' - input: - product_category_id: hg-11-4-3 + product_category_id: hg-10-9-20 output: product_category_id: - - '2644' + - '7502' - input: - product_category_id: hg-11-4-4 + product_category_id: hg-10-9-20-1 output: product_category_id: - - '6481' + - '7502' - input: - product_category_id: hg-11-4-5 + product_category_id: hg-10-9-20-2 output: product_category_id: - - '3591' + - '7502' - input: - product_category_id: hg-11-4-6 + product_category_id: hg-10-10 output: product_category_id: - - '667' + - '7406' - input: - product_category_id: hg-11-4-7 + product_category_id: hg-10-11 output: product_category_id: - - '3110' + - '728' - input: - product_category_id: hg-11-4-7-1 + product_category_id: hg-10-11-1 output: product_category_id: - - '1496' + - '4220' - input: - product_category_id: hg-11-4-7-2 + product_category_id: hg-10-11-2 output: product_category_id: - - '5642' + - '2631' - input: - product_category_id: hg-11-4-7-3 + product_category_id: hg-10-11-2-1 output: product_category_id: - - '3750' + - '2631' - input: - product_category_id: hg-11-4-7-4 + product_category_id: hg-10-11-2-2 output: product_category_id: - - '3956' + - '2631' - input: - product_category_id: hg-11-4-8 + product_category_id: hg-10-11-2-3 output: product_category_id: - - '5134' + - '2631' - input: - product_category_id: hg-11-5 + product_category_id: hg-10-11-2-4 output: product_category_id: - - '6478' + - '2631' - input: - product_category_id: hg-11-5-1 + product_category_id: hg-10-11-2-5 output: product_category_id: - - '499924' + - '2631' - input: - product_category_id: hg-11-5-2 + product_category_id: hg-10-11-2-6 output: product_category_id: - - '8039' + - '2631' - input: - product_category_id: hg-11-5-3 + product_category_id: hg-10-11-3 output: product_category_id: - - '6479' + - '2869' - input: - product_category_id: hg-11-5-4 + product_category_id: hg-10-11-3-1 output: product_category_id: - - '5837' + - '2869' - input: - product_category_id: hg-11-5-4-1 + product_category_id: hg-10-11-3-2 output: product_category_id: - - '5837' + - '2869' - input: - product_category_id: hg-11-5-4-2 + product_category_id: hg-10-11-3-3 output: product_category_id: - - '5837' + - '2869' - input: - product_category_id: hg-11-5-4-4 + product_category_id: hg-10-11-3-4 output: product_category_id: - - '5837' + - '2869' - input: - product_category_id: hg-11-6 + product_category_id: hg-10-11-3-5 output: product_category_id: - - '2901' + - '2869' - input: - product_category_id: hg-11-6-1 + product_category_id: hg-10-11-4 output: product_category_id: - - '3489' + - '2865' - input: - product_category_id: hg-11-6-1-1 + product_category_id: hg-10-11-4-1 output: product_category_id: - - '3489' + - '7137' - input: - product_category_id: hg-11-6-1-2 + product_category_id: hg-10-11-4-2 output: product_category_id: - - '3489' + - '512' - input: - product_category_id: hg-11-6-1-3 + product_category_id: hg-10-12 output: product_category_id: - - '3489' + - '630' - input: - product_category_id: hg-11-6-10 + product_category_id: hg-10-13 output: product_category_id: - - '4653' + - '3307' - input: - product_category_id: hg-11-6-10-1 + product_category_id: hg-10-14 output: product_category_id: - - '4655' + - '628' - input: - product_category_id: hg-11-6-10-2 + product_category_id: hg-10-14-1 output: product_category_id: - - '4654' + - '5600' - input: - product_category_id: hg-11-6-11 + product_category_id: hg-10-14-2 output: product_category_id: - - '505765' + - '2301' - input: - product_category_id: hg-11-6-11-1 + product_category_id: hg-10-14-3 output: product_category_id: - - '505765' + - '1874' - input: - product_category_id: hg-11-6-11-11 + product_category_id: hg-10-14-4 output: product_category_id: - - '505765' + - '8033' - input: - product_category_id: hg-11-6-11-12 + product_category_id: hg-10-14-5 output: product_category_id: - - '505765' + - '2371' - input: - product_category_id: hg-11-6-11-13 + product_category_id: hg-10-14-6 output: product_category_id: - - '505765' + - '5601' - input: - product_category_id: hg-11-6-11-14 + product_category_id: hg-10-14-6-1 output: product_category_id: - - '505765' + - '5601' - input: - product_category_id: hg-11-6-11-15 + product_category_id: hg-10-14-6-2 output: product_category_id: - - '505765' + - '5601' - input: - product_category_id: hg-11-6-11-16 + product_category_id: hg-10-14-7 output: product_category_id: - - '505765' + - '8032' - input: - product_category_id: hg-11-6-11-20 + product_category_id: hg-10-14-8 output: product_category_id: - - '505765' + - '1659' - input: - product_category_id: hg-11-6-11-21 + product_category_id: hg-10-14-8-1 output: product_category_id: - - '505765' + - '1659' - input: - product_category_id: hg-11-6-11-22 + product_category_id: hg-10-14-8-2 output: product_category_id: - - '505765' + - '1659' - input: - product_category_id: hg-11-6-11-23 + product_category_id: hg-10-14-9 output: product_category_id: - - '505765' + - '8031' - input: - product_category_id: hg-11-6-11-26 + product_category_id: hg-10-14-10 output: product_category_id: - - '505765' + - '5604' - input: - product_category_id: hg-11-6-11-29 + product_category_id: hg-10-14-10-1 output: product_category_id: - - '505765' + - '5604' - input: - product_category_id: hg-11-6-11-33 + product_category_id: hg-10-14-10-2 output: product_category_id: - - '505765' + - '5604' - input: - product_category_id: hg-11-6-11-34 + product_category_id: hg-10-14-11 output: product_category_id: - - '505765' + - '2431' - input: - product_category_id: hg-11-6-11-35 + product_category_id: hg-10-14-11-1 output: product_category_id: - - '505765' + - '2431' - input: - product_category_id: hg-11-6-11-41 + product_category_id: hg-10-14-11-2 output: product_category_id: - - '505765' + - '2431' - input: - product_category_id: hg-11-6-11-46 + product_category_id: hg-10-15 output: product_category_id: - - '505765' + - '499885' - input: - product_category_id: hg-11-6-11-52 + product_category_id: hg-10-16 output: product_category_id: - - '505765' + - '636' - input: - product_category_id: hg-11-6-11-9 + product_category_id: hg-10-16-1 output: product_category_id: - - '505765' + - '5558' - input: - product_category_id: hg-11-6-12 + product_category_id: hg-10-16-1-1 output: product_category_id: - - '7570' + - '3722' - input: - product_category_id: hg-11-6-12-2 + product_category_id: hg-10-16-1-2 output: product_category_id: - - '7570' + - '5714' - input: - product_category_id: hg-11-6-12-3 + product_category_id: hg-10-16-1-2-1 output: product_category_id: - - '7570' + - '5714' - input: - product_category_id: hg-11-6-12-4 + product_category_id: hg-10-16-1-2-2 output: product_category_id: - - '7570' + - '5714' - input: - product_category_id: hg-11-6-12-5 + product_category_id: hg-10-16-1-3 output: product_category_id: - - '7570' + - '5716' - input: - product_category_id: hg-11-6-13 + product_category_id: hg-10-16-1-4 output: product_category_id: - - '6747' + - '631' - input: - product_category_id: hg-11-6-13-4 + product_category_id: hg-10-16-1-5 output: product_category_id: - - '6747' + - '7514' - input: - product_category_id: hg-11-6-14 + product_category_id: hg-10-16-1-6 output: product_category_id: - - '4674' + - '5559' - input: - product_category_id: hg-11-6-14-1 + product_category_id: hg-10-16-1-6-1 output: product_category_id: - - '4675' + - '5559' - input: - product_category_id: hg-11-6-15 + product_category_id: hg-10-16-1-6-2 output: product_category_id: - - '5042' + - '5559' - input: - product_category_id: hg-11-6-15-1 + product_category_id: hg-10-16-2 output: product_category_id: - - '5042' + - '5128' - input: - product_category_id: hg-11-6-15-2 + product_category_id: hg-10-16-3 output: product_category_id: - - '5042' + - '8058' - input: - product_category_id: hg-11-6-16 + product_category_id: hg-10-16-4 output: product_category_id: - - '7187' + - '3561' - input: - product_category_id: hg-11-6-16-3 + product_category_id: hg-10-16-5 output: product_category_id: - - '7187' + - '6986' - input: - product_category_id: hg-11-6-17 + product_category_id: hg-10-16-6 output: product_category_id: - - '4519' + - '5631' - input: - product_category_id: hg-11-6-17-10 + product_category_id: hg-10-16-7 output: product_category_id: - - '4519' + - '7255' - input: - product_category_id: hg-11-6-17-3 + product_category_id: hg-10-16-8 output: product_category_id: - - '4519' + - '4360' - input: - product_category_id: hg-11-6-17-8 + product_category_id: hg-10-16-8-1 output: product_category_id: - - '4519' + - '40' - input: - product_category_id: hg-11-6-18 + product_category_id: hg-10-16-8-2 output: product_category_id: - - '1334' + - '4237' - input: - product_category_id: hg-11-6-18-1 + product_category_id: hg-10-16-9 output: product_category_id: - - '1334' + - '2446' - input: - product_category_id: hg-11-6-18-11 + product_category_id: hg-10-16-9-1 output: product_category_id: - - '1334' + - '499930' - input: - product_category_id: hg-11-6-18-8 + product_category_id: hg-10-16-9-1-1 output: product_category_id: - - '1334' + - '499930' - input: - product_category_id: hg-11-6-18-9 + product_category_id: hg-10-16-9-1-2 output: product_category_id: - - '1334' + - '499930' - input: - product_category_id: hg-11-6-19 + product_category_id: hg-10-16-9-2 output: product_category_id: - - '3684' + - '5494' - input: - product_category_id: hg-11-6-19-1 + product_category_id: hg-10-16-9-2-1 output: product_category_id: - - '3684' + - '5494' - input: - product_category_id: hg-11-6-19-1-1 + product_category_id: hg-10-16-9-2-2 output: product_category_id: - - '3684' + - '5494' - input: - product_category_id: hg-11-6-19-1-2 + product_category_id: hg-10-16-9-3 output: product_category_id: - - '5694' + - '5707' - input: - product_category_id: hg-11-6-19-1-3 + product_category_id: hg-10-17 output: product_category_id: - - '3684' + - '5056' - input: - product_category_id: hg-11-6-19-1-4 + product_category_id: hg-10-17-1 output: product_category_id: - - '3684' + - '5056' - input: - product_category_id: hg-11-6-19-2 + product_category_id: hg-10-17-2 output: product_category_id: - - '7540' + - '5056' - input: - product_category_id: hg-11-6-19-3 + product_category_id: hg-10-18 output: product_category_id: - - '5670' + - '4516' - input: - product_category_id: hg-11-6-19-4 + product_category_id: hg-10-18-1 output: product_category_id: - - '3855' + - '500039' - input: - product_category_id: hg-11-6-19-5 + product_category_id: hg-10-18-2 output: product_category_id: - - '3382' + - '5143' - input: - product_category_id: hg-11-6-19-5-1 + product_category_id: hg-10-18-3 output: product_category_id: - - '3382' + - '4517' - input: - product_category_id: hg-11-6-19-5-2 + product_category_id: hg-10-18-4 output: product_category_id: - - '3382' + - '637' - input: - product_category_id: hg-11-6-19-6 + product_category_id: hg-10-18-4-1 output: product_category_id: - - '505667' + - '637' - input: - product_category_id: hg-11-6-19-6-1 + product_category_id: hg-10-18-4-2 output: product_category_id: - - '505667' + - '637' - input: - product_category_id: hg-11-6-19-6-2 + product_category_id: hg-10-19 output: product_category_id: - - '505667' + - '6757' - input: - product_category_id: hg-11-6-19-6-3 + product_category_id: hg-10-19-1 output: product_category_id: - - '505667' + - '6765' - input: - product_category_id: hg-11-6-19-6-4 + product_category_id: hg-10-19-2 output: product_category_id: - - '505667' + - '6726' - input: - product_category_id: hg-11-6-19-7 + product_category_id: hg-10-19-3 output: product_category_id: - - '4560' + - '500115' - input: - product_category_id: hg-11-6-19-7-1 + product_category_id: hg-10-19-4 output: product_category_id: - - '4560' + - '4717' - input: - product_category_id: hg-11-6-19-7-2 + product_category_id: hg-10-19-5 output: product_category_id: - - '4560' + - '6758' - input: - product_category_id: hg-11-6-19-8 + product_category_id: hg-11 output: product_category_id: - - '5672' + - '638' - input: - product_category_id: hg-11-6-19-9 + product_category_id: hg-11-1 output: product_category_id: - - '5671' + - '649' - input: - product_category_id: hg-11-6-19-9-1 + product_category_id: hg-11-1-1 output: product_category_id: - - '5671' + - '7075' - input: - product_category_id: hg-11-6-19-9-2 + product_category_id: hg-11-1-2 output: product_category_id: - - '5671' + - '1817' - input: - product_category_id: hg-11-6-2 + product_category_id: hg-11-1-3 output: product_category_id: - - '3988' + - '7569' - input: - product_category_id: hg-11-6-2-1 + product_category_id: hg-11-1-3-1 output: product_category_id: - - '6888' + - '7569' - input: - product_category_id: hg-11-6-2-10 + product_category_id: hg-11-1-3-2 output: product_category_id: - - '3838' + - '7569' - input: - product_category_id: hg-11-6-2-2 + product_category_id: hg-11-1-4 output: product_category_id: - - '3239' + - '505806' - input: - product_category_id: hg-11-6-2-3 + product_category_id: hg-11-1-4-1 output: product_category_id: - - '4500' + - '505806' - input: - product_category_id: hg-11-6-2-4 + product_category_id: hg-11-1-4-2 output: product_category_id: - - '3450' + - '505806' - input: - product_category_id: hg-11-6-2-5 + product_category_id: hg-11-1-5 output: product_category_id: - - '4786' + - '499990' - input: - product_category_id: hg-11-6-2-6 + product_category_id: hg-11-1-5-1 output: product_category_id: - - '734' + - '499990' - input: - product_category_id: hg-11-6-2-7 + product_category_id: hg-11-1-5-2 output: product_category_id: - - '503736' + - '499990' - input: - product_category_id: hg-11-6-2-7-10 + product_category_id: hg-11-1-5-3 output: product_category_id: - - '503736' + - '499990' - input: - product_category_id: hg-11-6-2-7-12 + product_category_id: hg-11-1-5-4 output: product_category_id: - - '503736' + - '499990' - input: - product_category_id: hg-11-6-2-7-13 + product_category_id: hg-11-1-5-5 output: product_category_id: - - '503736' + - '499990' - input: - product_category_id: hg-11-6-2-7-14 + product_category_id: hg-11-1-6 output: product_category_id: - - '503736' + - '4562' - input: - product_category_id: hg-11-6-2-7-15 + product_category_id: hg-11-1-7 output: product_category_id: - - '503736' + - '7238' - input: - product_category_id: hg-11-6-2-7-16 + product_category_id: hg-11-1-8 output: product_category_id: - - '503736' + - '2363' - input: - product_category_id: hg-11-6-2-7-2 + product_category_id: hg-11-1-9 output: product_category_id: - - '503736' + - '6957' - input: - product_category_id: hg-11-6-2-7-20 + product_category_id: hg-11-1-10 output: product_category_id: - - '503736' + - '651' - input: - product_category_id: hg-11-6-2-7-21 + product_category_id: hg-11-1-10-1 output: product_category_id: - - '503736' + - '4222' - input: - product_category_id: hg-11-6-2-7-23 + product_category_id: hg-11-1-10-2 output: product_category_id: - - '503736' + - '3427' - input: - product_category_id: hg-11-6-2-7-24 + product_category_id: hg-11-1-10-3 output: product_category_id: - - '503736' + - '6956' - input: - product_category_id: hg-11-6-2-7-28 + product_category_id: hg-11-1-10-4 output: product_category_id: - - '503736' + - '505327' - input: - product_category_id: hg-11-6-2-7-29 + product_category_id: hg-11-1-10-5 output: product_category_id: - - '503736' + - '503757' - input: - product_category_id: hg-11-6-2-7-3 + product_category_id: hg-11-1-11 output: product_category_id: - - '503736' + - '2976' - input: - product_category_id: hg-11-6-2-7-32 + product_category_id: hg-11-1-11-1 output: product_category_id: - - '503736' + - '2976' - input: - product_category_id: hg-11-6-2-7-33 + product_category_id: hg-11-1-11-2 output: product_category_id: - - '503736' + - '2976' - input: - product_category_id: hg-11-6-2-7-34 + product_category_id: hg-11-1-11-3 output: product_category_id: - - '503736' + - '2976' - input: - product_category_id: hg-11-6-2-7-35 + product_category_id: hg-11-1-11-4 output: product_category_id: - - '503736' + - '2976' - input: - product_category_id: hg-11-6-2-7-38 + product_category_id: hg-11-1-11-5 output: product_category_id: - - '503736' + - '2976' - input: - product_category_id: hg-11-6-2-7-39 + product_category_id: hg-11-1-12 output: product_category_id: - - '503736' + - '650' - input: - product_category_id: hg-11-6-2-7-5 + product_category_id: hg-11-1-13 output: product_category_id: - - '503736' + - '7008' - input: - product_category_id: hg-11-6-2-7-8 + product_category_id: hg-11-1-14 output: product_category_id: - - '503736' + - '7139' - input: - product_category_id: hg-11-6-2-7-9 + product_category_id: hg-11-1-15 output: product_category_id: - - '503736' + - '649' - input: - product_category_id: hg-11-6-2-8 + product_category_id: hg-11-1-16 output: product_category_id: - - '5065' + - '4563' - input: - product_category_id: hg-11-6-2-9 + product_category_id: hg-11-1-17 output: product_category_id: - - '5066' + - '8493' - input: - product_category_id: hg-11-6-20 + product_category_id: hg-11-2 output: product_category_id: - - '2540' + - '6070' - input: - product_category_id: hg-11-6-20-10 + product_category_id: hg-11-2-1 output: product_category_id: - - '2540' + - '640' - input: - product_category_id: hg-11-6-20-13 + product_category_id: hg-11-2-1-1 output: product_category_id: - - '2540' + - '4764' - input: - product_category_id: hg-11-6-20-7 + product_category_id: hg-11-2-1-2 output: product_category_id: - - '2540' + - '641' - input: - product_category_id: hg-11-6-20-8 + product_category_id: hg-11-2-1-3 output: product_category_id: - - '2540' + - '642' - input: - product_category_id: hg-11-6-21 + product_category_id: hg-11-2-1-4 output: product_category_id: - - '5075' + - '6756' - input: - product_category_id: hg-11-6-21-1 + product_category_id: hg-11-2-1-5 output: product_category_id: - - '5075' + - '643' - input: - product_category_id: hg-11-6-21-2 + product_category_id: hg-11-2-1-6 output: product_category_id: - - '5075' + - '644' - input: - product_category_id: hg-11-6-21-4 + product_category_id: hg-11-2-1-7 output: product_category_id: - - '5075' + - '645' - input: - product_category_id: hg-11-6-22 + product_category_id: hg-11-2-1-8 output: product_category_id: - - '7006' + - '2843' - input: - product_category_id: hg-11-6-22-1 + product_category_id: hg-11-2-1-9 output: product_category_id: - - '7006' + - '646' - input: - product_category_id: hg-11-6-22-2 + product_category_id: hg-11-2-1-10 output: product_category_id: - - '7006' + - '647' - input: - product_category_id: hg-11-6-22-5 + product_category_id: hg-11-2-1-11 output: product_category_id: - - '7006' + - '648' - input: - product_category_id: hg-11-6-22-7 + product_category_id: hg-11-2-2 output: product_category_id: - - '7006' + - '4502' - input: - product_category_id: hg-11-6-23 + product_category_id: hg-11-2-2-1 output: product_category_id: - - '8087' + - '4503' - input: - product_category_id: hg-11-6-23-3 + product_category_id: hg-11-2-2-1-1 output: product_category_id: - - '8087' + - '4503' - input: - product_category_id: hg-11-6-23-4 + product_category_id: hg-11-2-2-1-2 output: product_category_id: - - '8087' + - '4503' - input: - product_category_id: hg-11-6-23-5 + product_category_id: hg-11-2-2-2 output: product_category_id: - - '8087' + - '7131' - input: - product_category_id: hg-11-6-24 + product_category_id: hg-11-2-2-2-1 output: product_category_id: - - '3848' + - '7131' - input: - product_category_id: hg-11-6-24-2 + product_category_id: hg-11-2-2-2-2 output: product_category_id: - - '3848' + - '7131' - input: - product_category_id: hg-11-6-24-3 + product_category_id: hg-11-2-2-3 output: product_category_id: - - '3848' + - '4726' - input: - product_category_id: hg-11-6-25 + product_category_id: hg-11-2-3 output: product_category_id: - - '502989' + - '654' - input: - product_category_id: hg-11-6-25-2 + product_category_id: hg-11-2-3-1 output: product_category_id: - - '502989' + - '655' - input: - product_category_id: hg-11-6-25-4 + product_category_id: hg-11-2-3-2 output: product_category_id: - - '502989' + - '4721' - input: - product_category_id: hg-11-6-25-7 + product_category_id: hg-11-2-3-3 output: product_category_id: - - '502989' + - '6838' - input: - product_category_id: hg-11-6-26 + product_category_id: hg-11-2-3-3-1 output: product_category_id: - - '8051' + - '6838' - input: - product_category_id: hg-11-6-26-1 + product_category_id: hg-11-2-3-3-2 output: product_category_id: - - '8052' + - '6838' - input: - product_category_id: hg-11-6-26-2 + product_category_id: hg-11-2-3-4 output: product_category_id: - - '8053' + - '656' - input: - product_category_id: hg-11-6-27 + product_category_id: hg-11-2-3-5 output: product_category_id: - - '7444' + - '657' - input: - product_category_id: hg-11-6-27-1 + product_category_id: hg-11-2-3-6 output: product_category_id: - - '7444' + - '6518' - input: - product_category_id: hg-11-6-27-2 + product_category_id: hg-11-2-3-7 output: product_category_id: - - '7444' + - '658' - input: - product_category_id: hg-11-6-27-4 + product_category_id: hg-11-2-3-8 output: product_category_id: - - '7444' + - '5110' - input: - product_category_id: hg-11-6-27-5 + product_category_id: hg-11-2-3-9 output: product_category_id: - - '7444' + - '4459' - input: - product_category_id: hg-11-6-28 + product_category_id: hg-11-2-3-10 output: product_category_id: - - '3523' + - '660' - input: - product_category_id: hg-11-6-28-1 + product_category_id: hg-11-2-3-10-1 output: product_category_id: - - '3124' + - '660' - input: - product_category_id: hg-11-6-29 + product_category_id: hg-11-2-3-10-2 output: product_category_id: - - '499996' + - '660' - input: - product_category_id: hg-11-6-29-1 + product_category_id: hg-11-2-3-11 output: product_category_id: - - '499996' + - '661' - input: - product_category_id: hg-11-6-29-2 + product_category_id: hg-11-2-3-12 output: product_category_id: - - '499996' + - '4423' - input: - product_category_id: hg-11-6-29-3 + product_category_id: hg-11-2-3-13 output: product_category_id: - - '499996' + - '662' - input: - product_category_id: hg-11-6-3 + product_category_id: hg-11-2-3-13-1 output: product_category_id: - - '500004' + - '662' - input: - product_category_id: hg-11-6-3-1 + product_category_id: hg-11-2-3-13-2 output: product_category_id: - - '500004' + - '662' - input: - product_category_id: hg-11-6-3-2 + product_category_id: hg-11-2-3-14 output: product_category_id: - - '500004' + - '663' - input: - product_category_id: hg-11-6-3-3 + product_category_id: hg-11-2-3-15 output: product_category_id: - - '500004' + - '659' - input: - product_category_id: hg-11-6-3-4 + product_category_id: hg-11-2-3-16 output: product_category_id: - - '500004' + - '5340' - input: - product_category_id: hg-11-6-3-5 + product_category_id: hg-11-2-3-16-1 output: product_category_id: - - '500004' + - '5340' - input: - product_category_id: hg-11-6-3-6 + product_category_id: hg-11-2-3-16-2 output: product_category_id: - - '500004' + - '5340' - input: - product_category_id: hg-11-6-30 + product_category_id: hg-11-2-3-17 output: product_category_id: - - '7118' + - '664' - input: - product_category_id: hg-11-6-30-1 + product_category_id: hg-11-2-4 output: product_category_id: - - '7119' + - '6071' - input: - product_category_id: hg-11-6-31 + product_category_id: hg-11-2-5 output: product_category_id: - - '8106' + - '4424' - input: - product_category_id: hg-11-6-32 + product_category_id: hg-11-2-5-1 output: product_category_id: - - '5570' + - '4661' - input: - product_category_id: hg-11-6-32-2 + product_category_id: hg-11-2-5-2 output: product_category_id: - - '5570' + - '4660' - input: - product_category_id: hg-11-6-32-3 + product_category_id: hg-11-2-5-3 output: product_category_id: - - '5570' + - '4501' - input: - product_category_id: hg-11-6-4 + product_category_id: hg-11-2-5-3-1 output: product_category_id: - - '5076' + - '4501' - input: - product_category_id: hg-11-6-4-1 + product_category_id: hg-11-2-5-3-2 output: product_category_id: - - '5076' + - '4501' - input: - product_category_id: hg-11-6-4-2 + product_category_id: hg-11-2-5-3-3 output: product_category_id: - - '5076' + - '4501' - input: - product_category_id: hg-11-6-4-5 + product_category_id: hg-11-2-5-3-4 output: product_category_id: - - '5076' + - '4501' - input: - product_category_id: hg-11-6-5 + product_category_id: hg-11-2-5-3-6 output: product_category_id: - - '3954' + - '4501' - input: - product_category_id: hg-11-6-5-1 + product_category_id: hg-11-2-5-4 output: product_category_id: - - '3954' + - '4529' - input: - product_category_id: hg-11-6-5-4 + product_category_id: hg-11-2-5-5 output: product_category_id: - - '3954' + - '4427' - input: - product_category_id: hg-11-6-6 + product_category_id: hg-11-2-5-5-1 output: product_category_id: - - '3443' + - '4663' - input: - product_category_id: hg-11-6-6-1 + product_category_id: hg-11-2-5-5-2 output: product_category_id: - - '3443' + - '4662' - input: - product_category_id: hg-11-6-6-2 + product_category_id: hg-11-3 output: product_category_id: - - '3443' + - '2920' - input: - product_category_id: hg-11-6-7 + product_category_id: hg-11-3-1 output: product_category_id: - - '500066' + - '4722' - input: - product_category_id: hg-11-6-7-1 + product_category_id: hg-11-3-2 output: product_category_id: - - '500066' + - '3435' - input: - product_category_id: hg-11-6-7-3 + product_category_id: hg-11-3-3 output: product_category_id: - - '500066' + - '1017' - input: - product_category_id: hg-11-6-7-4 + product_category_id: hg-11-3-4 output: product_category_id: - - '500066' + - '4520' - input: - product_category_id: hg-11-6-8 + product_category_id: hg-11-3-4-1 output: product_category_id: - - '7355' + - '4521' - input: - product_category_id: hg-11-6-8-1 + product_category_id: hg-11-3-4-2 output: product_category_id: - - '7355' + - '4522' - input: - product_category_id: hg-11-6-8-2 + product_category_id: hg-11-3-5 output: product_category_id: - - '7355' + - '1444' - input: - product_category_id: hg-11-6-8-3 + product_category_id: hg-11-3-6 output: product_category_id: - - '7355' + - '2507' - input: - product_category_id: hg-11-6-9 + product_category_id: hg-11-3-7 output: product_category_id: - - '6944' + - '669' - input: - product_category_id: hg-11-6-9-1 + product_category_id: hg-11-3-7-1 output: product_category_id: - - '503725' + - '669' - input: - product_category_id: hg-11-6-9-1-1 + product_category_id: hg-11-3-7-2 output: product_category_id: - - '503725' + - '669' - input: - product_category_id: hg-11-6-9-1-2 + product_category_id: hg-11-3-7-3 output: product_category_id: - - '503725' + - '669' - input: - product_category_id: hg-11-6-9-1-3 + product_category_id: hg-11-3-7-4 output: product_category_id: - - '503725' + - '669' - input: - product_category_id: hg-11-6-9-1-5 + product_category_id: hg-11-3-8 output: product_category_id: - - '503725' + - '671' - input: - product_category_id: hg-11-6-9-2 + product_category_id: hg-11-3-9 output: product_category_id: - - '6945' + - '5060' - input: - product_category_id: hg-11-6-9-3 + product_category_id: hg-11-3-10 output: product_category_id: - - '6946' + - '3800' - input: - product_category_id: hg-11-7 + product_category_id: hg-11-3-11 output: product_category_id: - - '730' + - '3809' - input: - product_category_id: hg-11-7-1 + product_category_id: hg-11-3-12 output: product_category_id: - - '5287' + - '6449' - input: - product_category_id: hg-11-7-10 + product_category_id: hg-11-4 output: product_category_id: - - '7165' + - '2626' - input: - product_category_id: hg-11-7-11 + product_category_id: hg-11-4-1 output: product_category_id: - - '751' + - '3337' - input: - product_category_id: hg-11-7-12 + product_category_id: hg-11-4-2 output: product_category_id: - - '4421' + - '6534' - input: - product_category_id: hg-11-7-12-1 + product_category_id: hg-11-4-3 output: product_category_id: - - '4421' + - '2644' - input: - product_category_id: hg-11-7-12-2 + product_category_id: hg-11-4-4 output: product_category_id: - - '4421' + - '6481' - input: - product_category_id: hg-11-7-13 + product_category_id: hg-11-4-5 output: product_category_id: - - '4720' + - '3591' - input: - product_category_id: hg-11-7-14 + product_category_id: hg-11-4-6 output: product_category_id: - - '4532' + - '667' - input: - product_category_id: hg-11-7-14-1 + product_category_id: hg-11-4-7 output: product_category_id: - - '739' + - '3110' - input: - product_category_id: hg-11-7-14-2 + product_category_id: hg-11-4-7-1 output: product_category_id: - - '760' + - '1496' - input: - product_category_id: hg-11-7-14-3 + product_category_id: hg-11-4-7-2 output: product_category_id: - - '757' + - '5642' - input: - product_category_id: hg-11-7-14-4 + product_category_id: hg-11-4-7-3 output: product_category_id: - - '737' + - '3750' - input: - product_category_id: hg-11-7-14-5 + product_category_id: hg-11-4-7-4 output: product_category_id: - - '6523' + - '3956' - input: - product_category_id: hg-11-7-14-6 + product_category_id: hg-11-4-8 output: product_category_id: - - '6279' + - '5134' - input: - product_category_id: hg-11-7-15 + product_category_id: hg-11-5 output: product_category_id: - - '743' + - '6478' - input: - product_category_id: hg-11-7-16 + product_category_id: hg-11-5-1 output: product_category_id: - - '744' + - '499924' - input: - product_category_id: hg-11-7-16-1 + product_category_id: hg-11-5-2 output: product_category_id: - - '744' + - '8039' - input: - product_category_id: hg-11-7-16-2 + product_category_id: hg-11-5-3 output: product_category_id: - - '744' + - '6479' - input: - product_category_id: hg-11-7-17 + product_category_id: hg-11-5-4 output: product_category_id: - - '505666' + - '5837' - input: - product_category_id: hg-11-7-17-1 + product_category_id: hg-11-5-4-1 output: product_category_id: - - '505666' + - '5837' - input: - product_category_id: hg-11-7-17-2 + product_category_id: hg-11-5-4-2 output: product_category_id: - - '505666' + - '5837' - input: - product_category_id: hg-11-7-18 + product_category_id: hg-11-5-4-4 output: product_category_id: - - '687' + - '5837' - input: - product_category_id: hg-11-7-19 + product_category_id: hg-11-6 output: product_category_id: - - '5103' + - '2901' - input: - product_category_id: hg-11-7-19-1 + product_category_id: hg-11-6-1 output: product_category_id: - - '6548' + - '3489' - input: - product_category_id: hg-11-7-19-2 + product_category_id: hg-11-6-1-1 output: product_category_id: - - '5349' + - '3489' - input: - product_category_id: hg-11-7-19-3 + product_category_id: hg-11-6-1-2 output: product_category_id: - - '504633' + - '3489' - input: - product_category_id: hg-11-7-19-4 + product_category_id: hg-11-6-1-3 output: product_category_id: - - '4292' + - '3489' - input: - product_category_id: hg-11-7-2 + product_category_id: hg-11-6-2 output: product_category_id: - - '732' + - '3988' - input: - product_category_id: hg-11-7-20 + product_category_id: hg-11-6-2-1 output: product_category_id: - - '681' + - '6888' - input: - product_category_id: hg-11-7-21 + product_category_id: hg-11-6-2-2 output: product_category_id: - - '5156' + - '3239' - input: - product_category_id: hg-11-7-22 + product_category_id: hg-11-6-2-3 output: product_category_id: - - '610' + - '4500' - input: - product_category_id: hg-11-7-23 + product_category_id: hg-11-6-2-4 output: product_category_id: - - '6524' + - '3450' - input: - product_category_id: hg-11-7-24 + product_category_id: hg-11-6-2-5 output: product_category_id: - - '6543' + - '4786' - input: - product_category_id: hg-11-7-25 + product_category_id: hg-11-6-2-6 output: product_category_id: - - '747' + - '734' - input: - product_category_id: hg-11-7-26 + product_category_id: hg-11-6-2-7 output: product_category_id: - - '748' + - '503736' - input: - product_category_id: hg-11-7-27 + product_category_id: hg-11-6-2-7-2 output: product_category_id: - - '749' + - '503736' - input: - product_category_id: hg-11-7-27-1 + product_category_id: hg-11-6-2-7-3 output: product_category_id: - - '749' + - '503736' - input: - product_category_id: hg-11-7-27-2 + product_category_id: hg-11-6-2-7-5 output: product_category_id: - - '749' + - '503736' - input: - product_category_id: hg-11-7-28 + product_category_id: hg-11-6-2-7-8 output: product_category_id: - - '4161' + - '503736' - input: - product_category_id: hg-11-7-29 + product_category_id: hg-11-6-2-7-9 output: product_category_id: - - '750' + - '503736' - input: - product_category_id: hg-11-7-3 + product_category_id: hg-11-6-2-7-10 output: product_category_id: - - '5090' + - '503736' - input: - product_category_id: hg-11-7-30 + product_category_id: hg-11-6-2-7-12 output: product_category_id: - - '752' + - '503736' - input: - product_category_id: hg-11-7-30-1 + product_category_id: hg-11-6-2-7-13 output: product_category_id: - - '752' + - '503736' - input: - product_category_id: hg-11-7-30-2 + product_category_id: hg-11-6-2-7-14 output: product_category_id: - - '752' + - '503736' - input: - product_category_id: hg-11-7-30-3 + product_category_id: hg-11-6-2-7-15 output: product_category_id: - - '752' + - '503736' - input: - product_category_id: hg-11-7-30-4 + product_category_id: hg-11-6-2-7-16 output: product_category_id: - - '752' + - '503736' - input: - product_category_id: hg-11-7-30-5 + product_category_id: hg-11-6-2-7-20 output: product_category_id: - - '752' + - '503736' - input: - product_category_id: hg-11-7-31 + product_category_id: hg-11-6-2-7-21 output: product_category_id: - - '753' + - '503736' - input: - product_category_id: hg-11-7-32 + product_category_id: hg-11-6-2-7-23 output: product_category_id: - - '3526' + - '503736' - input: - product_category_id: hg-11-7-33 + product_category_id: hg-11-6-2-7-24 output: product_category_id: - - '4482' + - '503736' - input: - product_category_id: hg-11-7-34 + product_category_id: hg-11-6-2-7-28 output: product_category_id: - - '2985' + - '503736' - input: - product_category_id: hg-11-7-35 + product_category_id: hg-11-6-2-7-29 output: product_category_id: - - '683' + - '503736' - input: - product_category_id: hg-11-7-36 + product_category_id: hg-11-6-2-7-32 output: product_category_id: - - '755' + - '503736' - input: - product_category_id: hg-11-7-37 + product_category_id: hg-11-6-2-7-33 output: product_category_id: - - '756' + - '503736' - input: - product_category_id: hg-11-7-38 + product_category_id: hg-11-6-2-7-34 output: product_category_id: - - '1015' + - '503736' - input: - product_category_id: hg-11-7-39 + product_category_id: hg-11-6-2-7-35 output: product_category_id: - - '684' + - '503736' - input: - product_category_id: hg-11-7-4 + product_category_id: hg-11-6-2-7-38 output: product_category_id: - - '736' + - '503736' - input: - product_category_id: hg-11-7-4-1 + product_category_id: hg-11-6-2-7-39 output: product_category_id: - - '1388' + - '503736' - input: - product_category_id: hg-11-7-4-2 + product_category_id: hg-11-6-2-8 output: product_category_id: - - '1647' + - '5065' - input: - product_category_id: hg-11-7-4-3 + product_category_id: hg-11-6-2-9 output: product_category_id: - - '2422' + - '5066' - input: - product_category_id: hg-11-7-4-4 + product_category_id: hg-11-6-2-10 output: product_category_id: - - '1557' + - '3838' - input: - product_category_id: hg-11-7-4-5 + product_category_id: hg-11-6-3 output: product_category_id: - - '2247' + - '500004' - input: - product_category_id: hg-11-7-4-6 + product_category_id: hg-11-6-3-1 output: product_category_id: - - '5286' + - '500004' - input: - product_category_id: hg-11-7-40 + product_category_id: hg-11-6-3-2 output: product_category_id: - - '685' + - '500004' - input: - product_category_id: hg-11-7-41 + product_category_id: hg-11-6-3-3 output: product_category_id: - - '686' + - '500004' - input: - product_category_id: hg-11-7-42 + product_category_id: hg-11-6-3-4 output: product_category_id: - - '4495' + - '500004' - input: - product_category_id: hg-11-7-43 + product_category_id: hg-11-6-3-5 output: product_category_id: - - '5577' + - '500004' - input: - product_category_id: hg-11-7-44 + product_category_id: hg-11-6-3-6 output: product_category_id: - - '5057' + - '500004' - input: - product_category_id: hg-11-7-45 + product_category_id: hg-11-6-4 output: product_category_id: - - '4528' + - '5076' - input: - product_category_id: hg-11-7-46 + product_category_id: hg-11-6-4-1 output: product_category_id: - - '5289' + - '5076' - input: - product_category_id: hg-11-7-46-1 + product_category_id: hg-11-6-4-2 output: product_category_id: - - '761' + - '5076' - input: - product_category_id: hg-11-7-46-10 + product_category_id: hg-11-6-4-5 output: product_category_id: - - '764' + - '5076' - input: - product_category_id: hg-11-7-46-2 + product_category_id: hg-11-6-5 output: product_category_id: - - '6819' + - '3954' - input: - product_category_id: hg-11-7-46-3 + product_category_id: hg-11-6-5-1 output: product_category_id: - - '5318' + - '3954' - input: - product_category_id: hg-11-7-46-4 + product_category_id: hg-11-6-5-4 output: product_category_id: - - '6278' + - '3954' - input: - product_category_id: hg-11-7-46-5 + product_category_id: hg-11-6-6 output: product_category_id: - - '5291' + - '3443' - input: - product_category_id: hg-11-7-46-6 + product_category_id: hg-11-6-6-1 output: product_category_id: - - '6516' + - '3443' - input: - product_category_id: hg-11-7-46-7 + product_category_id: hg-11-6-6-2 output: product_category_id: - - '759' + - '3443' - input: - product_category_id: hg-11-7-46-8 + product_category_id: hg-11-6-7 output: product_category_id: - - '762' + - '500066' - input: - product_category_id: hg-11-7-46-9 + product_category_id: hg-11-6-7-1 output: product_category_id: - - '5292' + - '500066' - input: - product_category_id: hg-11-7-47 + product_category_id: hg-11-6-7-3 output: product_category_id: - - '688' + - '500066' - input: - product_category_id: hg-11-7-48 + product_category_id: hg-11-6-7-4 output: product_category_id: - - '763' + - '500066' - input: - product_category_id: hg-11-7-49 + product_category_id: hg-11-6-8 output: product_category_id: - - '3293' + - '7355' - input: - product_category_id: hg-11-7-5 + product_category_id: hg-11-6-8-1 output: product_category_id: - - '679' + - '7355' - input: - product_category_id: hg-11-7-50 + product_category_id: hg-11-6-8-2 output: product_category_id: - - '765' + - '7355' - input: - product_category_id: hg-11-7-51 + product_category_id: hg-11-6-8-3 output: product_category_id: - - '4539' + - '7355' - input: - product_category_id: hg-11-7-52 + product_category_id: hg-11-6-9 output: product_category_id: - - '766' + - '6944' - input: - product_category_id: hg-11-7-6 + product_category_id: hg-11-6-9-1 output: product_category_id: - - '3319' + - '503725' - input: - product_category_id: hg-11-7-7 + product_category_id: hg-11-6-9-1-1 output: product_category_id: - - '738' + - '503725' - input: - product_category_id: hg-11-7-8 + product_category_id: hg-11-6-9-1-2 output: product_category_id: - - '3181' + - '503725' - input: - product_category_id: hg-11-7-9 + product_category_id: hg-11-6-9-1-3 output: product_category_id: - - '680' + - '503725' - input: - product_category_id: hg-11-8 + product_category_id: hg-11-6-9-1-5 output: product_category_id: - - '668' + - '503725' - input: - product_category_id: hg-11-8-1 + product_category_id: hg-11-6-9-2 output: product_category_id: - - '639' + - '6945' - input: - product_category_id: hg-11-8-10 + product_category_id: hg-11-6-9-3 output: product_category_id: - - '5078' + - '6946' - input: - product_category_id: hg-11-8-11 + product_category_id: hg-11-6-10 output: product_category_id: - - '6522' + - '4653' - input: - product_category_id: hg-11-8-12 + product_category_id: hg-11-6-10-1 output: product_category_id: - - '653' + - '4655' - input: - product_category_id: hg-11-8-12-1 + product_category_id: hg-11-6-10-2 output: product_category_id: - - '653' + - '4654' - input: - product_category_id: hg-11-8-12-2 + product_category_id: hg-11-6-11 output: product_category_id: - - '653' + - '505765' - input: - product_category_id: hg-11-8-13 + product_category_id: hg-11-6-11-1 output: product_category_id: - - '4777' + - '505765' - input: - product_category_id: hg-11-8-14 + product_category_id: hg-11-6-11-9 output: product_category_id: - - '3850' + - '505765' - input: - product_category_id: hg-11-8-15 + product_category_id: hg-11-6-11-11 output: product_category_id: - - '6342' + - '505765' - input: - product_category_id: hg-11-8-16 + product_category_id: hg-11-6-11-12 output: product_category_id: - - '7331' + - '505765' - input: - product_category_id: hg-11-8-16-1 + product_category_id: hg-11-6-11-13 output: product_category_id: - - '7331' + - '505765' - input: - product_category_id: hg-11-8-16-5 + product_category_id: hg-11-6-11-14 output: product_category_id: - - '7331' + - '505765' - input: - product_category_id: hg-11-8-16-6 + product_category_id: hg-11-6-11-15 output: product_category_id: - - '7331' + - '505765' - input: - product_category_id: hg-11-8-17 + product_category_id: hg-11-6-11-16 output: product_category_id: - - '3091' + - '505765' - input: - product_category_id: hg-11-8-17-1 + product_category_id: hg-11-6-11-20 output: product_category_id: - - '3091' + - '505765' - input: - product_category_id: hg-11-8-17-2 + product_category_id: hg-11-6-11-21 output: product_category_id: - - '3091' + - '505765' - input: - product_category_id: hg-11-8-17-3 + product_category_id: hg-11-6-11-22 output: product_category_id: - - '3091' + - '505765' - input: - product_category_id: hg-11-8-17-4 + product_category_id: hg-11-6-11-23 output: product_category_id: - - '3091' + - '505765' - input: - product_category_id: hg-11-8-17-5 + product_category_id: hg-11-6-11-26 output: product_category_id: - - '3091' + - '505765' - input: - product_category_id: hg-11-8-18 + product_category_id: hg-11-6-11-29 output: product_category_id: - - '3713' + - '505765' - input: - product_category_id: hg-11-8-19 + product_category_id: hg-11-6-11-33 output: product_category_id: - - '5928' + - '505765' - input: - product_category_id: hg-11-8-2 + product_category_id: hg-11-6-11-34 output: product_category_id: - - '3768' + - '505765' - input: - product_category_id: hg-11-8-20 + product_category_id: hg-11-6-11-35 output: product_category_id: - - '3835' + - '505765' - input: - product_category_id: hg-11-8-21 + product_category_id: hg-11-6-11-41 output: product_category_id: - - '666' + - '505765' - input: - product_category_id: hg-11-8-22 + product_category_id: hg-11-6-11-46 output: product_category_id: - - '3268' + - '505765' - input: - product_category_id: hg-11-8-22-1 + product_category_id: hg-11-6-11-52 output: product_category_id: - - '3268' + - '505765' - input: - product_category_id: hg-11-8-22-2 + product_category_id: hg-11-6-12 output: product_category_id: - - '3268' + - '7570' - input: - product_category_id: hg-11-8-23 + product_category_id: hg-11-6-12-2 output: product_category_id: - - '6723' + - '7570' - input: - product_category_id: hg-11-8-24 + product_category_id: hg-11-6-12-3 output: product_category_id: - - '6411' + - '7570' - input: - product_category_id: hg-11-8-24-1 + product_category_id: hg-11-6-12-4 output: product_category_id: - - '6412' + - '7570' - input: - product_category_id: hg-11-8-25 + product_category_id: hg-11-6-12-5 output: product_category_id: - - '741' + - '7570' - input: - product_category_id: hg-11-8-26 + product_category_id: hg-11-6-13 output: product_category_id: - - '5370' + - '6747' - input: - product_category_id: hg-11-8-27 + product_category_id: hg-11-6-13-4 output: product_category_id: - - '505316' + - '6747' - input: - product_category_id: hg-11-8-28 + product_category_id: hg-11-6-14 output: product_category_id: - - '3381' + - '4674' - input: - product_category_id: hg-11-8-28-1 + product_category_id: hg-11-6-14-1 output: product_category_id: - - '3586' + - '4675' - input: - product_category_id: hg-11-8-28-1-1 + product_category_id: hg-11-6-15 output: product_category_id: - - '3586' + - '5042' - input: - product_category_id: hg-11-8-28-1-2 + product_category_id: hg-11-6-15-1 output: product_category_id: - - '3586' + - '5042' - input: - product_category_id: hg-11-8-28-2 + product_category_id: hg-11-6-15-2 output: product_category_id: - - '3685' + - '5042' - input: - product_category_id: hg-11-8-28-2-1 + product_category_id: hg-11-6-16 output: product_category_id: - - '4214' + - '7187' - input: - product_category_id: hg-11-8-28-2-2 + product_category_id: hg-11-6-16-3 output: product_category_id: - - '3685' + - '7187' - input: - product_category_id: hg-11-8-28-2-3 + product_category_id: hg-11-6-17 output: product_category_id: - - '3685' + - '4519' - input: - product_category_id: hg-11-8-28-2-4 + product_category_id: hg-11-6-17-3 output: product_category_id: - - '3685' + - '4519' - input: - product_category_id: hg-11-8-28-2-5 + product_category_id: hg-11-6-17-8 output: product_category_id: - - '3685' + - '4519' - input: - product_category_id: hg-11-8-28-2-6 + product_category_id: hg-11-6-17-10 output: product_category_id: - - '3685' + - '4519' - input: - product_category_id: hg-11-8-29 + product_category_id: hg-11-6-18 output: product_category_id: - - '3723' + - '1334' - input: - product_category_id: hg-11-8-3 + product_category_id: hg-11-6-18-1 output: product_category_id: - - '3347' + - '1334' - input: - product_category_id: hg-11-8-30 + product_category_id: hg-11-6-18-8 output: product_category_id: - - '3156' + - '1334' - input: - product_category_id: hg-11-8-30-1 + product_category_id: hg-11-6-18-9 output: product_category_id: - - '3156' + - '1334' - input: - product_category_id: hg-11-8-30-2 + product_category_id: hg-11-6-18-11 output: product_category_id: - - '3156' + - '1334' - input: - product_category_id: hg-11-8-31 + product_category_id: hg-11-6-19 output: product_category_id: - - '3521' + - '3684' - input: - product_category_id: hg-11-8-31-1 + product_category_id: hg-11-6-19-1 output: product_category_id: - - '3521' + - '3684' - input: - product_category_id: hg-11-8-31-2 + product_category_id: hg-11-6-19-1-1 output: product_category_id: - - '3521' + - '3684' - input: - product_category_id: hg-11-8-32 + product_category_id: hg-11-6-19-1-2 output: product_category_id: - - '7329' + - '5694' - input: - product_category_id: hg-11-8-33 + product_category_id: hg-11-6-19-1-3 output: product_category_id: - - '6554' + - '3684' - input: - product_category_id: hg-11-8-33-1 + product_category_id: hg-11-6-19-1-4 output: product_category_id: - - '6554' + - '3684' - input: - product_category_id: hg-11-8-33-2 + product_category_id: hg-11-6-19-2 output: product_category_id: - - '6554' + - '7540' - input: - product_category_id: hg-11-8-34 + product_category_id: hg-11-6-19-3 output: product_category_id: - - '503005' + - '5670' - input: - product_category_id: hg-11-8-35 + product_category_id: hg-11-6-19-4 output: product_category_id: - - '3385' + - '3855' - input: - product_category_id: hg-11-8-36 + product_category_id: hg-11-6-19-5 output: product_category_id: - - '6787' + - '3382' - input: - product_category_id: hg-11-8-37 + product_category_id: hg-11-6-19-5-1 output: product_category_id: - - '4746' + - '3382' - input: - product_category_id: hg-11-8-38 + product_category_id: hg-11-6-19-5-2 output: product_category_id: - - '7485' + - '3382' - input: - product_category_id: hg-11-8-39 + product_category_id: hg-11-6-19-6 output: product_category_id: - - '665' + - '505667' - input: - product_category_id: hg-11-8-39-1 + product_category_id: hg-11-6-19-6-1 output: product_category_id: - - '665' + - '505667' - input: - product_category_id: hg-11-8-39-2 + product_category_id: hg-11-6-19-6-2 output: product_category_id: - - '665' + - '505667' - input: - product_category_id: hg-11-8-39-3 + product_category_id: hg-11-6-19-6-3 output: product_category_id: - - '665' + - '505667' - input: - product_category_id: hg-11-8-39-4 + product_category_id: hg-11-6-19-6-4 output: product_category_id: - - '665' + - '505667' - input: - product_category_id: hg-11-8-39-5 + product_category_id: hg-11-6-19-7 output: product_category_id: - - '665' + - '4560' - input: - product_category_id: hg-11-8-4 + product_category_id: hg-11-6-19-7-1 output: product_category_id: - - '3430' + - '4560' - input: - product_category_id: hg-11-8-40 + product_category_id: hg-11-6-19-7-2 output: product_category_id: - - '8006' + - '4560' - input: - product_category_id: hg-11-8-41 + product_category_id: hg-11-6-19-8 output: product_category_id: - - '2948' + - '5672' - input: - product_category_id: hg-11-8-41-1 + product_category_id: hg-11-6-19-9 output: product_category_id: - - '6480' + - '5671' - input: - product_category_id: hg-11-8-41-10 + product_category_id: hg-11-6-19-9-1 output: product_category_id: - - '2344' + - '5671' - input: - product_category_id: hg-11-8-41-11 + product_category_id: hg-11-6-19-9-2 output: product_category_id: - - '5059' + - '5671' - input: - product_category_id: hg-11-8-41-11-1 + product_category_id: hg-11-6-20 output: product_category_id: - - '5059' + - '2540' - input: - product_category_id: hg-11-8-41-11-2 + product_category_id: hg-11-6-20-7 output: product_category_id: - - '5059' + - '2540' - input: - product_category_id: hg-11-8-41-12 + product_category_id: hg-11-6-20-8 output: product_category_id: - - '6415' + - '2540' - input: - product_category_id: hg-11-8-41-13 + product_category_id: hg-11-6-20-10 output: product_category_id: - - '4322' + - '2540' - input: - product_category_id: hg-11-8-41-13-1 + product_category_id: hg-11-6-20-13 output: product_category_id: - - '4322' + - '2540' - input: - product_category_id: hg-11-8-41-13-2 + product_category_id: hg-11-6-21 output: product_category_id: - - '4322' + - '5075' - input: - product_category_id: hg-11-8-41-14 + product_category_id: hg-11-6-21-1 output: product_category_id: - - '3831' + - '5075' - input: - product_category_id: hg-11-8-41-14-1 + product_category_id: hg-11-6-21-2 output: product_category_id: - - '3831' + - '5075' - input: - product_category_id: hg-11-8-41-14-2 + product_category_id: hg-11-6-21-4 output: product_category_id: - - '3831' + - '5075' - input: - product_category_id: hg-11-8-41-2 + product_category_id: hg-11-6-22 output: product_category_id: - - '3479' + - '7006' - input: - product_category_id: hg-11-8-41-3 + product_category_id: hg-11-6-22-1 output: product_category_id: - - '6487' + - '7006' - input: - product_category_id: hg-11-8-41-4 + product_category_id: hg-11-6-22-2 output: product_category_id: - - '3177' + - '7006' - input: - product_category_id: hg-11-8-41-5 + product_category_id: hg-11-6-22-5 output: product_category_id: - - '8012' + - '7006' - input: - product_category_id: hg-11-8-41-5-1 + product_category_id: hg-11-6-22-7 output: product_category_id: - - '8012' + - '7006' - input: - product_category_id: hg-11-8-41-5-2 + product_category_id: hg-11-6-23 output: product_category_id: - - '8012' + - '8087' - input: - product_category_id: hg-11-8-41-6 + product_category_id: hg-11-6-23-3 output: product_category_id: - - '5157' + - '8087' - input: - product_category_id: hg-11-8-41-6-1 + product_category_id: hg-11-6-23-4 output: product_category_id: - - '5157' + - '8087' - input: - product_category_id: hg-11-8-41-6-2 + product_category_id: hg-11-6-23-5 output: product_category_id: - - '5157' + - '8087' - input: - product_category_id: hg-11-8-41-7 + product_category_id: hg-11-6-24 output: product_category_id: - - '3072' + - '3848' - input: - product_category_id: hg-11-8-41-7-1 + product_category_id: hg-11-6-24-2 output: product_category_id: - - '3072' + - '3848' - input: - product_category_id: hg-11-8-41-7-2 + product_category_id: hg-11-6-24-3 output: product_category_id: - - '3072' + - '3848' - input: - product_category_id: hg-11-8-41-8 + product_category_id: hg-11-6-25 output: product_category_id: - - '3061' + - '502989' - input: - product_category_id: hg-11-8-41-8-1 + product_category_id: hg-11-6-25-2 output: product_category_id: - - '3061' + - '502989' - input: - product_category_id: hg-11-8-41-8-2 + product_category_id: hg-11-6-25-4 output: product_category_id: - - '3061' + - '502989' - input: - product_category_id: hg-11-8-41-9 + product_category_id: hg-11-6-25-7 output: product_category_id: - - '3845' + - '502989' - input: - product_category_id: hg-11-8-42 + product_category_id: hg-11-6-26 output: product_category_id: - - '3256' + - '8051' - input: - product_category_id: hg-11-8-42-1 + product_category_id: hg-11-6-26-1 output: product_category_id: - - '3419' + - '8052' - input: - product_category_id: hg-11-8-42-2 + product_category_id: hg-11-6-26-2 output: product_category_id: - - '3086' + - '8053' - input: - product_category_id: hg-11-8-42-3 + product_category_id: hg-11-6-27 output: product_category_id: - - '3633' + - '7444' - input: - product_category_id: hg-11-8-43 + product_category_id: hg-11-6-27-1 output: product_category_id: - - '5251' + - '7444' - input: - product_category_id: hg-11-8-44 + product_category_id: hg-11-6-27-2 output: product_category_id: - - '3206' + - '7444' - input: - product_category_id: hg-11-8-45 + product_category_id: hg-11-6-27-4 output: product_category_id: - - '4765' + - '7444' - input: - product_category_id: hg-11-8-46 + product_category_id: hg-11-6-27-5 output: product_category_id: - - '3620' + - '7444' - input: - product_category_id: hg-11-8-47 + product_category_id: hg-11-6-28 output: product_category_id: - - '3294' + - '3523' - input: - product_category_id: hg-11-8-48 + product_category_id: hg-11-6-28-1 output: product_category_id: - - '3475' + - '3124' - input: - product_category_id: hg-11-8-48-1 + product_category_id: hg-11-6-29 output: product_category_id: - - '3475' + - '499996' - input: - product_category_id: hg-11-8-48-2 + product_category_id: hg-11-6-29-1 output: product_category_id: - - '3475' + - '499996' - input: - product_category_id: hg-11-8-49 + product_category_id: hg-11-6-29-2 output: product_category_id: - - '3248' + - '499996' - input: - product_category_id: hg-11-8-5 + product_category_id: hg-11-6-29-3 output: product_category_id: - - '7149' + - '499996' - input: - product_category_id: hg-11-8-50 + product_category_id: hg-11-6-30 output: product_category_id: - - '4530' + - '7118' - input: - product_category_id: hg-11-8-51 + product_category_id: hg-11-6-30-1 output: product_category_id: - - '3999' + - '7119' - input: - product_category_id: hg-11-8-52 + product_category_id: hg-11-6-31 output: product_category_id: - - '6526' + - '8106' - input: - product_category_id: hg-11-8-52-1 + product_category_id: hg-11-6-32 output: product_category_id: - - '6526' + - '5570' - input: - product_category_id: hg-11-8-52-2 + product_category_id: hg-11-6-32-2 output: product_category_id: - - '6526' + - '5570' - input: - product_category_id: hg-11-8-53 + product_category_id: hg-11-6-32-3 output: product_category_id: - - '4771' + - '5570' - input: - product_category_id: hg-11-8-54 + product_category_id: hg-11-7 output: product_category_id: - - '670' + - '730' - input: - product_category_id: hg-11-8-55 + product_category_id: hg-11-7-1 output: product_category_id: - - '6749' + - '5287' - input: - product_category_id: hg-11-8-55-1 + product_category_id: hg-11-7-2 output: product_category_id: - - '6749' + - '732' - input: - product_category_id: hg-11-8-55-2 + product_category_id: hg-11-7-3 output: product_category_id: - - '6749' + - '5090' - input: - product_category_id: hg-11-8-56 + product_category_id: hg-11-7-4 output: product_category_id: - - '4332' + - '736' - input: - product_category_id: hg-11-8-57 + product_category_id: hg-11-7-4-1 output: product_category_id: - - '4708' + - '1388' - input: - product_category_id: hg-11-8-58 + product_category_id: hg-11-7-4-2 output: product_category_id: - - '7365' + - '1647' - input: - product_category_id: hg-11-8-58-1 + product_category_id: hg-11-7-4-3 output: product_category_id: - - '7365' + - '2422' - input: - product_category_id: hg-11-8-58-4 + product_category_id: hg-11-7-4-4 output: product_category_id: - - '7365' + - '1557' - input: - product_category_id: hg-11-8-59 + product_category_id: hg-11-7-4-5 output: product_category_id: - - '3421' + - '2247' - input: - product_category_id: hg-11-8-6 + product_category_id: hg-11-7-4-6 output: product_category_id: - - '4630' + - '5286' - input: - product_category_id: hg-11-8-6-1 + product_category_id: hg-11-7-5 output: product_category_id: - - '4630' + - '679' - input: - product_category_id: hg-11-8-6-3 + product_category_id: hg-11-7-6 output: product_category_id: - - '4630' + - '3319' - input: - product_category_id: hg-11-8-60 + product_category_id: hg-11-7-7 output: product_category_id: - - '5109' + - '738' - input: - product_category_id: hg-11-8-61 + product_category_id: hg-11-7-8 output: product_category_id: - - '4705' + - '3181' - input: - product_category_id: hg-11-8-61-1 + product_category_id: hg-11-7-9 output: product_category_id: - - '4706' + - '680' - input: - product_category_id: hg-11-8-61-1-1 + product_category_id: hg-11-7-10 output: product_category_id: - - '4706' + - '7165' - input: - product_category_id: hg-11-8-61-1-2 + product_category_id: hg-11-7-11 output: product_category_id: - - '4706' + - '751' - input: - product_category_id: hg-11-8-61-2 + product_category_id: hg-11-7-12 output: product_category_id: - - '4707' + - '4421' - input: - product_category_id: hg-11-8-62 + product_category_id: hg-11-7-12-1 output: product_category_id: - - '3467' + - '4421' - input: - product_category_id: hg-11-8-63 + product_category_id: hg-11-7-12-2 output: product_category_id: - - '6497' + - '4421' - input: - product_category_id: hg-11-8-63-1 + product_category_id: hg-11-7-13 output: product_category_id: - - '6497' + - '4720' - input: - product_category_id: hg-11-8-63-2 + product_category_id: hg-11-7-14 output: product_category_id: - - '6497' + - '4532' - input: - product_category_id: hg-11-8-64 + product_category_id: hg-11-7-14-1 output: product_category_id: - - '3914' + - '739' - input: - product_category_id: hg-11-8-65 + product_category_id: hg-11-7-14-2 output: product_category_id: - - '3175' + - '760' - input: - product_category_id: hg-11-8-65-1 + product_category_id: hg-11-7-14-3 output: product_category_id: - - '3202' + - '757' - input: - product_category_id: hg-11-8-65-2 + product_category_id: hg-11-7-14-4 output: product_category_id: - - '3708' + - '737' - input: - product_category_id: hg-11-8-65-3 + product_category_id: hg-11-7-14-5 output: product_category_id: - - '3258' + - '6523' - input: - product_category_id: hg-11-8-65-4 + product_category_id: hg-11-7-14-6 output: product_category_id: - - '502966' + - '6279' - input: - product_category_id: hg-11-8-65-4-1 + product_category_id: hg-11-7-15 output: product_category_id: - - '502966' + - '743' - input: - product_category_id: hg-11-8-65-4-2 + product_category_id: hg-11-7-16 output: product_category_id: - - '502966' + - '744' - input: - product_category_id: hg-11-8-66 + product_category_id: hg-11-7-16-1 output: product_category_id: - - '6746' + - '744' - input: - product_category_id: hg-11-8-67 + product_category_id: hg-11-7-16-2 output: product_category_id: - - '5080' + - '744' - input: - product_category_id: hg-11-8-67-1 + product_category_id: hg-11-7-17 output: product_category_id: - - '5080' + - '505666' - input: - product_category_id: hg-11-8-67-2 + product_category_id: hg-11-7-17-1 output: product_category_id: - - '5080' + - '505666' - input: - product_category_id: hg-11-8-68 + product_category_id: hg-11-7-17-2 output: product_category_id: - - '6388' + - '505666' - input: - product_category_id: hg-11-8-69 + product_category_id: hg-11-7-18 output: product_category_id: - - '3196' + - '687' - input: - product_category_id: hg-11-8-7 + product_category_id: hg-11-7-19 output: product_category_id: - - '6408' + - '5103' - input: - product_category_id: hg-11-8-70 + product_category_id: hg-11-7-19-1 output: product_category_id: - - '4788' + - '6548' - input: - product_category_id: hg-11-8-70-5 + product_category_id: hg-11-7-19-2 output: product_category_id: - - '4788' + - '5349' - input: - product_category_id: hg-11-8-71 + product_category_id: hg-11-7-19-3 output: product_category_id: - - '4762' + - '504633' - input: - product_category_id: hg-11-8-72 + product_category_id: hg-11-7-19-4 output: product_category_id: - - '4334' + - '4292' - input: - product_category_id: hg-11-8-73 + product_category_id: hg-11-7-20 output: product_category_id: - - '6974' + - '681' - input: - product_category_id: hg-11-8-74 + product_category_id: hg-11-7-21 output: product_category_id: - - '7247' + - '5156' - input: - product_category_id: hg-11-8-75 + product_category_id: hg-11-7-22 output: product_category_id: - - '4559' + - '610' - input: - product_category_id: hg-11-8-76 + product_category_id: hg-11-7-23 output: product_category_id: - - '4005' + - '6524' - input: - product_category_id: hg-11-8-77 + product_category_id: hg-11-7-24 output: product_category_id: - - '3597' + - '6543' - input: - product_category_id: hg-11-8-8 + product_category_id: hg-11-7-25 output: product_category_id: - - '4247' + - '747' - input: - product_category_id: hg-11-8-9 + product_category_id: hg-11-7-26 output: product_category_id: - - '733' + - '748' - input: - product_category_id: hg-11-9 + product_category_id: hg-11-7-27 output: product_category_id: - - '8161' + - '749' - input: - product_category_id: hg-12 + product_category_id: hg-11-7-27-1 output: product_category_id: - - '689' + - '749' - input: - product_category_id: hg-12-1 + product_category_id: hg-11-7-27-2 output: product_category_id: - - '2962' + - '749' - input: - product_category_id: hg-12-1-1 + product_category_id: hg-11-7-28 output: product_category_id: - - '4085' + - '4161' - input: - product_category_id: hg-12-1-1-1 + product_category_id: hg-11-7-29 output: product_category_id: - - '690' + - '750' - input: - product_category_id: hg-12-1-1-2 + product_category_id: hg-11-7-30 output: product_category_id: - - '6840' + - '752' - input: - product_category_id: hg-12-1-1-3 + product_category_id: hg-11-7-30-1 output: product_category_id: - - '6436' + - '752' - input: - product_category_id: hg-12-1-10 + product_category_id: hg-11-7-30-2 output: product_category_id: - - '6381' + - '752' - input: - product_category_id: hg-12-1-11 + product_category_id: hg-11-7-30-3 output: product_category_id: - - '6413' + - '752' - input: - product_category_id: hg-12-1-11-1 + product_category_id: hg-11-7-30-4 output: product_category_id: - - '6422' + - '752' - input: - product_category_id: hg-12-1-11-1-1 + product_category_id: hg-11-7-30-5 output: product_category_id: - - '6422' + - '752' - input: - product_category_id: hg-12-1-11-1-2 + product_category_id: hg-11-7-31 output: product_category_id: - - '6422' + - '753' - input: - product_category_id: hg-12-1-11-2 + product_category_id: hg-11-7-32 output: product_category_id: - - '6421' + - '3526' - input: - product_category_id: hg-12-1-12 + product_category_id: hg-11-7-33 output: product_category_id: - - '2988' + - '4482' - input: - product_category_id: hg-12-1-12-1 + product_category_id: hg-11-7-34 output: product_category_id: - - '2988' + - '2985' - input: - product_category_id: hg-12-1-12-2 + product_category_id: hg-11-7-35 output: product_category_id: - - '2988' + - '683' - input: - product_category_id: hg-12-1-12-3 + product_category_id: hg-11-7-36 output: product_category_id: - - '2988' + - '755' - input: - product_category_id: hg-12-1-13 + product_category_id: hg-11-7-37 output: product_category_id: - - '499894' + - '756' - input: - product_category_id: hg-12-1-13-1 + product_category_id: hg-11-7-38 output: product_category_id: - - '499894' + - '1015' - input: - product_category_id: hg-12-1-13-2 + product_category_id: hg-11-7-39 output: product_category_id: - - '499894' + - '684' - input: - product_category_id: hg-12-1-14 + product_category_id: hg-11-7-40 output: product_category_id: - - '6428' + - '685' - input: - product_category_id: hg-12-1-15 + product_category_id: hg-11-7-41 output: product_category_id: - - '499962' + - '686' - input: - product_category_id: hg-12-1-16 + product_category_id: hg-11-7-42 output: product_category_id: - - '721' + - '4495' - input: - product_category_id: hg-12-1-16-1 + product_category_id: hg-11-7-43 output: product_category_id: - - '721' + - '5577' - input: - product_category_id: hg-12-1-16-2 + product_category_id: hg-11-7-44 output: product_category_id: - - '721' + - '5057' - input: - product_category_id: hg-12-1-17 + product_category_id: hg-11-7-45 output: product_category_id: - - '6834' + - '4528' - input: - product_category_id: hg-12-1-18 + product_category_id: hg-11-7-46 output: product_category_id: - - '1794' + - '5289' - input: - product_category_id: hg-12-1-18-1 + product_category_id: hg-11-7-46-1 output: product_category_id: - - '543677' + - '761' - input: - product_category_id: hg-12-1-18-2 + product_category_id: hg-11-7-46-2 output: product_category_id: - - '543678' + - '6819' - input: - product_category_id: hg-12-1-2 + product_category_id: hg-11-7-46-3 output: product_category_id: - - '691' + - '5318' - input: - product_category_id: hg-12-1-3 + product_category_id: hg-11-7-46-4 output: product_category_id: - - '113' + - '6278' - input: - product_category_id: hg-12-1-4 + product_category_id: hg-11-7-46-5 output: product_category_id: - - '500033' + - '5291' - input: - product_category_id: hg-12-1-5 + product_category_id: hg-11-7-46-6 output: product_category_id: - - '5632' + - '6516' - input: - product_category_id: hg-12-1-5-1 + product_category_id: hg-11-7-46-7 output: product_category_id: - - '503756' + - '759' - input: - product_category_id: hg-12-1-5-1-1 + product_category_id: hg-11-7-46-8 output: product_category_id: - - '503756' + - '762' - input: - product_category_id: hg-12-1-5-1-2 + product_category_id: hg-11-7-46-9 output: product_category_id: - - '503756' + - '5292' - input: - product_category_id: hg-12-1-5-1-3 + product_category_id: hg-11-7-46-10 output: product_category_id: - - '503756' + - '764' - input: - product_category_id: hg-12-1-5-2 + product_category_id: hg-11-7-47 output: product_category_id: - - '5633' + - '688' - input: - product_category_id: hg-12-1-5-3 + product_category_id: hg-11-7-48 output: product_category_id: - - '7184' + - '763' - input: - product_category_id: hg-12-1-6 + product_category_id: hg-11-7-49 output: product_category_id: - - '505326' + - '3293' - input: - product_category_id: hg-12-1-6-1 + product_category_id: hg-11-7-50 output: product_category_id: - - '505322' + - '765' - input: - product_category_id: hg-12-1-6-2 + product_category_id: hg-11-7-51 output: product_category_id: - - '505321' + - '4539' - input: - product_category_id: hg-12-1-6-3 + product_category_id: hg-11-7-52 output: product_category_id: - - '4972' + - '766' - input: - product_category_id: hg-12-1-6-3-1 + product_category_id: hg-11-8 output: product_category_id: - - '4972' + - '668' - input: - product_category_id: hg-12-1-6-3-2 + product_category_id: hg-11-8-1 output: product_category_id: - - '4972' + - '639' - input: - product_category_id: hg-12-1-6-3-3 + product_category_id: hg-11-8-2 output: product_category_id: - - '4972' + - '3768' - input: - product_category_id: hg-12-1-6-3-4 + product_category_id: hg-11-8-3 output: product_category_id: - - '4972' + - '3347' - input: - product_category_id: hg-12-1-6-3-5 + product_category_id: hg-11-8-4 output: product_category_id: - - '4972' + - '3430' - input: - product_category_id: hg-12-1-7 + product_category_id: hg-11-8-5 output: product_category_id: - - '3173' + - '7149' - input: - product_category_id: hg-12-1-7-1 + product_category_id: hg-11-8-6 output: product_category_id: - - '7537' + - '4630' - input: - product_category_id: hg-12-1-7-1-2 + product_category_id: hg-11-8-6-1 output: product_category_id: - - '7537' + - '4630' - input: - product_category_id: hg-12-1-7-1-3 + product_category_id: hg-11-8-6-3 output: product_category_id: - - '7537' + - '4630' - input: - product_category_id: hg-12-1-7-10 + product_category_id: hg-11-8-7 output: product_category_id: - - '3388' + - '6408' - input: - product_category_id: hg-12-1-7-11 + product_category_id: hg-11-8-8 output: product_category_id: - - '2147' + - '4247' - input: - product_category_id: hg-12-1-7-11-1 + product_category_id: hg-11-8-9 output: product_category_id: - - '2147' + - '733' - input: - product_category_id: hg-12-1-7-11-2 + product_category_id: hg-11-8-10 output: product_category_id: - - '2147' + - '5078' - input: - product_category_id: hg-12-1-7-12 + product_category_id: hg-11-8-11 output: product_category_id: - - '3828' + - '6522' - input: - product_category_id: hg-12-1-7-13 + product_category_id: hg-11-8-12 output: product_category_id: - - '3616' + - '653' - input: - product_category_id: hg-12-1-7-2 + product_category_id: hg-11-8-12-1 output: product_category_id: - - '4000' + - '653' - input: - product_category_id: hg-12-1-7-2-1 + product_category_id: hg-11-8-12-2 output: product_category_id: - - '4000' + - '653' - input: - product_category_id: hg-12-1-7-2-2 + product_category_id: hg-11-8-13 output: product_category_id: - - '4000' + - '4777' - input: - product_category_id: hg-12-1-7-3 + product_category_id: hg-11-8-14 output: product_category_id: - - '3071' + - '3850' - input: - product_category_id: hg-12-1-7-4 + product_category_id: hg-11-8-15 output: product_category_id: - - '505292' + - '6342' - input: - product_category_id: hg-12-1-7-4-1 + product_category_id: hg-11-8-16 output: product_category_id: - - '505292' + - '7331' - input: - product_category_id: hg-12-1-7-4-2 + product_category_id: hg-11-8-16-1 output: product_category_id: - - '505292' + - '7331' - input: - product_category_id: hg-12-1-7-5 + product_category_id: hg-11-8-16-5 output: product_category_id: - - '3644' + - '7331' - input: - product_category_id: hg-12-1-7-6 + product_category_id: hg-11-8-16-6 output: product_category_id: - - '1967' + - '7331' - input: - product_category_id: hg-12-1-7-7 + product_category_id: hg-11-8-17 output: product_category_id: - - '499922' + - '3091' - input: - product_category_id: hg-12-1-7-7-1 + product_category_id: hg-11-8-17-1 output: product_category_id: - - '499922' + - '3091' - input: - product_category_id: hg-12-1-7-7-2 + product_category_id: hg-11-8-17-2 output: product_category_id: - - '499922' + - '3091' - input: - product_category_id: hg-12-1-7-8 + product_category_id: hg-11-8-17-3 output: product_category_id: - - '6967' + - '3091' - input: - product_category_id: hg-12-1-7-9 + product_category_id: hg-11-8-17-4 output: product_category_id: - - '3841' + - '3091' - input: - product_category_id: hg-12-1-8 + product_category_id: hg-11-8-17-5 output: product_category_id: - - '693' + - '3091' - input: - product_category_id: hg-12-1-9 + product_category_id: hg-11-8-18 output: product_category_id: - - '3103' + - '3713' - input: - product_category_id: hg-12-2 + product_category_id: hg-11-8-19 output: product_category_id: - - '2918' + - '5928' - input: - product_category_id: hg-12-2-1 + product_category_id: hg-11-8-20 output: product_category_id: - - '499908' + - '3835' - input: - product_category_id: hg-12-2-1-1 + product_category_id: hg-11-8-21 output: product_category_id: - - '499908' + - '666' - input: - product_category_id: hg-12-2-1-10 + product_category_id: hg-11-8-22 output: product_category_id: - - '499908' + - '3268' - input: - product_category_id: hg-12-2-1-11 + product_category_id: hg-11-8-22-1 output: product_category_id: - - '499908' + - '3268' - input: - product_category_id: hg-12-2-1-12 + product_category_id: hg-11-8-22-2 output: product_category_id: - - '499908' + - '3268' - input: - product_category_id: hg-12-2-1-13 + product_category_id: hg-11-8-23 output: product_category_id: - - '499908' + - '6723' - input: - product_category_id: hg-12-2-1-14 + product_category_id: hg-11-8-24 output: product_category_id: - - '499908' + - '6411' - input: - product_category_id: hg-12-2-1-6 + product_category_id: hg-11-8-24-1 output: product_category_id: - - '499908' + - '6412' - input: - product_category_id: hg-12-2-1-7 + product_category_id: hg-11-8-25 output: product_category_id: - - '499908' + - '741' - input: - product_category_id: hg-12-2-1-8 + product_category_id: hg-11-8-26 output: product_category_id: - - '499908' + - '5370' - input: - product_category_id: hg-12-2-1-9 + product_category_id: hg-11-8-27 output: product_category_id: - - '499908' + - '505316' - input: - product_category_id: hg-12-2-10 + product_category_id: hg-11-8-28 output: product_category_id: - - '718' + - '3381' - input: - product_category_id: hg-12-2-2 + product_category_id: hg-11-8-28-1 output: product_category_id: - - '499907' + - '3586' - input: - product_category_id: hg-12-2-3 + product_category_id: hg-11-8-28-1-1 output: product_category_id: - - '6737' + - '3586' - input: - product_category_id: hg-12-2-3-1 + product_category_id: hg-11-8-28-1-2 output: product_category_id: - - '6737' + - '3586' - input: - product_category_id: hg-12-2-3-2 + product_category_id: hg-11-8-28-2 output: product_category_id: - - '6737' + - '3685' - input: - product_category_id: hg-12-2-4 + product_category_id: hg-11-8-28-2-1 output: product_category_id: - - '717' + - '4214' - input: - product_category_id: hg-12-2-5 + product_category_id: hg-11-8-28-2-2 output: product_category_id: - - '5910' + - '3685' - input: - product_category_id: hg-12-2-5-1 + product_category_id: hg-11-8-28-2-3 output: product_category_id: - - '5911' + - '3685' - input: - product_category_id: hg-12-2-5-2 + product_category_id: hg-11-8-28-2-4 output: product_category_id: - - '5913' + - '3685' - input: - product_category_id: hg-12-2-5-3 + product_category_id: hg-11-8-28-2-5 output: product_category_id: - - '5912' + - '3685' - input: - product_category_id: hg-12-2-6 + product_category_id: hg-11-8-28-2-6 output: product_category_id: - - '2613' + - '3685' - input: - product_category_id: hg-12-2-6-1 + product_category_id: hg-11-8-29 output: product_category_id: - - '716' + - '3723' - input: - product_category_id: hg-12-2-6-1-1 + product_category_id: hg-11-8-30 output: product_category_id: - - '716' + - '3156' - input: - product_category_id: hg-12-2-6-1-2 + product_category_id: hg-11-8-30-1 output: product_category_id: - - '716' + - '3156' - input: - product_category_id: hg-12-2-6-2 + product_category_id: hg-11-8-30-2 output: product_category_id: - - '6105' + - '3156' - input: - product_category_id: hg-12-2-6-2-1 + product_category_id: hg-11-8-31 output: product_category_id: - - '6107' + - '3521' - input: - product_category_id: hg-12-2-6-2-2 + product_category_id: hg-11-8-31-1 output: product_category_id: - - '6106' + - '3521' - input: - product_category_id: hg-12-2-6-2-3 + product_category_id: hg-11-8-31-2 output: product_category_id: - - '6108' + - '3521' - input: - product_category_id: hg-12-2-6-2-4 + product_category_id: hg-11-8-32 output: product_category_id: - - '7423' + - '7329' - input: - product_category_id: hg-12-2-6-2-5 + product_category_id: hg-11-8-33 output: product_category_id: - - '7424' + - '6554' - input: - product_category_id: hg-12-2-6-3 + product_category_id: hg-11-8-33-1 output: product_category_id: - - '703' + - '6554' - input: - product_category_id: hg-12-2-6-3-1 + product_category_id: hg-11-8-33-2 output: product_category_id: - - '703' + - '6554' - input: - product_category_id: hg-12-2-6-3-2 + product_category_id: hg-11-8-34 output: product_category_id: - - '703' + - '503005' - input: - product_category_id: hg-12-2-6-3-3 + product_category_id: hg-11-8-35 output: product_category_id: - - '703' + - '3385' - input: - product_category_id: hg-12-2-6-3-4 + product_category_id: hg-11-8-36 output: product_category_id: - - '703' + - '6787' - input: - product_category_id: hg-12-2-6-4 + product_category_id: hg-11-8-37 output: product_category_id: - - '700' + - '4746' - input: - product_category_id: hg-12-2-6-5 + product_category_id: hg-11-8-38 output: product_category_id: - - '720' + - '7485' - input: - product_category_id: hg-12-2-6-5-1 + product_category_id: hg-11-8-39 output: product_category_id: - - '720' + - '665' - input: - product_category_id: hg-12-2-6-5-2 + product_category_id: hg-11-8-39-1 output: product_category_id: - - '720' + - '665' - input: - product_category_id: hg-12-2-6-5-3 + product_category_id: hg-11-8-39-2 output: product_category_id: - - '720' + - '665' - input: - product_category_id: hg-12-2-7 + product_category_id: hg-11-8-39-3 output: product_category_id: - - '6751' + - '665' - input: - product_category_id: hg-12-2-7-1 + product_category_id: hg-11-8-39-4 output: product_category_id: - - '7108' + - '665' - input: - product_category_id: hg-12-2-7-2 + product_category_id: hg-11-8-39-5 output: product_category_id: - - '5493' + - '665' - input: - product_category_id: hg-12-2-7-3 + product_category_id: hg-11-8-40 output: product_category_id: - - '7107' + - '8006' - input: - product_category_id: hg-12-2-7-4 + product_category_id: hg-11-8-41 output: product_category_id: - - '499948' + - '2948' - input: - product_category_id: hg-12-2-7-5 + product_category_id: hg-11-8-41-1 output: product_category_id: - - '8020' + - '6480' - input: - product_category_id: hg-12-2-8 + product_category_id: hg-11-8-41-2 output: product_category_id: - - '719' + - '3479' - input: - product_category_id: hg-12-2-8-1 + product_category_id: hg-11-8-41-3 output: product_category_id: - - '719' + - '6487' - input: - product_category_id: hg-12-2-8-2 + product_category_id: hg-11-8-41-4 output: product_category_id: - - '719' + - '3177' - input: - product_category_id: hg-12-2-9 + product_category_id: hg-11-8-41-5 output: product_category_id: - - '499955' + - '8012' - input: - product_category_id: hg-12-2-9-1 + product_category_id: hg-11-8-41-5-1 output: product_category_id: - - '499955' + - '8012' - input: - product_category_id: hg-12-2-9-2 + product_category_id: hg-11-8-41-5-2 output: product_category_id: - - '499955' + - '8012' - input: - product_category_id: hg-12-2-9-3 + product_category_id: hg-11-8-41-6 output: product_category_id: - - '499955' + - '5157' - input: - product_category_id: hg-12-2-9-4 + product_category_id: hg-11-8-41-6-1 output: product_category_id: - - '499955' + - '5157' - input: - product_category_id: hg-12-2-9-5 + product_category_id: hg-11-8-41-6-2 output: product_category_id: - - '499955' + - '5157' - input: - product_category_id: hg-12-3 + product_category_id: hg-11-8-41-7 output: product_category_id: - - '3798' + - '3072' - input: - product_category_id: hg-12-3-1 + product_category_id: hg-11-8-41-7-1 output: product_category_id: - - '3610' + - '3072' - input: - product_category_id: hg-12-3-10 + product_category_id: hg-11-8-41-7-2 output: product_category_id: - - '500016' + - '3072' - input: - product_category_id: hg-12-3-11 + product_category_id: hg-11-8-41-8 output: product_category_id: - - '2204' + - '3061' - input: - product_category_id: hg-12-3-11-1 + product_category_id: hg-11-8-41-8-1 output: product_category_id: - - '2204' + - '3061' - input: - product_category_id: hg-12-3-11-2 + product_category_id: hg-11-8-41-8-2 output: product_category_id: - - '2204' + - '3061' - input: - product_category_id: hg-12-3-12 + product_category_id: hg-11-8-41-9 output: product_category_id: - - '1226' + - '3845' - input: - product_category_id: hg-12-3-13 + product_category_id: hg-11-8-41-10 output: product_category_id: - - '1541' + - '2344' - input: - product_category_id: hg-12-3-14 + product_category_id: hg-11-8-41-11 output: product_category_id: - - '5866' + - '5059' - input: - product_category_id: hg-12-3-15 + product_category_id: hg-11-8-41-11-1 output: product_category_id: - - '1223' + - '5059' - input: - product_category_id: hg-12-3-2 + product_category_id: hg-11-8-41-11-2 output: product_category_id: - - '2218' + - '5059' - input: - product_category_id: hg-12-3-3 + product_category_id: hg-11-8-41-12 output: product_category_id: - - '3120' + - '6415' - input: - product_category_id: hg-12-3-4 + product_category_id: hg-11-8-41-13 output: product_category_id: - - '500034' + - '4322' - input: - product_category_id: hg-12-3-4-1 + product_category_id: hg-11-8-41-13-1 output: product_category_id: - - '500034' + - '4322' - input: - product_category_id: hg-12-3-4-2 + product_category_id: hg-11-8-41-13-2 output: product_category_id: - - '500034' + - '4322' - input: - product_category_id: hg-12-3-5 + product_category_id: hg-11-8-41-14 output: product_category_id: - - '694' + - '3831' - input: - product_category_id: hg-12-3-5-1 + product_category_id: hg-11-8-41-14-1 output: product_category_id: - - '3311' + - '3831' - input: - product_category_id: hg-12-3-5-2 + product_category_id: hg-11-8-41-14-2 output: product_category_id: - - '6788' + - '3831' - input: - product_category_id: hg-12-3-5-3 + product_category_id: hg-11-8-42 output: product_category_id: - - '6258' + - '3256' - input: - product_category_id: hg-12-3-5-4 + product_category_id: hg-11-8-42-1 output: product_category_id: - - '3730' + - '3419' - input: - product_category_id: hg-12-3-6 + product_category_id: hg-11-8-42-2 output: product_category_id: - - '6789' + - '3086' - input: - product_category_id: hg-12-3-7 + product_category_id: hg-11-8-42-3 output: product_category_id: - - '3340' + - '3633' - input: - product_category_id: hg-12-3-8 + product_category_id: hg-11-8-43 output: product_category_id: - - '7332' + - '5251' - input: - product_category_id: hg-12-3-9 + product_category_id: hg-11-8-44 output: product_category_id: - - '7245' + - '3206' - input: - product_category_id: hg-12-4 + product_category_id: hg-11-8-45 output: product_category_id: - - '4564' + - '4765' - input: - product_category_id: hg-12-4-1 + product_category_id: hg-11-8-46 output: product_category_id: - - '4565' + - '3620' - input: - product_category_id: hg-12-4-1-1 + product_category_id: hg-11-8-47 output: product_category_id: - - '4647' + - '3294' - input: - product_category_id: hg-12-4-1-2 + product_category_id: hg-11-8-48 output: product_category_id: - - '4646' + - '3475' - input: - product_category_id: hg-12-4-10 + product_category_id: hg-11-8-48-1 output: product_category_id: - - '5867' + - '3475' - input: - product_category_id: hg-12-4-10-1 + product_category_id: hg-11-8-48-2 output: product_category_id: - - '499880' + - '3475' - input: - product_category_id: hg-12-4-10-1-1 + product_category_id: hg-11-8-49 output: product_category_id: - - '499880' + - '3248' - input: - product_category_id: hg-12-4-10-1-2 + product_category_id: hg-11-8-50 output: product_category_id: - - '499880' + - '4530' - input: - product_category_id: hg-12-4-10-1-5 + product_category_id: hg-11-8-51 output: product_category_id: - - '499880' + - '3999' - input: - product_category_id: hg-12-4-10-2 + product_category_id: hg-11-8-52 output: product_category_id: - - '499881' + - '6526' - input: - product_category_id: hg-12-4-11 + product_category_id: hg-11-8-52-1 output: product_category_id: - - '7169' + - '6526' - input: - product_category_id: hg-12-4-11-1 + product_category_id: hg-11-8-52-2 output: product_category_id: - - '7170' + - '6526' - input: - product_category_id: hg-12-4-11-1-1 + product_category_id: hg-11-8-53 output: product_category_id: - - '7170' + - '4771' - input: - product_category_id: hg-12-4-11-1-2 + product_category_id: hg-11-8-54 output: product_category_id: - - '7170' + - '670' - input: - product_category_id: hg-12-4-11-2 + product_category_id: hg-11-8-55 output: product_category_id: - - '8034' + - '6749' - input: - product_category_id: hg-12-4-2 + product_category_id: hg-11-8-55-1 output: product_category_id: - - '7563' + - '6749' - input: - product_category_id: hg-12-4-2-1 + product_category_id: hg-11-8-55-2 output: product_category_id: - - '7563' + - '6749' - input: - product_category_id: hg-12-4-2-2 + product_category_id: hg-11-8-56 output: product_category_id: - - '7563' + - '4332' - input: - product_category_id: hg-12-4-2-3 + product_category_id: hg-11-8-57 output: product_category_id: - - '7563' + - '4708' - input: - product_category_id: hg-12-4-2-4 + product_category_id: hg-11-8-58 output: product_category_id: - - '7563' + - '7365' - input: - product_category_id: hg-12-4-2-5 + product_category_id: hg-11-8-58-1 output: product_category_id: - - '7563' + - '7365' - input: - product_category_id: hg-12-4-3 + product_category_id: hg-11-8-58-4 output: product_category_id: - - '7265' + - '7365' - input: - product_category_id: hg-12-4-3-3 + product_category_id: hg-11-8-59 output: product_category_id: - - '7265' + - '3421' - input: - product_category_id: hg-12-4-3-4 + product_category_id: hg-11-8-60 output: product_category_id: - - '7265' + - '5109' - input: - product_category_id: hg-12-4-4 + product_category_id: hg-11-8-61 output: product_category_id: - - '4566' + - '4705' - input: - product_category_id: hg-12-4-4-1 + product_category_id: hg-11-8-61-1 output: product_category_id: - - '6542' + - '4706' - input: - product_category_id: hg-12-4-4-1-2 + product_category_id: hg-11-8-61-1-1 output: product_category_id: - - '6542' + - '4706' - input: - product_category_id: hg-12-4-4-1-3 + product_category_id: hg-11-8-61-1-2 output: product_category_id: - - '6542' + - '4706' - input: - product_category_id: hg-12-4-4-1-4 + product_category_id: hg-11-8-61-2 output: product_category_id: - - '6542' + - '4707' - input: - product_category_id: hg-12-4-4-10 + product_category_id: hg-11-8-62 output: product_category_id: - - '6095' + - '3467' - input: - product_category_id: hg-12-4-4-11 + product_category_id: hg-11-8-63 output: product_category_id: - - '6094' + - '6497' - input: - product_category_id: hg-12-4-4-12 + product_category_id: hg-11-8-63-1 output: product_category_id: - - '499921' + - '6497' - input: - product_category_id: hg-12-4-4-13 + product_category_id: hg-11-8-63-2 output: product_category_id: - - '6541' + - '6497' - input: - product_category_id: hg-12-4-4-2 + product_category_id: hg-11-8-64 output: product_category_id: - - '4645' + - '3914' - input: - product_category_id: hg-12-4-4-3 + product_category_id: hg-11-8-65 output: product_category_id: - - '4643' + - '3175' - input: - product_category_id: hg-12-4-4-4 + product_category_id: hg-11-8-65-1 output: product_category_id: - - '4641' + - '3202' - input: - product_category_id: hg-12-4-4-5 + product_category_id: hg-11-8-65-2 output: product_category_id: - - '4642' + - '3708' - input: - product_category_id: hg-12-4-4-6 + product_category_id: hg-11-8-65-3 output: product_category_id: - - '499923' + - '3258' - input: - product_category_id: hg-12-4-4-7 + product_category_id: hg-11-8-65-4 output: product_category_id: - - '499960' + - '502966' - input: - product_category_id: hg-12-4-4-7-1 + product_category_id: hg-11-8-65-4-1 output: product_category_id: - - '499960' + - '502966' - input: - product_category_id: hg-12-4-4-7-2 + product_category_id: hg-11-8-65-4-2 output: product_category_id: - - '499960' + - '502966' - input: - product_category_id: hg-12-4-4-8 + product_category_id: hg-11-8-66 output: product_category_id: - - '4644' + - '6746' - input: - product_category_id: hg-12-4-4-8-1 + product_category_id: hg-11-8-67 output: product_category_id: - - '4644' + - '5080' - input: - product_category_id: hg-12-4-4-8-2 + product_category_id: hg-11-8-67-1 output: product_category_id: - - '4644' + - '5080' - input: - product_category_id: hg-12-4-4-9 + product_category_id: hg-11-8-67-2 output: product_category_id: - - '499872' + - '5080' - input: - product_category_id: hg-12-4-5 + product_category_id: hg-11-8-68 output: product_category_id: - - '7168' + - '6388' - input: - product_category_id: hg-12-4-5-1 + product_category_id: hg-11-8-69 output: product_category_id: - - '7171' + - '3196' - input: - product_category_id: hg-12-4-6 + product_category_id: hg-11-8-70 output: product_category_id: - - '8485' + - '4788' - input: - product_category_id: hg-12-4-6-1 + product_category_id: hg-11-8-70-5 output: product_category_id: - - '7564' + - '4788' - input: - product_category_id: hg-12-4-6-2 + product_category_id: hg-11-8-71 output: product_category_id: - - '8487' + - '4762' - input: - product_category_id: hg-12-4-6-3 + product_category_id: hg-11-8-72 output: product_category_id: - - '7334' + - '4334' - input: - product_category_id: hg-12-4-6-4 + product_category_id: hg-11-8-73 output: product_category_id: - - '8489' + - '6974' - input: - product_category_id: hg-12-4-6-5 + product_category_id: hg-11-8-74 output: product_category_id: - - '8488' + - '7247' - input: - product_category_id: hg-12-4-6-6 + product_category_id: hg-11-8-75 output: product_category_id: - - '7335' + - '4559' - input: - product_category_id: hg-12-4-7 + product_category_id: hg-11-8-76 output: product_category_id: - - '7333' + - '4005' - input: - product_category_id: hg-12-4-8 + product_category_id: hg-11-8-77 output: product_category_id: - - '6328' + - '3597' - input: - product_category_id: hg-12-4-8-13 + product_category_id: hg-11-9 output: product_category_id: - - '6328' + - '8161' - input: - product_category_id: hg-12-4-8-15 + product_category_id: hg-11-10 output: product_category_id: - - '6328' + - '672' - input: - product_category_id: hg-12-4-8-17 + product_category_id: hg-11-10-1 output: product_category_id: - - '6328' + - '6740' - input: - product_category_id: hg-12-4-8-18 + product_category_id: hg-11-10-1-1 output: product_category_id: - - '6328' + - '6740' - input: - product_category_id: hg-12-4-8-20 + product_category_id: hg-11-10-1-2 output: product_category_id: - - '6328' + - '6740' - input: - product_category_id: hg-12-4-8-21 + product_category_id: hg-11-10-2 output: product_category_id: - - '6328' + - '652' - input: - product_category_id: hg-12-4-8-22 + product_category_id: hg-11-10-2-1 output: product_category_id: - - '6328' + - '652' - input: - product_category_id: hg-12-4-8-23 + product_category_id: hg-11-10-2-2 output: product_category_id: - - '6328' + - '652' - input: - product_category_id: hg-12-4-8-24 + product_category_id: hg-11-10-3 output: product_category_id: - - '6328' + - '672' - input: - product_category_id: hg-12-4-8-29 + product_category_id: hg-11-10-3-1 output: product_category_id: - - '6328' + - '672' - input: - product_category_id: hg-12-4-8-4 + product_category_id: hg-11-10-3-2 output: product_category_id: - - '6328' + - '676' - input: - product_category_id: hg-12-4-8-5 + product_category_id: hg-11-10-3-3 output: product_category_id: - - '6328' + - '676' - input: - product_category_id: hg-12-4-8-7 + product_category_id: hg-11-10-3-4 output: product_category_id: - - '6328' + - '676' - input: - product_category_id: hg-12-4-9 + product_category_id: hg-11-10-4 output: product_category_id: - - '4567' + - '673' - input: - product_category_id: hg-12-4-9-1 + product_category_id: hg-11-10-4-1 output: product_category_id: - - '4567' + - '3498' - input: - product_category_id: hg-12-5 + product_category_id: hg-11-10-4-2 output: product_category_id: - - '5362' + - '5537' - input: - product_category_id: hg-12-5-1 + product_category_id: hg-11-10-4-3 output: product_category_id: - - '5364' + - '3553' - input: - product_category_id: hg-12-5-1-1 + product_category_id: hg-11-10-5 output: product_category_id: - - '5364' + - '674' - input: - product_category_id: hg-12-5-1-2 + product_category_id: hg-11-10-5-1 output: product_category_id: - - '5364' + - '7568' - input: - product_category_id: hg-12-5-2 + product_category_id: hg-11-10-5-2 output: product_category_id: - - '5363' + - '6049' - input: - product_category_id: hg-12-6 + product_category_id: hg-11-10-5-3 output: product_category_id: - - '3568' + - '6051' - input: - product_category_id: hg-12-6-1 + product_category_id: hg-11-10-5-4 output: product_category_id: - - '4718' + - '6958' - input: - product_category_id: hg-12-6-1-1 + product_category_id: hg-11-10-5-5 output: product_category_id: - - '4718' + - '2169' - input: - product_category_id: hg-12-6-1-2 + product_category_id: hg-11-10-5-6 output: product_category_id: - - '4718' + - '2694' - input: - product_category_id: hg-12-6-2 + product_category_id: hg-11-10-5-7 output: product_category_id: - - '4201' + - '2712' - input: - product_category_id: hg-12-6-3 + product_category_id: hg-11-10-5-8 output: product_category_id: - - '2313' + - '2951' - input: - product_category_id: hg-12-6-4 + product_category_id: hg-11-10-6 output: product_category_id: - - '3780' + - '675' - input: - product_category_id: hg-12-6-4-1 + product_category_id: hg-11-10-6-1 output: product_category_id: - - '1302' + - '675' - input: - product_category_id: hg-12-6-4-2 + product_category_id: hg-11-10-6-2 output: product_category_id: - - '3491' + - '6439' - input: - product_category_id: hg-12-6-5 + product_category_id: hg-11-10-6-2-1 output: product_category_id: - - '7561' + - '6439' - input: - product_category_id: hg-12-6-5-1 + product_category_id: hg-11-10-6-2-3 output: product_category_id: - - '7561' + - '6439' - input: - product_category_id: hg-12-6-5-2 + product_category_id: hg-11-10-6-2-4 output: product_category_id: - - '7561' + - '6439' - input: - product_category_id: hg-12-6-6 + product_category_id: hg-11-10-6-3 output: product_category_id: - - '505814' + - '3699' - input: - product_category_id: hg-12-6-6-1 + product_category_id: hg-11-10-6-4 output: product_category_id: - - '505814' + - '5647' - input: - product_category_id: hg-12-6-6-2 + product_category_id: hg-11-10-6-5 output: product_category_id: - - '505814' + - '4015' - input: - product_category_id: hg-12-6-7 + product_category_id: hg-11-10-6-6 output: product_category_id: - - '6318' + - '3939' - input: - product_category_id: hg-12-6-8 + product_category_id: hg-11-10-6-7 output: product_category_id: - - '230912' + - '3844' - input: - product_category_id: hg-12-6-8-1 + product_category_id: hg-11-10-7 output: product_category_id: - - '230912' + - '4026' - input: - product_category_id: hg-12-6-8-2 + product_category_id: hg-11-10-7-1 output: product_category_id: - - '230912' + - '6086' - input: - product_category_id: hg-13 + product_category_id: hg-11-10-7-2 output: product_category_id: - - '594' + - '5135' - input: - product_category_id: hg-13-1 + product_category_id: hg-11-10-7-3 output: product_category_id: - - '1436' + - '4372' - input: - product_category_id: hg-13-10 + product_category_id: hg-11-10-7-4 output: product_category_id: - - '505826' + - '7550' - input: - product_category_id: hg-13-11 + product_category_id: hg-11-10-7-5 output: product_category_id: - - '2370' + - '3703' - input: - product_category_id: hg-13-12 + product_category_id: hg-11-10-7-6 output: product_category_id: - - '7399' + - '4735' - input: - product_category_id: hg-13-13 + product_category_id: hg-11-10-7-7 output: product_category_id: - - '6274' + - '3330' - input: - product_category_id: hg-13-13-1 + product_category_id: hg-11-10-7-8 output: product_category_id: - - '6272' + - '3802' - input: - product_category_id: hg-13-13-1-2 + product_category_id: hg-11-10-7-9 output: product_category_id: - - '6272' + - '4009' - input: - product_category_id: hg-13-13-1-3 + product_category_id: hg-11-10-7-10 output: product_category_id: - - '6272' + - '3373' - input: - product_category_id: hg-13-13-1-4 + product_category_id: hg-11-10-7-10-1 output: product_category_id: - - '6272' + - '3373' - input: - product_category_id: hg-13-13-1-5 + product_category_id: hg-11-10-7-10-2 output: product_category_id: - - '6272' + - '3373' - input: - product_category_id: hg-13-13-2 + product_category_id: hg-11-10-7-11 output: product_category_id: - - '4932' + - '3941' - input: - product_category_id: hg-13-13-3 + product_category_id: hg-11-10-8 output: product_category_id: - - '6273' + - '6425' - input: - product_category_id: hg-13-2 + product_category_id: hg-11-10-8-1 output: product_category_id: - - '500003' + - '6434' - input: - product_category_id: hg-13-3 + product_category_id: hg-11-10-8-2 output: product_category_id: - - '1546' + - '6427' - input: - product_category_id: hg-13-4 + product_category_id: hg-11-10-8-3 output: product_category_id: - - '7401' + - '6426' - input: - product_category_id: hg-13-5 + product_category_id: hg-11-10-9 output: product_category_id: - - '4636' + - '8046' - input: - product_category_id: hg-13-5-1 + product_category_id: hg-11-10-9-1 output: product_category_id: - - '4636' + - '8046' - input: - product_category_id: hg-13-5-2 + product_category_id: hg-11-10-9-2 output: product_category_id: - - '4636' + - '8046' - input: - product_category_id: hg-13-5-3 + product_category_id: hg-11-10-10 output: product_category_id: - - '4636' + - '677' - input: - product_category_id: hg-13-5-4 + product_category_id: hg-12 output: product_category_id: - - '4636' + - '689' - input: - product_category_id: hg-13-5-5 + product_category_id: hg-12-1 output: product_category_id: - - '4636' + - '2962' - input: - product_category_id: hg-13-6 + product_category_id: hg-12-1-1 output: product_category_id: - - '7400' + - '4085' - input: - product_category_id: hg-13-7 + product_category_id: hg-12-1-1-1 output: product_category_id: - - '2425' + - '690' - input: - product_category_id: hg-13-7-1 + product_category_id: hg-12-1-1-2 output: product_category_id: - - '2947' + - '6840' - input: - product_category_id: hg-13-7-2 + product_category_id: hg-12-1-1-3 output: product_category_id: - - '2690' + - '6436' - input: - product_category_id: hg-13-7-3 + product_category_id: hg-12-1-2 output: product_category_id: - - '2944' + - '691' - input: - product_category_id: hg-13-7-4 + product_category_id: hg-12-1-3 output: product_category_id: - - '3329' + - '113' - input: - product_category_id: hg-13-8 + product_category_id: hg-12-1-4 output: product_category_id: - - '2608' + - '500033' - input: - product_category_id: hg-13-9 + product_category_id: hg-12-1-5 output: product_category_id: - - '3006' + - '5632' - input: - product_category_id: hg-13-9-1 + product_category_id: hg-12-1-5-1 output: product_category_id: - - '2809' + - '503756' - input: - product_category_id: hg-13-9-2 + product_category_id: hg-12-1-5-1-1 output: product_category_id: - - '2524' + - '503756' - input: - product_category_id: hg-13-9-3 + product_category_id: hg-12-1-5-1-2 output: product_category_id: - - '2249' + - '503756' - input: - product_category_id: hg-13-9-4 + product_category_id: hg-12-1-5-1-3 output: product_category_id: - - '6073' + - '503756' - input: - product_category_id: hg-14 + product_category_id: hg-12-1-5-2 output: product_category_id: - - '2956' + - '5633' - input: - product_category_id: hg-14-1 + product_category_id: hg-12-1-5-3 output: product_category_id: - - '7338' + - '7184' - input: - product_category_id: hg-14-2 + product_category_id: hg-12-1-6 output: product_category_id: - - '7447' + - '505326' - input: - product_category_id: hg-14-3 + product_category_id: hg-12-1-6-1 output: product_category_id: - - '3185' + - '505322' - input: - product_category_id: hg-14-4 + product_category_id: hg-12-1-6-2 output: product_category_id: - - '3522' + - '505321' - input: - product_category_id: hg-14-5 + product_category_id: hg-12-1-6-3 output: product_category_id: - - '505312' + - '4972' - input: - product_category_id: hg-15 + product_category_id: hg-12-1-6-3-1 output: product_category_id: - - '4171' + - '4972' - input: - product_category_id: hg-15-1 + product_category_id: hg-12-1-6-3-2 output: product_category_id: - - '569' + - '4972' - input: - product_category_id: hg-15-1-1 + product_category_id: hg-12-1-6-3-3 output: product_category_id: - - '505803' + - '4972' - input: - product_category_id: hg-15-1-10 + product_category_id: hg-12-1-6-3-4 output: product_category_id: - - '505287' + - '4972' - input: - product_category_id: hg-15-1-2 + product_category_id: hg-12-1-6-3-5 output: product_category_id: - - '2314' + - '4972' - input: - product_category_id: hg-15-1-3 + product_category_id: hg-12-1-7 output: product_category_id: - - '2974' + - '3173' - input: - product_category_id: hg-15-1-4 + product_category_id: hg-12-1-7-1 output: product_category_id: - - '1985' + - '7537' - input: - product_category_id: hg-15-1-5 + product_category_id: hg-12-1-7-1-2 output: product_category_id: - - '2541' + - '7537' - input: - product_category_id: hg-15-1-6 + product_category_id: hg-12-1-7-1-3 output: product_category_id: - - '4452' + - '7537' - input: - product_category_id: hg-15-1-6-1 + product_category_id: hg-12-1-7-2 output: product_category_id: - - '4420' + - '4000' - input: - product_category_id: hg-15-1-6-2 + product_category_id: hg-12-1-7-2-1 output: product_category_id: - - '2991' + - '4000' - input: - product_category_id: hg-15-1-7 + product_category_id: hg-12-1-7-2-2 output: product_category_id: - - '1599' + - '4000' - input: - product_category_id: hg-15-1-8 + product_category_id: hg-12-1-7-3 output: product_category_id: - - '2927' + - '3071' - input: - product_category_id: hg-15-1-9 + product_category_id: hg-12-1-7-4 output: product_category_id: - - '2700' + - '505292' - input: - product_category_id: hg-15-2 + product_category_id: hg-12-1-7-4-1 output: product_category_id: - - '505832' + - '505292' - input: - product_category_id: hg-15-3 + product_category_id: hg-12-1-7-4-2 output: product_category_id: - - '601' + - '505292' - input: - product_category_id: hg-15-3-1 + product_category_id: hg-12-1-7-5 output: product_category_id: - - '4203' + - '3644' - input: - product_category_id: hg-15-3-2 + product_category_id: hg-12-1-7-6 output: product_category_id: - - '4343' + - '1967' - input: - product_category_id: hg-15-3-3 + product_category_id: hg-12-1-7-7 output: product_category_id: - - '2547' + - '499922' - input: - product_category_id: hg-15-3-4 + product_category_id: hg-12-1-7-7-1 output: product_category_id: - - '6325' + - '499922' - input: - product_category_id: hg-15-3-5 + product_category_id: hg-12-1-7-7-2 output: product_category_id: - - '6322' + - '499922' - input: - product_category_id: hg-15-3-6 + product_category_id: hg-12-1-7-8 output: product_category_id: - - '4143' + - '6967' - input: - product_category_id: hg-15-4 + product_category_id: hg-12-1-7-9 output: product_category_id: - - '4077' + - '3841' - input: - product_category_id: hg-15-4-1 + product_category_id: hg-12-1-7-10 output: product_category_id: - - '576' + - '3388' - input: - product_category_id: hg-15-4-1-1 + product_category_id: hg-12-1-7-11 output: product_category_id: - - '576' + - '2147' - input: - product_category_id: hg-15-4-1-2 + product_category_id: hg-12-1-7-11-1 output: product_category_id: - - '576' + - '2147' - input: - product_category_id: hg-15-4-2 + product_category_id: hg-12-1-7-11-2 output: product_category_id: - - '4126' + - '2147' - input: - product_category_id: hg-15-4-3 + product_category_id: hg-12-1-7-12 output: product_category_id: - - '4257' + - '3828' - input: - product_category_id: hg-16 + product_category_id: hg-12-1-7-13 output: product_category_id: - - '4358' + - '3616' - input: - product_category_id: hg-16-1 + product_category_id: hg-12-1-8 output: product_category_id: - - '4358' + - '693' - input: - product_category_id: hg-16-2 + product_category_id: hg-12-1-9 output: product_category_id: - - '4358' + - '3103' - input: - product_category_id: hg-17 + product_category_id: hg-12-1-10 output: product_category_id: - - '985' + - '6381' - input: - product_category_id: hg-17-1 + product_category_id: hg-12-1-11 output: product_category_id: - - '5590' + - '6413' - input: - product_category_id: hg-17-2 + product_category_id: hg-12-1-11-1 output: product_category_id: - - '984' + - '6422' - input: - product_category_id: hg-17-3 + product_category_id: hg-12-1-11-1-1 output: product_category_id: - - '6762' + - '6422' - input: - product_category_id: hg-17-3-1 + product_category_id: hg-12-1-11-1-2 output: product_category_id: - - '543559' + - '6422' - input: - product_category_id: hg-17-3-1-1 + product_category_id: hg-12-1-11-2 output: product_category_id: - - '543559' + - '6421' - input: - product_category_id: hg-17-3-1-2 + product_category_id: hg-12-1-12 output: product_category_id: - - '543559' + - '2988' - input: - product_category_id: hg-17-3-2 + product_category_id: hg-12-1-12-1 output: product_category_id: - - '6762' + - '2988' - input: - product_category_id: hg-17-3-3 + product_category_id: hg-12-1-12-2 output: product_category_id: - - '543560' + - '2988' - input: - product_category_id: hg-17-3-3-1 + product_category_id: hg-12-1-12-3 output: product_category_id: - - '543560' + - '2988' - input: - product_category_id: hg-17-3-3-2 + product_category_id: hg-12-1-13 output: product_category_id: - - '543560' + - '499894' - input: - product_category_id: hg-17-3-4 + product_category_id: hg-12-1-13-1 output: product_category_id: - - '543558' + - '499894' - input: - product_category_id: hg-17-4 + product_category_id: hg-12-1-13-2 output: product_category_id: - - '505285' + - '499894' - input: - product_category_id: hg-17-4-1 + product_category_id: hg-12-1-14 output: product_category_id: - - '505285' + - '6428' - input: - product_category_id: hg-17-4-2 + product_category_id: hg-12-1-15 output: product_category_id: - - '505285' + - '499962' - input: - product_category_id: hg-17-5 + product_category_id: hg-12-1-16 output: product_category_id: - - '2802' + - '721' - input: - product_category_id: hg-17-5-1 + product_category_id: hg-12-1-16-1 output: product_category_id: - - '543561' + - '721' - input: - product_category_id: hg-17-5-1-1 + product_category_id: hg-12-1-16-2 output: product_category_id: - - '543561' + - '721' - input: - product_category_id: hg-17-5-1-2 + product_category_id: hg-12-1-17 output: product_category_id: - - '543561' + - '6834' - input: - product_category_id: hg-17-5-2 + product_category_id: hg-12-1-18 output: product_category_id: - - '543562' + - '1794' - input: - product_category_id: hg-17-5-2-1 + product_category_id: hg-12-1-18-1 output: product_category_id: - - '543562' + - '543677' - input: - product_category_id: hg-17-5-2-2 + product_category_id: hg-12-1-18-2 output: product_category_id: - - '543562' + - '543678' - input: - product_category_id: hg-17-6 + product_category_id: hg-12-2 output: product_category_id: - - '1684' + - '2918' - input: - product_category_id: hg-18 + product_category_id: hg-12-2-1 output: product_category_id: - - '729' + - '499908' - input: - product_category_id: hg-18-1 + product_category_id: hg-12-2-1-1 output: product_category_id: - - '2832' + - '499908' - input: - product_category_id: hg-18-1-1 + product_category_id: hg-12-2-1-6 output: product_category_id: - - '2939' + - '499908' - input: - product_category_id: hg-18-1-10 + product_category_id: hg-12-2-1-7 output: product_category_id: - - '7496' + - '499908' - input: - product_category_id: hg-18-1-11 + product_category_id: hg-12-2-1-8 output: product_category_id: - - '2860' + - '499908' - input: - product_category_id: hg-18-1-11-1 + product_category_id: hg-12-2-1-9 output: product_category_id: - - '2860' + - '499908' - input: - product_category_id: hg-18-1-11-2 + product_category_id: hg-12-2-1-10 output: product_category_id: - - '2860' + - '499908' - input: - product_category_id: hg-18-1-12 + product_category_id: hg-12-2-1-11 output: product_category_id: - - '5654' + - '499908' - input: - product_category_id: hg-18-1-13 + product_category_id: hg-12-2-1-12 output: product_category_id: - - '6766' + - '499908' - input: - product_category_id: hg-18-1-13-1 + product_category_id: hg-12-2-1-13 output: product_category_id: - - '6766' + - '499908' - input: - product_category_id: hg-18-1-13-2 + product_category_id: hg-12-2-1-14 output: product_category_id: - - '6766' + - '499908' - input: - product_category_id: hg-18-1-13-3 + product_category_id: hg-12-2-2 output: product_category_id: - - '6766' + - '499907' - input: - product_category_id: hg-18-1-14 + product_category_id: hg-12-2-3 output: product_category_id: - - '503751' + - '6737' - input: - product_category_id: hg-18-1-15 + product_category_id: hg-12-2-3-1 output: product_category_id: - - '2755' + - '6737' - input: - product_category_id: hg-18-1-16 + product_category_id: hg-12-2-3-2 output: product_category_id: - - '2997' + - '6737' - input: - product_category_id: hg-18-1-16-1 + product_category_id: hg-12-2-4 output: product_category_id: - - '2997' + - '717' - input: - product_category_id: hg-18-1-16-2 + product_category_id: hg-12-2-5 output: product_category_id: - - '2997' + - '5910' - input: - product_category_id: hg-18-1-17 + product_category_id: hg-12-2-5-1 output: product_category_id: - - '2672' + - '5911' - input: - product_category_id: hg-18-1-17-1 + product_category_id: hg-12-2-5-2 output: product_category_id: - - '2672' + - '5913' - input: - product_category_id: hg-18-1-17-2 + product_category_id: hg-12-2-5-3 output: product_category_id: - - '2672' + - '5912' - input: - product_category_id: hg-18-1-17-3 + product_category_id: hg-12-2-6 output: product_category_id: - - '2672' + - '2613' - input: - product_category_id: hg-18-1-17-4 + product_category_id: hg-12-2-6-1 output: product_category_id: - - '2672' + - '716' - input: - product_category_id: hg-18-1-18 + product_category_id: hg-12-2-6-1-1 output: product_category_id: - - '5546' + - '716' - input: - product_category_id: hg-18-1-2 + product_category_id: hg-12-2-6-1-2 output: product_category_id: - - '500042' + - '716' - input: - product_category_id: hg-18-1-3 + product_category_id: hg-12-2-6-2 output: product_category_id: - - '2981' + - '6105' - input: - product_category_id: hg-18-1-4 + product_category_id: hg-12-2-6-2-1 output: product_category_id: - - '505815' + - '6107' - input: - product_category_id: hg-18-1-5 + product_category_id: hg-12-2-6-2-2 output: product_category_id: - - '6996' + - '6106' - input: - product_category_id: hg-18-1-6 + product_category_id: hg-12-2-6-2-3 output: product_category_id: - - '6771' + - '6108' - input: - product_category_id: hg-18-1-7 + product_category_id: hg-12-2-6-2-4 output: product_category_id: - - '3017' + - '7423' - input: - product_category_id: hg-18-1-8 + product_category_id: hg-12-2-6-2-5 output: product_category_id: - - '500050' + - '7424' - input: - product_category_id: hg-18-1-9 + product_category_id: hg-12-2-6-3 output: product_category_id: - - '2994' + - '703' - input: - product_category_id: hg-18-1-9-1 + product_category_id: hg-12-2-6-3-1 output: product_category_id: - - '2994' + - '703' - input: - product_category_id: hg-18-1-9-2 + product_category_id: hg-12-2-6-3-2 output: product_category_id: - - '2994' + - '703' - input: - product_category_id: hg-18-2 + product_category_id: hg-12-2-6-3-3 output: product_category_id: - - '543687' + - '703' - input: - product_category_id: hg-18-2-1 + product_category_id: hg-12-2-6-3-4 output: product_category_id: - - '543633' + - '703' - input: - product_category_id: hg-18-2-1-1 + product_category_id: hg-12-2-6-4 output: product_category_id: - - '543633' + - '700' - input: - product_category_id: hg-18-2-1-2 + product_category_id: hg-12-2-6-5 output: product_category_id: - - '543633' + - '720' - input: - product_category_id: hg-18-2-2 + product_category_id: hg-12-2-6-5-1 output: product_category_id: - - '543632' + - '720' - input: - product_category_id: hg-18-2-3 + product_category_id: hg-12-2-6-5-2 output: product_category_id: - - '543631' + - '720' - input: - product_category_id: hg-18-3 + product_category_id: hg-12-2-6-5-3 output: product_category_id: - - '3992' + - '720' - input: - product_category_id: hg-18-4 + product_category_id: hg-12-2-7 output: product_category_id: - - '2982' + - '6751' - input: - product_category_id: hg-18-5 + product_category_id: hg-12-2-7-1 output: product_category_id: - - '2810' + - '7108' - input: - product_category_id: hg-19 + product_category_id: hg-12-2-7-2 output: product_category_id: - - '600' + - '5493' - input: - product_category_id: hg-19-1 + product_category_id: hg-12-2-7-3 output: product_category_id: - - '4082' + - '7107' - input: - product_category_id: hg-19-2 + product_category_id: hg-12-2-7-4 output: product_category_id: - - '6882' + - '499948' - input: - product_category_id: hg-19-3 + product_category_id: hg-12-2-7-5 output: product_category_id: - - '6879' + - '8020' - input: - product_category_id: hg-19-3-1 + product_category_id: hg-12-2-8 output: product_category_id: - - '6879' + - '719' - input: - product_category_id: hg-19-3-2 + product_category_id: hg-12-2-8-1 output: product_category_id: - - '6879' + - '719' - input: - product_category_id: hg-19-4 + product_category_id: hg-12-2-8-2 output: product_category_id: - - '6881' + - '719' - input: - product_category_id: hg-19-5 + product_category_id: hg-12-2-9 output: product_category_id: - - '500007' + - '499955' - input: - product_category_id: hg-19-6 + product_category_id: hg-12-2-9-1 output: product_category_id: - - '6880' + - '499955' - input: - product_category_id: hg-19-7 + product_category_id: hg-12-2-9-2 output: product_category_id: - - '6878' + - '499955' - input: - product_category_id: hg-2 + product_category_id: hg-12-2-9-3 output: product_category_id: - - '359' + - '499955' - input: - product_category_id: hg-2-1 + product_category_id: hg-12-2-9-4 output: product_category_id: - - '5491' + - '499955' - input: - product_category_id: hg-2-2 + product_category_id: hg-12-2-9-5 output: product_category_id: - - '3873' + - '499955' - input: - product_category_id: hg-2-3 + product_category_id: hg-12-2-10 output: product_category_id: - - '2161' + - '718' - input: - product_category_id: hg-2-4 + product_category_id: hg-12-3 output: product_category_id: - - '500025' + - '3798' - input: - product_category_id: hg-2-5 + product_category_id: hg-12-3-1 output: product_category_id: - - '363' + - '3610' - input: - product_category_id: hg-2-6 + product_category_id: hg-12-3-2 output: product_category_id: - - '364' + - '2218' - input: - product_category_id: hg-2-6-1 + product_category_id: hg-12-3-3 output: product_category_id: - - '364' + - '3120' - input: - product_category_id: hg-2-6-2 + product_category_id: hg-12-3-4 output: product_category_id: - - '364' + - '500034' - input: - product_category_id: hg-2-7 + product_category_id: hg-12-3-4-1 output: product_category_id: - - '499865' + - '500034' - input: - product_category_id: hg-2-7-2 + product_category_id: hg-12-3-4-2 output: product_category_id: - - '499865' + - '500034' - input: - product_category_id: hg-2-7-3 + product_category_id: hg-12-3-5 output: product_category_id: - - '499865' + - '694' - input: - product_category_id: hg-2-7-4 + product_category_id: hg-12-3-5-1 output: product_category_id: - - '499865' + - '3311' - input: - product_category_id: hg-2-7-5 + product_category_id: hg-12-3-5-2 output: product_category_id: - - '499865' + - '6788' - input: - product_category_id: hg-2-8 + product_category_id: hg-12-3-5-3 output: product_category_id: - - '3819' + - '6258' - input: - product_category_id: hg-2-8-1 + product_category_id: hg-12-3-5-4 output: product_category_id: - - '3819' + - '3730' - input: - product_category_id: hg-2-8-2 + product_category_id: hg-12-3-6 output: product_category_id: - - '3819' + - '6789' - input: - product_category_id: hg-2-8-3 + product_category_id: hg-12-3-7 output: product_category_id: - - '3819' + - '3340' - input: - product_category_id: hg-2-8-4 + product_category_id: hg-12-3-8 output: product_category_id: - - '3819' + - '7332' - input: - product_category_id: hg-2-9 + product_category_id: hg-12-3-9 output: product_category_id: - - '365' + - '7245' - input: - product_category_id: hg-20 + product_category_id: hg-12-3-10 output: product_category_id: - - '6173' + - '500016' - input: - product_category_id: hg-20-1 + product_category_id: hg-12-3-11 output: product_category_id: - - '6173' + - '2204' - input: - product_category_id: hg-20-2 + product_category_id: hg-12-3-11-1 output: product_category_id: - - '6173' + - '2204' - input: - product_category_id: hg-21 + product_category_id: hg-12-3-11-2 output: product_category_id: - - '2639' + - '2204' - input: - product_category_id: hg-3 + product_category_id: hg-12-3-12 output: product_category_id: - - '696' + - '1226' - input: - product_category_id: hg-3-1 + product_category_id: hg-12-3-13 output: product_category_id: - - '572' + - '1541' - input: - product_category_id: hg-3-10 + product_category_id: hg-12-3-14 output: product_category_id: - - '500078' + - '5866' - input: - product_category_id: hg-3-10-1 + product_category_id: hg-12-3-15 output: product_category_id: - - '500079' + - '1223' - input: - product_category_id: hg-3-10-2 + product_category_id: hg-12-4 output: product_category_id: - - '699' + - '4564' - input: - product_category_id: hg-3-10-3 + product_category_id: hg-12-4-1 output: product_category_id: - - '500080' + - '4565' - input: - product_category_id: hg-3-11 + product_category_id: hg-12-4-1-1 output: product_category_id: - - '697' + - '4647' - input: - product_category_id: hg-3-12 + product_category_id: hg-12-4-1-2 output: product_category_id: - - '587' + - '4646' - input: - product_category_id: hg-3-13 + product_category_id: hg-12-4-2 output: product_category_id: - - '7380' + - '7563' - input: - product_category_id: hg-3-14 + product_category_id: hg-12-4-2-1 output: product_category_id: - - '4453' + - '7563' - input: - product_category_id: hg-3-15 + product_category_id: hg-12-4-2-2 output: product_category_id: - - '4453' + - '7563' - input: - product_category_id: hg-3-16 + product_category_id: hg-12-4-2-3 output: product_category_id: - - '505827' + - '7563' - input: - product_category_id: hg-3-16-1 + product_category_id: hg-12-4-2-4 output: product_category_id: - - '505827' + - '7563' - input: - product_category_id: hg-3-16-2 + product_category_id: hg-12-4-2-5 output: product_category_id: - - '505827' + - '7563' - input: - product_category_id: hg-3-16-3 + product_category_id: hg-12-4-3 output: product_category_id: - - '505827' + - '7265' - input: - product_category_id: hg-3-16-4 + product_category_id: hg-12-4-3-3 output: product_category_id: - - '505827' + - '7265' - input: - product_category_id: hg-3-16-5 + product_category_id: hg-12-4-3-4 output: product_category_id: - - '505827' + - '7265' - input: - product_category_id: hg-3-17 + product_category_id: hg-12-4-4 output: product_category_id: - - '3890' + - '4566' - input: - product_category_id: hg-3-17-1 + product_category_id: hg-12-4-4-1 output: product_category_id: - - '4546' + - '6542' - input: - product_category_id: hg-3-17-2 + product_category_id: hg-12-4-4-1-2 output: product_category_id: - - '6912' + - '6542' - input: - product_category_id: hg-3-17-2-1 + product_category_id: hg-12-4-4-1-3 output: product_category_id: - - '6912' + - '6542' - input: - product_category_id: hg-3-17-2-2 + product_category_id: hg-12-4-4-1-4 output: product_category_id: - - '6912' + - '6542' - input: - product_category_id: hg-3-17-3 + product_category_id: hg-12-4-4-2 output: product_category_id: - - '3696' + - '4645' - input: - product_category_id: hg-3-17-3-1 + product_category_id: hg-12-4-4-3 output: product_category_id: - - '3696' + - '4643' - input: - product_category_id: hg-3-17-3-2 + product_category_id: hg-12-4-4-4 output: product_category_id: - - '3696' + - '4641' - input: - product_category_id: hg-3-17-4 + product_category_id: hg-12-4-4-5 output: product_category_id: - - '3840' + - '4642' - input: - product_category_id: hg-3-18 + product_category_id: hg-12-4-4-6 output: product_category_id: - - '5708' + - '499923' - input: - product_category_id: hg-3-19 + product_category_id: hg-12-4-4-7 output: product_category_id: - - '7206' + - '499960' - input: - product_category_id: hg-3-2 + product_category_id: hg-12-4-4-7-1 output: product_category_id: - - '6265' + - '499960' - input: - product_category_id: hg-3-2-1 + product_category_id: hg-12-4-4-7-2 output: product_category_id: - - '6265' + - '499960' - input: - product_category_id: hg-3-2-2 + product_category_id: hg-12-4-4-8 output: product_category_id: - - '6265' + - '4644' - input: - product_category_id: hg-3-2-3 + product_category_id: hg-12-4-4-8-1 output: product_category_id: - - '6265' + - '4644' - input: - product_category_id: hg-3-2-4 + product_category_id: hg-12-4-4-8-2 output: product_category_id: - - '6265' + - '4644' - input: - product_category_id: hg-3-20 + product_category_id: hg-12-4-4-9 output: product_category_id: - - '6317' + - '499872' - input: - product_category_id: hg-3-21 + product_category_id: hg-12-4-4-10 output: product_category_id: - - '6457' + - '6095' - input: - product_category_id: hg-3-22 + product_category_id: hg-12-4-4-11 output: product_category_id: - - '7113' + - '6094' - input: - product_category_id: hg-3-23 + product_category_id: hg-12-4-4-12 output: product_category_id: - - '708' + - '499921' - input: - product_category_id: hg-3-24 + product_category_id: hg-12-4-4-13 output: product_category_id: - - '5875' + - '6541' - input: - product_category_id: hg-3-25 + product_category_id: hg-12-4-5 output: product_category_id: - - '6456' + - '7168' - input: - product_category_id: hg-3-26 + product_category_id: hg-12-4-5-1 output: product_category_id: - - '2675' + - '7171' - input: - product_category_id: hg-3-27 + product_category_id: hg-12-4-6 output: product_category_id: - - '7172' + - '8485' - input: - product_category_id: hg-3-28 + product_category_id: hg-12-4-6-1 output: product_category_id: - - '6936' + - '7564' - input: - product_category_id: hg-3-29 + product_category_id: hg-12-4-6-2 output: product_category_id: - - '6935' + - '8487' - input: - product_category_id: hg-3-3 + product_category_id: hg-12-4-6-3 output: product_category_id: - - '6266' + - '7334' - input: - product_category_id: hg-3-30 + product_category_id: hg-12-4-6-4 output: product_category_id: - - '5609' + - '8489' - input: - product_category_id: hg-3-31 + product_category_id: hg-12-4-6-5 output: product_category_id: - - '7422' + - '8488' - input: - product_category_id: hg-3-32 + product_category_id: hg-12-4-6-6 output: product_category_id: - - '7419' + - '7335' - input: - product_category_id: hg-3-32-1 + product_category_id: hg-12-4-7 output: product_category_id: - - '7420' + - '7333' - input: - product_category_id: hg-3-32-2 + product_category_id: hg-12-4-8 output: product_category_id: - - '503010' + - '6328' - input: - product_category_id: hg-3-32-3 + product_category_id: hg-12-4-8-4 output: product_category_id: - - '7421' + - '6328' - input: - product_category_id: hg-3-33 + product_category_id: hg-12-4-8-5 output: product_category_id: - - '701' + - '6328' - input: - product_category_id: hg-3-34 + product_category_id: hg-12-4-8-7 output: product_category_id: - - '4770' + - '6328' - input: - product_category_id: hg-3-35 + product_category_id: hg-12-4-8-13 output: product_category_id: - - '702' + - '6328' - input: - product_category_id: hg-3-35-1 + product_category_id: hg-12-4-8-15 output: product_category_id: - - '2921' + - '6328' - input: - product_category_id: hg-3-35-2 + product_category_id: hg-12-4-8-17 output: product_category_id: - - '6763' + - '6328' - input: - product_category_id: hg-3-35-2-1 + product_category_id: hg-12-4-8-18 output: product_category_id: - - '6763' + - '6328' - input: - product_category_id: hg-3-35-2-3 + product_category_id: hg-12-4-8-20 output: product_category_id: - - '6763' + - '6328' - input: - product_category_id: hg-3-35-3 + product_category_id: hg-12-4-8-21 output: product_category_id: - - '2763' + - '6328' - input: - product_category_id: hg-3-36 + product_category_id: hg-12-4-8-22 output: product_category_id: - - '704' + - '6328' - input: - product_category_id: hg-3-36-1 + product_category_id: hg-12-4-8-23 output: product_category_id: - - '704' + - '6328' - input: - product_category_id: hg-3-36-2 + product_category_id: hg-12-4-8-24 output: product_category_id: - - '704' + - '6328' - input: - product_category_id: hg-3-37 + product_category_id: hg-12-4-8-29 output: product_category_id: - - '499693' + - '6328' - input: - product_category_id: hg-3-38 + product_category_id: hg-12-4-9 output: product_category_id: - - '3221' + - '4567' - input: - product_category_id: hg-3-39 + product_category_id: hg-12-4-9-1 output: product_category_id: - - '500121' + - '4567' - input: - product_category_id: hg-3-39-1 + product_category_id: hg-12-4-10 output: product_category_id: - - '6336' + - '5867' - input: - product_category_id: hg-3-39-2 + product_category_id: hg-12-4-10-1 output: product_category_id: - - '2784' + - '499880' - input: - product_category_id: hg-3-39-3 + product_category_id: hg-12-4-10-1-1 output: product_category_id: - - '500122' + - '499880' - input: - product_category_id: hg-3-39-4 + product_category_id: hg-12-4-10-1-2 output: product_category_id: - - '4741' + - '499880' - input: - product_category_id: hg-3-4 + product_category_id: hg-12-4-10-1-5 output: product_category_id: - - '9' + - '499880' - input: - product_category_id: hg-3-4-1 + product_category_id: hg-12-4-10-2 output: product_category_id: - - '500045' + - '499881' - input: - product_category_id: hg-3-4-2 + product_category_id: hg-12-4-11 output: product_category_id: - - '500044' + - '7169' - input: - product_category_id: hg-3-4-2-1 + product_category_id: hg-12-4-11-1 output: product_category_id: - - '500044' + - '7170' - input: - product_category_id: hg-3-4-2-2 + product_category_id: hg-12-4-11-1-1 output: product_category_id: - - '500044' + - '7170' - input: - product_category_id: hg-3-4-2-3 + product_category_id: hg-12-4-11-1-2 output: product_category_id: - - '500044' + - '7170' - input: - product_category_id: hg-3-4-3 + product_category_id: hg-12-4-11-2 output: product_category_id: - - '11' + - '8034' - input: - product_category_id: hg-3-40 + product_category_id: hg-12-5 output: product_category_id: - - '592' + - '5362' - input: - product_category_id: hg-3-40-1 + product_category_id: hg-12-5-1 output: product_category_id: - - '3898' + - '5364' - input: - product_category_id: hg-3-40-2 + product_category_id: hg-12-5-1-1 output: product_category_id: - - '588' + - '5364' - input: - product_category_id: hg-3-40-3 + product_category_id: hg-12-5-1-2 output: product_category_id: - - '5847' + - '5364' - input: - product_category_id: hg-3-40-4 + product_category_id: hg-12-5-2 output: product_category_id: - - '3686' + - '5363' - input: - product_category_id: hg-3-40-5 + product_category_id: hg-12-6 output: product_category_id: - - '4740' + - '3568' - input: - product_category_id: hg-3-40-6 + product_category_id: hg-12-6-1 output: product_category_id: - - '6767' + - '4718' - input: - product_category_id: hg-3-41 + product_category_id: hg-12-6-1-1 output: product_category_id: - - '503000' + - '4718' - input: - product_category_id: hg-3-42 + product_category_id: hg-12-6-1-2 output: product_category_id: - - '7382' + - '4718' - input: - product_category_id: hg-3-43 + product_category_id: hg-12-6-2 output: product_category_id: - - '6547' + - '4201' - input: - product_category_id: hg-3-43-1 + product_category_id: hg-12-6-3 output: product_category_id: - - '6547' + - '2313' - input: - product_category_id: hg-3-43-2 + product_category_id: hg-12-6-4 output: product_category_id: - - '6547' + - '3780' - input: - product_category_id: hg-3-44 + product_category_id: hg-12-6-4-1 output: product_category_id: - - '7436' + - '1302' - input: - product_category_id: hg-3-45 + product_category_id: hg-12-6-4-2 output: product_category_id: - - '6333' + - '3491' - input: - product_category_id: hg-3-45-1 + product_category_id: hg-12-6-5 output: product_category_id: - - '7177' + - '7561' - input: - product_category_id: hg-3-45-2 + product_category_id: hg-12-6-5-1 output: product_category_id: - - '7052' + - '7561' - input: - product_category_id: hg-3-45-3 + product_category_id: hg-12-6-5-2 output: product_category_id: - - '7176' + - '7561' - input: - product_category_id: hg-3-45-4 + product_category_id: hg-12-6-6 output: product_category_id: - - '6334' + - '505814' - input: - product_category_id: hg-3-45-5 + product_category_id: hg-12-6-6-1 output: product_category_id: - - '7339' + - '505814' - input: - product_category_id: hg-3-46 + product_category_id: hg-12-6-6-2 output: product_category_id: - - '706' + - '505814' - input: - product_category_id: hg-3-47 + product_category_id: hg-12-6-7 output: product_category_id: - - '595' + - '6318' - input: - product_category_id: hg-3-48 + product_category_id: hg-12-6-8 output: product_category_id: - - '3473' + - '230912' - input: - product_category_id: hg-3-49 + product_category_id: hg-12-6-8-1 output: product_category_id: - - '6324' + - '230912' - input: - product_category_id: hg-3-5 + product_category_id: hg-12-6-8-2 output: product_category_id: - - '4456' + - '230912' - input: - product_category_id: hg-3-50 + product_category_id: hg-13 output: product_category_id: - - '5885' + - '594' - input: - product_category_id: hg-3-51 + product_category_id: hg-13-1 output: product_category_id: - - '6927' + - '1436' - input: - product_category_id: hg-3-52 + product_category_id: hg-13-2 output: product_category_id: - - '597' + - '500003' - input: - product_category_id: hg-3-53 + product_category_id: hg-13-3 output: product_category_id: - - '4295' + - '1546' - input: - product_category_id: hg-3-53-1 + product_category_id: hg-13-4 output: product_category_id: - - '4295' + - '7401' - input: - product_category_id: hg-3-53-2 + product_category_id: hg-13-5 output: product_category_id: - - '4295' + - '4636' - input: - product_category_id: hg-3-54 + product_category_id: hg-13-5-1 output: product_category_id: - - '709' + - '4636' - input: - product_category_id: hg-3-55 + product_category_id: hg-13-5-2 output: product_category_id: - - '710' + - '4636' - input: - product_category_id: hg-3-56 + product_category_id: hg-13-5-3 output: product_category_id: - - '5876' + - '4636' - input: - product_category_id: hg-3-57 + product_category_id: hg-13-5-4 output: product_category_id: - - '598' + - '4636' - input: - product_category_id: hg-3-58 + product_category_id: hg-13-5-5 output: product_category_id: - - '596' + - '4636' - input: - product_category_id: hg-3-58-1 + product_category_id: hg-13-6 output: product_category_id: - - '5359' + - '7400' - input: - product_category_id: hg-3-58-10 + product_category_id: hg-13-7 output: product_category_id: - - '5930' + - '2425' - input: - product_category_id: hg-3-58-11 + product_category_id: hg-13-7-1 output: product_category_id: - - '6531' + - '2947' - input: - product_category_id: hg-3-58-12 + product_category_id: hg-13-7-2 output: product_category_id: - - '505809' + - '2690' - input: - product_category_id: hg-3-58-2 + product_category_id: hg-13-7-3 output: product_category_id: - - '5504' + - '2944' - input: - product_category_id: hg-3-58-3 + product_category_id: hg-13-7-4 output: product_category_id: - - '6603' + - '3329' - input: - product_category_id: hg-3-58-4 + product_category_id: hg-13-8 output: product_category_id: - - '499805' + - '2608' - input: - product_category_id: hg-3-58-5 + product_category_id: hg-13-9 output: product_category_id: - - '6532' + - '3006' - input: - product_category_id: hg-3-58-6 + product_category_id: hg-13-9-1 output: product_category_id: - - '499804' + - '2809' - input: - product_category_id: hg-3-58-7 + product_category_id: hg-13-9-2 output: product_category_id: - - '3144' + - '2524' - input: - product_category_id: hg-3-58-8 + product_category_id: hg-13-9-3 output: product_category_id: - - '5990' + - '2249' - input: - product_category_id: hg-3-58-9 + product_category_id: hg-13-9-4 output: product_category_id: - - '5991' + - '6073' - input: - product_category_id: hg-3-59 + product_category_id: hg-13-10 output: product_category_id: - - '5922' + - '505826' - input: - product_category_id: hg-3-6 + product_category_id: hg-13-11 output: product_category_id: - - '573' + - '2370' - input: - product_category_id: hg-3-60 + product_category_id: hg-13-12 output: product_category_id: - - '599' + - '7399' - input: - product_category_id: hg-3-61 + product_category_id: hg-13-13 output: product_category_id: - - '6535' + - '6274' - input: - product_category_id: hg-3-62 + product_category_id: hg-13-13-1 output: product_category_id: - - '7173' + - '6272' - input: - product_category_id: hg-3-63 + product_category_id: hg-13-13-1-2 output: product_category_id: - - '711' + - '6272' - input: - product_category_id: hg-3-64 + product_category_id: hg-13-13-1-3 output: product_category_id: - - '4454' + - '6272' - input: - product_category_id: hg-3-65 + product_category_id: hg-13-13-1-4 output: product_category_id: - - '4233' + - '6272' - input: - product_category_id: hg-3-66 + product_category_id: hg-13-13-1-5 output: product_category_id: - - '6424' + - '6272' - input: - product_category_id: hg-3-66-1 + product_category_id: hg-13-13-2 output: product_category_id: - - '6424' + - '4932' - input: - product_category_id: hg-3-66-2 + product_category_id: hg-13-13-3 output: product_category_id: - - '6424' + - '6273' - input: - product_category_id: hg-3-67 + product_category_id: hg-14 output: product_category_id: - - '602' + - '2956' - input: - product_category_id: hg-3-68 + product_category_id: hg-14-1 output: product_category_id: - - '2334' + - '7338' - input: - product_category_id: hg-3-69 + product_category_id: hg-14-2 output: product_category_id: - - '712' + - '7447' - input: - product_category_id: hg-3-69-1 + product_category_id: hg-14-3 output: product_category_id: - - '712' + - '3185' - input: - product_category_id: hg-3-69-2 + product_category_id: hg-14-4 output: product_category_id: - - '712' + - '3522' - input: - product_category_id: hg-3-7 + product_category_id: hg-14-5 output: product_category_id: - - '5521' + - '505312' - input: - product_category_id: hg-3-7-1 + product_category_id: hg-15 output: product_category_id: - - '5521' + - '4171' - input: - product_category_id: hg-3-7-3 + product_category_id: hg-15-1 output: product_category_id: - - '5521' + - '569' - input: - product_category_id: hg-3-7-4 + product_category_id: hg-15-1-1 output: product_category_id: - - '5521' + - '505803' - input: - product_category_id: hg-3-7-5 + product_category_id: hg-15-1-2 output: product_category_id: - - '5521' + - '2314' - input: - product_category_id: hg-3-7-6 + product_category_id: hg-15-1-3 output: product_category_id: - - '5521' + - '2974' - input: - product_category_id: hg-3-7-7 + product_category_id: hg-15-1-4 output: product_category_id: - - '5521' + - '1985' - input: - product_category_id: hg-3-7-8 + product_category_id: hg-15-1-5 output: product_category_id: - - '5521' + - '2541' - input: - product_category_id: hg-3-7-9 + product_category_id: hg-15-1-6 output: product_category_id: - - '5521' + - '4452' - input: - product_category_id: hg-3-70 + product_category_id: hg-15-1-6-1 output: product_category_id: - - '714' + - '4420' - input: - product_category_id: hg-3-71 + product_category_id: hg-15-1-6-2 output: product_category_id: - - '2839' + - '2991' - input: - product_category_id: hg-3-71-1 + product_category_id: hg-15-1-7 output: product_category_id: - - '2839' + - '1599' - input: - product_category_id: hg-3-71-2 + product_category_id: hg-15-1-8 output: product_category_id: - - '2839' + - '2927' - input: - product_category_id: hg-3-72 + product_category_id: hg-15-1-9 output: product_category_id: - - '6530' + - '2700' - input: - product_category_id: hg-3-73 + product_category_id: hg-15-1-10 output: product_category_id: - - '6254' + - '505287' - input: - product_category_id: hg-3-73-1 + product_category_id: hg-15-2 output: product_category_id: - - '6256' + - '505832' - input: - product_category_id: hg-3-73-2 + product_category_id: hg-15-3 output: product_category_id: - - '6257' + - '601' - input: - product_category_id: hg-3-73-3 + product_category_id: hg-15-3-1 output: product_category_id: - - '6255' + - '4203' - input: - product_category_id: hg-3-73-3-1 + product_category_id: hg-15-3-2 output: product_category_id: - - '6255' + - '4343' - input: - product_category_id: hg-3-73-3-2 + product_category_id: hg-15-3-3 output: product_category_id: - - '6255' + - '2547' - input: - product_category_id: hg-3-73-4 + product_category_id: hg-15-3-4 output: product_category_id: - - '8042' + - '6325' - input: - product_category_id: hg-3-73-4-1 + product_category_id: hg-15-3-5 output: product_category_id: - - '8042' + - '6322' - input: - product_category_id: hg-3-73-4-2 + product_category_id: hg-15-3-6 output: product_category_id: - - '8042' + - '4143' - input: - product_category_id: hg-3-73-4-3 + product_category_id: hg-15-4 output: product_category_id: - - '8042' + - '4077' - input: - product_category_id: hg-3-73-4-4 + product_category_id: hg-15-4-1 output: product_category_id: - - '8042' + - '576' - input: - product_category_id: hg-3-73-4-5 + product_category_id: hg-15-4-1-1 output: product_category_id: - - '8042' + - '576' - input: - product_category_id: hg-3-74 + product_category_id: hg-15-4-1-2 output: product_category_id: - - '603' + - '576' - input: - product_category_id: hg-3-74-1 + product_category_id: hg-15-4-2 output: product_category_id: - - '2882' + - '4126' - input: - product_category_id: hg-3-74-1-1 + product_category_id: hg-15-4-3 output: product_category_id: - - '2882' + - '4257' - input: - product_category_id: hg-3-74-1-2 + product_category_id: hg-16 output: product_category_id: - - '2882' + - '4358' - input: - product_category_id: hg-3-74-2 + product_category_id: hg-16-1 output: product_category_id: - - '6492' + - '4358' - input: - product_category_id: hg-3-74-3 + product_category_id: hg-16-2 output: product_category_id: - - '2885' + - '4358' - input: - product_category_id: hg-3-74-3-1 + product_category_id: hg-17 output: product_category_id: - - '2885' + - '985' - input: - product_category_id: hg-3-74-3-2 + product_category_id: hg-17-1 output: product_category_id: - - '2885' + - '5590' - input: - product_category_id: hg-3-74-4 + product_category_id: hg-17-2 output: product_category_id: - - '5989' + - '984' - input: - product_category_id: hg-3-74-5 + product_category_id: hg-17-3 output: product_category_id: - - '4375' + - '6762' - input: - product_category_id: hg-3-74-6 + product_category_id: hg-17-3-1 output: product_category_id: - - '2621' + - '543559' - input: - product_category_id: hg-3-74-6-1 + product_category_id: hg-17-3-1-1 output: product_category_id: - - '2621' + - '543559' - input: - product_category_id: hg-3-74-6-2 + product_category_id: hg-17-3-1-2 output: product_category_id: - - '2621' + - '543559' - input: - product_category_id: hg-3-75 + product_category_id: hg-17-3-2 output: product_category_id: - - '3262' + - '6762' - input: - product_category_id: hg-3-75-1 + product_category_id: hg-17-3-3 output: product_category_id: - - '3262' + - '543560' - input: - product_category_id: hg-3-75-2 + product_category_id: hg-17-3-3-1 output: product_category_id: - - '3262' + - '543560' - input: - product_category_id: hg-3-75-3 + product_category_id: hg-17-3-3-2 output: product_category_id: - - '3262' + - '543560' - input: - product_category_id: hg-3-75-5 + product_category_id: hg-17-3-4 output: product_category_id: - - '3262' + - '543558' - input: - product_category_id: hg-3-76 + product_category_id: hg-17-4 output: product_category_id: - - '6267' + - '505285' - input: - product_category_id: hg-3-76-1 + product_category_id: hg-17-4-1 output: product_category_id: - - '6267' + - '505285' - input: - product_category_id: hg-3-76-2 + product_category_id: hg-17-4-2 output: product_category_id: - - '6267' + - '505285' - input: - product_category_id: hg-3-8 + product_category_id: hg-17-5 output: product_category_id: - - '6993' + - '2802' - input: - product_category_id: hg-3-8-1 + product_category_id: hg-17-5-1 output: product_category_id: - - '698' + - '543561' - input: - product_category_id: hg-3-8-2 + product_category_id: hg-17-5-1-1 output: product_category_id: - - '6995' + - '543561' - input: - product_category_id: hg-3-8-3 + product_category_id: hg-17-5-1-2 output: product_category_id: - - '6994' + - '543561' - input: - product_category_id: hg-3-9 + product_category_id: hg-17-5-2 output: product_category_id: - - '230911' + - '543562' - input: - product_category_id: hg-3-9-6 + product_category_id: hg-17-5-2-1 output: product_category_id: - - '230911' + - '543562' - input: - product_category_id: hg-3-9-7 + product_category_id: hg-17-5-2-2 output: product_category_id: - - '230911' + - '543562' - input: - product_category_id: hg-3-9-8 + product_category_id: hg-17-6 output: product_category_id: - - '230911' + - '1684' - input: - product_category_id: hg-4 + product_category_id: hg-18 output: product_category_id: - - '5835' + - '729' - input: - product_category_id: hg-4-1 + product_category_id: hg-18-1 output: product_category_id: - - '4490' + - '2832' - input: - product_category_id: hg-4-2 + product_category_id: hg-18-1-1 output: product_category_id: - - '6897' + - '2939' - input: - product_category_id: hg-4-3 + product_category_id: hg-18-1-2 output: product_category_id: - - '5836' + - '500042' - input: - product_category_id: hg-4-4 + product_category_id: hg-18-1-3 output: product_category_id: - - '7058' + - '2981' - input: - product_category_id: hg-4-5 + product_category_id: hg-18-1-4 output: product_category_id: - - '4491' + - '505815' - input: - product_category_id: hg-5 + product_category_id: hg-18-1-5 output: product_category_id: - - '2862' + - '6996' - input: - product_category_id: hg-5-1 + product_category_id: hg-18-1-6 output: product_category_id: - - '2044' + - '6771' - input: - product_category_id: hg-5-10 + product_category_id: hg-18-1-7 output: product_category_id: - - '695' + - '3017' - input: - product_category_id: hg-5-10-1 + product_category_id: hg-18-1-8 output: product_category_id: - - '695' + - '500050' - input: - product_category_id: hg-5-10-2 + product_category_id: hg-18-1-9 output: product_category_id: - - '695' + - '2994' - input: - product_category_id: hg-5-11 + product_category_id: hg-18-1-9-1 output: product_category_id: - - '4918' + - '2994' - input: - product_category_id: hg-5-2 + product_category_id: hg-18-1-9-2 output: product_category_id: - - '6563' + - '2994' - input: - product_category_id: hg-5-3 + product_category_id: hg-18-1-10 output: product_category_id: - - '7523' + - '7496' - input: - product_category_id: hg-5-4 + product_category_id: hg-18-1-11 output: product_category_id: - - '7109' + - '2860' - input: - product_category_id: hg-5-5 + product_category_id: hg-18-1-11-1 output: product_category_id: - - '2365' + - '2860' - input: - product_category_id: hg-5-6 + product_category_id: hg-18-1-11-2 output: product_category_id: - - '1530' + - '2860' - input: - product_category_id: hg-5-7 + product_category_id: hg-18-1-12 output: product_category_id: - - '625' + - '5654' - input: - product_category_id: hg-5-7-1 + product_category_id: hg-18-1-13 output: product_category_id: - - '625' + - '6766' - input: - product_category_id: hg-5-8 + product_category_id: hg-18-1-13-1 output: product_category_id: - - '7091' + - '6766' - input: - product_category_id: hg-5-9 + product_category_id: hg-18-1-13-2 output: product_category_id: - - '7029' + - '6766' - input: - product_category_id: hg-5-9-1 + product_category_id: hg-18-1-13-3 output: product_category_id: - - '7029' + - '6766' - input: - product_category_id: hg-5-9-2 + product_category_id: hg-18-1-14 output: product_category_id: - - '7029' + - '503751' - input: - product_category_id: hg-5-9-3 + product_category_id: hg-18-1-15 output: product_category_id: - - '7029' + - '2755' - input: - product_category_id: hg-6 + product_category_id: hg-18-1-16 output: product_category_id: - - '6792' + - '2997' - input: - product_category_id: hg-6-1 + product_category_id: hg-18-1-16-1 output: product_category_id: - - '6792' + - '2997' - input: - product_category_id: hg-6-2 + product_category_id: hg-18-1-16-2 output: product_category_id: - - '6792' + - '2997' - input: - product_category_id: hg-7 + product_category_id: hg-18-1-17 output: product_category_id: - - '1679' + - '2672' - input: - product_category_id: hg-7-1 + product_category_id: hg-18-1-17-1 output: product_category_id: - - '7226' + - '2672' - input: - product_category_id: hg-7-2 + product_category_id: hg-18-1-17-2 output: product_category_id: - - '1871' + - '2672' - input: - product_category_id: hg-7-3 + product_category_id: hg-18-1-17-3 output: product_category_id: - - '1639' + - '2672' - input: - product_category_id: hg-7-4 + product_category_id: hg-18-1-17-4 output: product_category_id: - - '1434' + - '2672' - input: - product_category_id: hg-7-5 + product_category_id: hg-18-1-18 output: product_category_id: - - '1934' + - '5546' - input: - product_category_id: hg-7-6 + product_category_id: hg-18-2 output: product_category_id: - - '7227' + - '543687' - input: - product_category_id: hg-7-7 + product_category_id: hg-18-2-1 output: product_category_id: - - '499673' + - '543633' - input: - product_category_id: hg-7-7-1 + product_category_id: hg-18-2-1-1 output: product_category_id: - - '2164' + - '543633' - input: - product_category_id: hg-7-7-2 + product_category_id: hg-18-2-1-2 output: product_category_id: - - '1471' + - '543633' - input: - product_category_id: hg-7-8 + product_category_id: hg-18-2-2 output: product_category_id: - - '1306' + - '543632' - input: - product_category_id: hg-7-8-1 + product_category_id: hg-18-2-3 output: product_category_id: - - '1306' + - '543631' - input: - product_category_id: hg-7-8-2 + product_category_id: hg-18-3 output: product_category_id: - - '1306' + - '3992' - input: - product_category_id: hg-8 + product_category_id: hg-18-4 output: product_category_id: - - '3348' + - '2982' - input: - product_category_id: hg-8-1 + product_category_id: hg-18-5 output: product_category_id: - - '2367' + - '2810' - input: - product_category_id: hg-8-1-1 + product_category_id: hg-19 output: product_category_id: - - '5826' + - '600' - input: - product_category_id: hg-8-1-2 + product_category_id: hg-19-1 output: product_category_id: - - '3573' + - '4082' - input: - product_category_id: hg-8-10 + product_category_id: hg-19-2 output: product_category_id: - - '4650' + - '6882' - input: - product_category_id: hg-8-10-1 + product_category_id: hg-19-3 output: product_category_id: - - '4651' + - '6879' - input: - product_category_id: hg-8-11 + product_category_id: hg-19-3-1 output: product_category_id: - - '618' + - '6879' - input: - product_category_id: hg-8-11-11 + product_category_id: hg-19-3-2 output: product_category_id: - - '618' + - '6879' - input: - product_category_id: hg-8-11-12 + product_category_id: hg-19-4 output: product_category_id: - - '618' + - '6881' - input: - product_category_id: hg-8-11-17 + product_category_id: hg-19-5 output: product_category_id: - - '618' + - '500007' - input: - product_category_id: hg-8-11-2 + product_category_id: hg-19-6 output: product_category_id: - - '618' + - '6880' - input: - product_category_id: hg-8-11-21 + product_category_id: hg-19-7 output: product_category_id: - - '618' + - '6878' - input: - product_category_id: hg-8-11-22 + product_category_id: hg-20 output: product_category_id: - - '618' + - '6173' - input: - product_category_id: hg-8-11-25 + product_category_id: hg-20-1 output: product_category_id: - - '618' + - '6173' - input: - product_category_id: hg-8-11-26 + product_category_id: hg-20-2 output: product_category_id: - - '618' + - '6173' - input: - product_category_id: hg-8-11-28 + product_category_id: hg-21 output: product_category_id: - - '618' + - '2639' - input: - product_category_id: hg-8-11-29 + product_category_id: lb output: product_category_id: - - '618' + - '5181' - input: - product_category_id: hg-8-11-4 + product_category_id: lb-1 output: product_category_id: - - '618' + - '100' - input: - product_category_id: hg-8-11-44 + product_category_id: lb-1-12 output: product_category_id: - - '618' + - '100' - input: - product_category_id: hg-8-11-47 + product_category_id: lb-2 output: product_category_id: - - '618' + - '101' - input: - product_category_id: hg-8-11-48 + product_category_id: lb-3 output: product_category_id: - - '618' + - '108' - input: - product_category_id: hg-8-11-49 + product_category_id: lb-3-3 output: product_category_id: - - '618' + - '108' - input: - product_category_id: hg-8-11-5 + product_category_id: lb-3-4 output: product_category_id: - - '618' + - '108' - input: - product_category_id: hg-8-11-51 + product_category_id: lb-3-5 output: product_category_id: - - '618' + - '108' - input: - product_category_id: hg-8-11-52 + product_category_id: lb-4 output: product_category_id: - - '618' + - '549' - input: - product_category_id: hg-8-11-6 + product_category_id: lb-5 output: product_category_id: - - '618' + - '502974' - input: - product_category_id: hg-8-11-62 + product_category_id: lb-6 output: product_category_id: - - '618' + - '103' - input: - product_category_id: hg-8-11-9 + product_category_id: lb-6-1 output: product_category_id: - - '618' + - '103' - input: - product_category_id: hg-8-12 + product_category_id: lb-7 output: product_category_id: - - '2751' + - '104' - input: - product_category_id: hg-8-12-1 + product_category_id: lb-8 output: product_category_id: - - '2310' + - '105' - input: - product_category_id: hg-8-12-2 + product_category_id: lb-9 output: product_category_id: - - '2175' + - '110' - input: - product_category_id: hg-8-12-3 + product_category_id: lb-9-1 output: product_category_id: - - '1744' + - '503014' - input: - product_category_id: hg-8-12-4 + product_category_id: lb-9-2 output: product_category_id: - - '500063' + - '7521' - input: - product_category_id: hg-8-12-5 + product_category_id: lb-9-3 output: product_category_id: - - '1835' + - '499691' - input: - product_category_id: hg-8-12-6 + product_category_id: lb-9-4 output: product_category_id: - - '2221' + - '5652' - input: - product_category_id: hg-8-12-7 + product_category_id: lb-9-5 output: product_category_id: - - '1709' + - '5651' - input: - product_category_id: hg-8-2 + product_category_id: lb-9-6 output: product_category_id: - - '3410' + - '5620' - input: - product_category_id: hg-8-2-1 + product_category_id: lb-9-7 output: product_category_id: - - '3667' + - '6919' - input: - product_category_id: hg-8-3 + product_category_id: lb-9-8 output: product_category_id: - - '4667' + - '5650' - input: - product_category_id: hg-8-3-1 + product_category_id: lb-10 output: product_category_id: - - '4667' + - '106' - input: - product_category_id: hg-8-3-3 + product_category_id: lb-11 output: product_category_id: - - '4667' + - '5608' - input: - product_category_id: hg-8-4 + product_category_id: lb-12 output: product_category_id: - - '5089' + - '107' - input: - product_category_id: hg-8-4-1 + product_category_id: lb-12-2 output: product_category_id: - - '5089' + - '107' - input: - product_category_id: hg-8-5 + product_category_id: lb-12-3 output: product_category_id: - - '4548' + - '107' - input: - product_category_id: hg-8-5-1 + product_category_id: lb-12-5 output: product_category_id: - - '4548' + - '107' - input: - product_category_id: hg-8-5-3 + product_category_id: lb-12-9 output: product_category_id: - - '4548' + - '107' - input: - product_category_id: hg-8-5-4 + product_category_id: lb-13 output: product_category_id: - - '4548' + - '5181' - input: - product_category_id: hg-8-5-5 + product_category_id: lb-14 output: product_category_id: - - '4548' + - '6553' - input: - product_category_id: hg-8-5-6 + product_category_id: ma output: product_category_id: - - '4548' + - '772' - input: - product_category_id: hg-8-5-8 + product_category_id: ma-1 output: product_category_id: - - '4548' + - '773' - input: - product_category_id: hg-8-6 + product_category_id: ma-1-1 output: product_category_id: - - '6773' + - '774' - input: - product_category_id: hg-8-6-1 + product_category_id: ma-1-2 output: product_category_id: - - '6773' + - '5055' - input: - product_category_id: hg-8-6-2 + product_category_id: ma-1-3 output: product_category_id: - - '6773' + - '4060' - input: - product_category_id: hg-8-6-3 + product_category_id: ma-1-4 output: product_category_id: - - '6773' + - '6040' - input: - product_category_id: hg-8-6-4 + product_category_id: ma-1-5 output: product_category_id: - - '6773' + - '776' - input: - product_category_id: hg-8-6-5 + product_category_id: ma-2 output: product_category_id: - - '6773' + - '772' - input: - product_category_id: hg-8-6-6 + product_category_id: ma-2-1 output: product_category_id: - - '6773' + - '2214' - input: - product_category_id: hg-8-6-7 + product_category_id: ma-2-1-1 output: product_category_id: - - '6773' + - '781' - input: - product_category_id: hg-8-7 + product_category_id: ma-2-1-2 output: product_category_id: - - '7110' + - '505762' - input: - product_category_id: hg-8-7-1 + product_category_id: ma-2-1-3 output: product_category_id: - - '7111' + - '503026' - input: - product_category_id: hg-8-7-1-1 + product_category_id: ma-2-1-3-1 output: product_category_id: - - '7111' + - '499857' - input: - product_category_id: hg-8-7-1-2 + product_category_id: ma-2-1-4 output: product_category_id: - - '7111' + - '500048' - input: - product_category_id: hg-8-7-1-3 + product_category_id: ma-2-1-5 output: product_category_id: - - '7111' + - '503021' - input: - product_category_id: hg-8-8 + product_category_id: ma-2-1-5-1 output: product_category_id: - - '3862' + - '499855' - input: - product_category_id: hg-8-8-1 + product_category_id: ma-2-1-5-2 output: product_category_id: - - '3402' + - '499856' - input: - product_category_id: hg-8-9 + product_category_id: ma-2-1-5-3 output: product_category_id: - - '3456' + - '499854' - input: - product_category_id: hg-8-9-1 + product_category_id: ma-2-1-6 output: product_category_id: - - '5158' + - '1806' - input: - product_category_id: hg-8-9-1-1 + product_category_id: ma-2-1-7 output: product_category_id: - - '5158' + - '1783' - input: - product_category_id: hg-8-9-1-2 + product_category_id: ma-2-1-8 output: product_category_id: - - '5158' + - '5067' - input: - product_category_id: hg-8-9-1-4 + product_category_id: ma-2-1-9 output: product_category_id: - - '5158' + - '1822' - input: - product_category_id: hg-8-9-2 + product_category_id: ma-2-1-10 output: product_category_id: - - '5159' + - '499853' - input: - product_category_id: hg-8-9-2-1 + product_category_id: ma-2-2 output: product_category_id: - - '5159' + - '780' - input: - product_category_id: hg-8-9-2-2 + product_category_id: ma-2-2-1 output: product_category_id: - - '5159' + - '3833' - input: - product_category_id: hg-8-9-2-3 + product_category_id: ma-2-2-2 output: product_category_id: - - '5159' + - '7567' - input: - product_category_id: hg-8-9-3 + product_category_id: ma-2-2-3 output: product_category_id: - - '5160' + - '6109' - input: - product_category_id: hg-8-9-4 + product_category_id: ma-2-2-4 output: product_category_id: - - '500085' + - '726' - input: - product_category_id: hg-9 + product_category_id: ma-2-2-5 output: product_category_id: - - '604' + - '3092' - input: - product_category_id: hg-9-1 + product_category_id: ma-2-2-6 output: product_category_id: - - '1626' + - '7175' - input: - product_category_id: hg-9-1-1 + product_category_id: ma-2-2-7 output: product_category_id: - - '605' + - '3924' - input: - product_category_id: hg-9-1-10 + product_category_id: ma-2-2-8 output: product_category_id: - - '6709' + - '727' - input: - product_category_id: hg-9-1-11 + product_category_id: ma-2-2-9 output: product_category_id: - - '2649' + - '3666' - input: - product_category_id: hg-9-1-12 + product_category_id: ma-2-2-10 output: product_category_id: - - '611' + - '3694' - input: - product_category_id: hg-9-1-2 + product_category_id: ma-2-2-11 output: product_category_id: - - '606' + - '3437' - input: - product_category_id: hg-9-1-3 + product_category_id: me output: product_category_id: - - '607' + - '783' - input: - product_category_id: hg-9-1-4 + product_category_id: me-1 output: product_category_id: - - '7328' + - '784' - input: - product_category_id: hg-9-1-5 + product_category_id: me-1-1 output: product_category_id: - - '6727' + - '543541' - input: - product_category_id: hg-9-1-5-3 + product_category_id: me-1-2 output: product_category_id: - - '6727' + - '543542' - input: - product_category_id: hg-9-1-5-5 + product_category_id: me-1-3 output: product_category_id: - - '6727' + - '543543' - input: - product_category_id: hg-9-1-6 + product_category_id: me-2 output: product_category_id: - - '608' + - '886' - input: - product_category_id: hg-9-1-6-1 + product_category_id: me-2-1 output: product_category_id: - - '1700' + - '543539' - input: - product_category_id: hg-9-1-6-2 + product_category_id: me-2-1-1 output: product_category_id: - - '2535' + - '543539' - input: - product_category_id: hg-9-1-6-3 + product_category_id: me-2-1-2 output: product_category_id: - - '7527' + - '543539' - input: - product_category_id: hg-9-1-6-4 + product_category_id: me-2-1-3 output: product_category_id: - - '4485' + - '543539' - input: - product_category_id: hg-9-1-6-5 + product_category_id: me-2-2 output: product_category_id: - - '8090' + - '543540' - input: - product_category_id: hg-9-1-7 + product_category_id: me-2-2-1 output: product_category_id: - - '3082' + - '543540' - input: - product_category_id: hg-9-1-7-1 + product_category_id: me-2-2-2 output: product_category_id: - - '3082' + - '543540' - input: - product_category_id: hg-9-1-7-2 + product_category_id: me-2-2-3 output: product_category_id: - - '3082' + - '543540' - input: - product_category_id: hg-9-1-8 + product_category_id: me-3 output: product_category_id: - - '2060' + - '855' - input: - product_category_id: hg-9-1-9 + product_category_id: me-3-1 output: product_category_id: - - '613' + - '543526' - input: - product_category_id: hg-9-10 + product_category_id: me-3-2 output: product_category_id: - - '619' + - '543524' - input: - product_category_id: hg-9-10-1 + product_category_id: me-3-3 output: product_category_id: - - '619' + - '543522' - input: - product_category_id: hg-9-10-2 + product_category_id: me-3-4 output: product_category_id: - - '619' + - '543523' - input: - product_category_id: hg-9-11 + product_category_id: me-3-5 output: product_category_id: - - '7121' + - '543525' - input: - product_category_id: hg-9-12 + product_category_id: me-3-6 output: product_category_id: - - '621' + - '855' - input: - product_category_id: hg-9-2 + product_category_id: me-4 output: product_category_id: - - '235920' + - '783' - input: - product_category_id: hg-9-3 + product_category_id: me-4-1 output: product_category_id: - - '616' + - '783' - input: - product_category_id: hg-9-3-1 + product_category_id: me-4-2 output: product_category_id: - - '543601' + - '783' - input: - product_category_id: hg-9-3-1-1 + product_category_id: me-4-3 output: product_category_id: - - '543601' + - '783' - input: - product_category_id: hg-9-3-1-2 + product_category_id: me-5 output: product_category_id: - - '543601' + - '5037' - input: - product_category_id: hg-9-3-1-3 + product_category_id: me-6 output: product_category_id: - - '543601' + - '887' - input: - product_category_id: hg-9-3-1-4 + product_category_id: me-7 output: product_category_id: - - '543601' + - '839' - input: - product_category_id: hg-9-3-1-5 + product_category_id: me-7-1 output: product_category_id: - - '543601' + - '839' - input: - product_category_id: hg-9-3-1-6 + product_category_id: me-7-2 output: product_category_id: - - '543601' + - '543529' - input: - product_category_id: hg-9-3-1-7 + product_category_id: me-7-3 output: product_category_id: - - '543601' + - '543527' - input: - product_category_id: hg-9-3-2 + product_category_id: me-7-4 output: product_category_id: - - '543600' + - '543528' - input: - product_category_id: hg-9-3-2-1 + product_category_id: me-8 output: product_category_id: - - '543600' + - '783' - input: - product_category_id: hg-9-3-2-2 + product_category_id: os output: product_category_id: - - '543600' + - '922' - input: - product_category_id: hg-9-3-2-3 + product_category_id: os-1 output: product_category_id: - - '543600' + - '6174' - input: - product_category_id: hg-9-3-2-4 + product_category_id: os-1-1 output: product_category_id: - - '543600' + - '6176' - input: - product_category_id: hg-9-3-2-5 + product_category_id: os-1-2 output: product_category_id: - - '543600' + - '4941' - input: - product_category_id: hg-9-3-3 + product_category_id: os-1-3 output: product_category_id: - - '616' + - '6175' - input: - product_category_id: hg-9-3-4 + product_category_id: os-1-4 output: product_category_id: - - '543602' + - '93' - input: - product_category_id: hg-9-3-4-1 + product_category_id: os-2 output: product_category_id: - - '543602' + - '8078' - input: - product_category_id: hg-9-3-4-2 + product_category_id: os-3 output: product_category_id: - - '543602' + - '923' - input: - product_category_id: hg-9-3-4-3 + product_category_id: os-3-1 output: product_category_id: - - '543602' + - '5997' - input: - product_category_id: hg-9-3-4-5 + product_category_id: os-3-2 output: product_category_id: - - '543602' + - '4312' - input: - product_category_id: hg-9-3-4-6 + product_category_id: os-3-2-1 output: product_category_id: - - '543602' + - '4086' - input: - product_category_id: hg-9-3-4-7 + product_category_id: os-3-2-1-1 output: product_category_id: - - '543602' + - '4212' - input: - product_category_id: hg-9-3-6 + product_category_id: os-3-2-1-2 output: product_category_id: - - '543603' + - '4183' - input: - product_category_id: hg-9-3-6-1 + product_category_id: os-3-2-1-3 output: product_category_id: - - '543603' + - '2139' - input: - product_category_id: hg-9-3-6-2 + product_category_id: os-3-2-2 output: product_category_id: - - '543603' + - '4303' - input: - product_category_id: hg-9-3-6-3 + product_category_id: os-3-2-3 output: product_category_id: - - '543603' + - '4182' - input: - product_category_id: hg-9-3-6-4 + product_category_id: os-3-2-4 output: product_category_id: - - '543603' + - '7080' - input: - product_category_id: hg-9-3-6-5 + product_category_id: os-3-2-4-1 output: product_category_id: - - '543603' + - '7080' - input: - product_category_id: hg-9-3-6-6 + product_category_id: os-3-2-4-2 output: product_category_id: - - '543603' + - '7080' - input: - product_category_id: hg-9-4 + product_category_id: os-3-3 output: product_category_id: - - '5294' + - '6190' - input: - product_category_id: hg-9-4-1 + product_category_id: os-3-4 output: product_category_id: - - '5294' + - '6171' - input: - product_category_id: hg-9-4-2 + product_category_id: os-3-5 output: product_category_id: - - '5294' + - '927' - input: - product_category_id: hg-9-5 + product_category_id: os-3-5-1 output: product_category_id: - - '4483' + - '927' - input: - product_category_id: hg-9-6 + product_category_id: os-3-5-2 output: product_category_id: - - '6741' + - '927' - input: - product_category_id: hg-9-6-1 + product_category_id: os-3-5-3 output: product_category_id: - - '6741' + - '927' - input: - product_category_id: hg-9-6-2 + product_category_id: os-3-5-4 output: product_category_id: - - '6741' + - '927' - input: - product_category_id: hg-9-7 + product_category_id: os-3-6 output: product_category_id: - - '609' + - '5531' - input: - product_category_id: hg-9-8 + product_category_id: os-3-7 output: product_category_id: - - '2706' + - '6177' - input: - product_category_id: hg-9-8-1 + product_category_id: os-3-8 output: product_category_id: - - '2612' + - '928' - input: - product_category_id: hg-9-8-2 + product_category_id: os-3-9 output: product_category_id: - - '5138' + - '926' - input: - product_category_id: hg-9-8-3 + product_category_id: os-3-10 output: product_category_id: - - '5139' + - '939' - input: - product_category_id: hg-9-8-3-1 + product_category_id: os-3-10-1 output: product_category_id: - - '5139' + - '939' - input: - product_category_id: hg-9-8-3-2 + product_category_id: os-3-10-2 output: product_category_id: - - '5139' + - '939' - input: - product_category_id: hg-9-8-4 + product_category_id: os-3-10-3 output: product_category_id: - - '2849' + - '939' - input: - product_category_id: hg-9-8-4-1 + product_category_id: os-3-10-4 output: product_category_id: - - '2849' + - '939' - input: - product_category_id: hg-9-8-4-2 + product_category_id: os-3-11 output: product_category_id: - - '2849' + - '925' - input: - product_category_id: hg-9-8-4-3 + product_category_id: os-3-12 output: product_category_id: - - '2849' + - '930' - input: - product_category_id: hg-9-8-4-4 + product_category_id: os-3-13 output: product_category_id: - - '2849' + - '6884' - input: - product_category_id: hg-9-8-5 + product_category_id: os-3-13-1 output: product_category_id: - - '5140' + - '543663' - input: - product_category_id: hg-9-8-6 + product_category_id: os-3-13-2 output: product_category_id: - - '2549' + - '543662' - input: - product_category_id: hg-9-9 + product_category_id: os-3-14 output: product_category_id: - - '500081' + - '5070' - input: - product_category_id: lb + product_category_id: os-3-15 output: product_category_id: - - '5181' + - '6962' - input: - product_category_id: lb-1 + product_category_id: os-3-16 output: product_category_id: - - '100' + - '3062' - input: - product_category_id: lb-1-12 + product_category_id: os-3-17 output: product_category_id: - - '100' + - '6885' - input: - product_category_id: lb-10 + product_category_id: os-3-17-1 output: product_category_id: - - '106' + - '543641' - input: - product_category_id: lb-11 + product_category_id: os-3-17-2 output: product_category_id: - - '5608' + - '543640' - input: - product_category_id: lb-12 + product_category_id: os-3-18 output: product_category_id: - - '107' + - '6779' - input: - product_category_id: lb-12-2 + product_category_id: os-4 output: product_category_id: - - '107' + - '932' - input: - product_category_id: lb-12-3 + product_category_id: os-4-1 output: product_category_id: - - '107' + - '6319' - input: - product_category_id: lb-12-5 + product_category_id: os-4-2 output: product_category_id: - - '107' + - '2591' - input: - product_category_id: lb-12-9 + product_category_id: os-4-2-1 output: product_category_id: - - '107' + - '543618' - input: - product_category_id: lb-13 + product_category_id: os-4-2-2 output: product_category_id: - - '5181' + - '543620' - input: - product_category_id: lb-14 + product_category_id: os-4-2-3 output: product_category_id: - - '6553' + - '543619' - input: - product_category_id: lb-2 + product_category_id: os-4-3 output: product_category_id: - - '101' + - '938' - input: - product_category_id: lb-3 + product_category_id: os-4-3-1 output: product_category_id: - - '108' + - '938' - input: - product_category_id: lb-3-3 + product_category_id: os-4-3-2 output: product_category_id: - - '108' + - '938' - input: - product_category_id: lb-3-4 + product_category_id: os-4-3-3 output: product_category_id: - - '108' + - '938' - input: - product_category_id: lb-3-5 + product_category_id: os-4-4 output: product_category_id: - - '108' + - '960' - input: - product_category_id: lb-4 + product_category_id: os-4-4-1 output: product_category_id: - - '549' + - '4377' - input: - product_category_id: lb-5 + product_category_id: os-4-4-2 output: product_category_id: - - '502974' + - '4154' - input: - product_category_id: lb-6 + product_category_id: os-4-4-3 output: product_category_id: - - '103' + - '4137' - input: - product_category_id: lb-6-1 + product_category_id: os-4-4-4 output: product_category_id: - - '103' + - '5502' - input: - product_category_id: lb-7 + product_category_id: os-4-4-5 output: product_category_id: - - '104' + - '4200' - input: - product_category_id: lb-8 + product_category_id: os-4-4-6 output: product_category_id: - - '105' + - '4117' - input: - product_category_id: lb-9 + product_category_id: os-4-5 output: product_category_id: - - '110' + - '8015' - input: - product_category_id: lb-9-1 + product_category_id: os-4-5-1 output: product_category_id: - - '503014' + - '8015' - input: - product_category_id: lb-9-2 + product_category_id: os-4-5-2 output: product_category_id: - - '7521' + - '8015' - input: - product_category_id: lb-9-3 + product_category_id: os-4-5-3 output: product_category_id: - - '499691' + - '8015' - input: - product_category_id: lb-9-4 + product_category_id: os-4-6 output: product_category_id: - - '5652' + - '505805' - input: - product_category_id: lb-9-5 + product_category_id: os-4-7 output: product_category_id: - - '5651' + - '934' - input: - product_category_id: lb-9-6 + product_category_id: os-4-7-1 output: product_category_id: - - '5620' + - '934' - input: - product_category_id: lb-9-7 + product_category_id: os-4-7-2 output: product_category_id: - - '6919' + - '934' - input: - product_category_id: lb-9-8 + product_category_id: os-4-8 output: product_category_id: - - '5650' + - '936' - input: - product_category_id: ma + product_category_id: os-4-8-1 output: product_category_id: - - '772' + - '543676' - input: - product_category_id: ma-1 + product_category_id: os-4-8-2 output: product_category_id: - - '773' + - '543675' - input: - product_category_id: ma-1-1 + product_category_id: os-4-9 output: product_category_id: - - '774' + - '956' - input: - product_category_id: ma-1-2 + product_category_id: os-4-9-1 output: product_category_id: - - '5055' + - '2658' - input: - product_category_id: ma-1-3 + product_category_id: os-4-9-2 output: product_category_id: - - '4060' + - '5264' - input: - product_category_id: ma-1-4 + product_category_id: os-4-9-3 output: product_category_id: - - '6040' + - '957' - input: - product_category_id: ma-1-5 + product_category_id: os-4-9-4 output: product_category_id: - - '776' + - '5918' - input: - product_category_id: ma-2 + product_category_id: os-4-9-5 output: product_category_id: - - '772' + - '6930' - input: - product_category_id: ma-2-1 + product_category_id: os-4-9-6 output: product_category_id: - - '2214' + - '1513' - input: - product_category_id: ma-2-1-1 + product_category_id: os-4-9-7 output: product_category_id: - - '781' + - '958' - input: - product_category_id: ma-2-1-10 + product_category_id: os-4-9-8 output: product_category_id: - - '499853' + - '959' - input: - product_category_id: ma-2-1-2 + product_category_id: os-4-9-9 output: product_category_id: - - '505762' + - '961' - input: - product_category_id: ma-2-1-3 + product_category_id: os-4-9-9-1 output: product_category_id: - - '503026' + - '961' - input: - product_category_id: ma-2-1-3-1 + product_category_id: os-4-9-9-3 output: product_category_id: - - '499857' + - '961' - input: - product_category_id: ma-2-1-4 + product_category_id: os-4-9-9-4 output: product_category_id: - - '500048' + - '961' - input: - product_category_id: ma-2-1-5 + product_category_id: os-4-9-9-5 output: product_category_id: - - '503021' + - '961' - input: - product_category_id: ma-2-1-5-1 + product_category_id: os-4-9-9-6 output: product_category_id: - - '499855' + - '961' - input: - product_category_id: ma-2-1-5-2 + product_category_id: os-4-9-9-9 output: product_category_id: - - '499856' + - '961' - input: - product_category_id: ma-2-1-5-3 + product_category_id: os-4-9-10 output: product_category_id: - - '499854' + - '3871' - input: - product_category_id: ma-2-1-6 + product_category_id: os-4-9-11 output: product_category_id: - - '1806' + - '962' - input: - product_category_id: ma-2-1-7 + product_category_id: os-4-9-12 output: product_category_id: - - '1783' + - '5919' - input: - product_category_id: ma-2-1-8 + product_category_id: os-4-9-13 output: product_category_id: - - '5067' + - '3457' - input: - product_category_id: ma-2-1-9 + product_category_id: os-4-9-14 output: product_category_id: - - '1822' + - '2689' - input: - product_category_id: ma-2-2 + product_category_id: os-4-10 output: product_category_id: - - '780' + - '944' - input: - product_category_id: ma-2-2-1 + product_category_id: os-4-11 output: product_category_id: - - '3833' + - '948' - input: - product_category_id: ma-2-2-10 + product_category_id: os-4-12 output: product_category_id: - - '3694' + - '949' - input: - product_category_id: ma-2-2-11 + product_category_id: os-5 output: product_category_id: - - '3437' + - '5829' - input: - product_category_id: ma-2-2-2 + product_category_id: os-5-1 output: product_category_id: - - '7567' + - '5829' - input: - product_category_id: ma-2-2-3 + product_category_id: os-5-2 output: product_category_id: - - '6109' + - '5829' - input: - product_category_id: ma-2-2-4 + product_category_id: os-6 output: product_category_id: - - '726' + - '8499' - input: - product_category_id: ma-2-2-5 + product_category_id: os-7 output: product_category_id: - - '3092' + - '2435' - input: - product_category_id: ma-2-2-6 + product_category_id: os-7-1 output: product_category_id: - - '7175' + - '2435' - input: - product_category_id: ma-2-2-7 + product_category_id: os-7-2 output: product_category_id: - - '3924' + - '2435' - input: - product_category_id: ma-2-2-8 + product_category_id: os-8 output: product_category_id: - - '727' + - '6519' - input: - product_category_id: ma-2-2-9 + product_category_id: os-8-1 output: product_category_id: - - '3666' + - '6462' - input: - product_category_id: me + product_category_id: os-8-2 output: product_category_id: - - '783' + - '6521' - input: - product_category_id: me-1 + product_category_id: os-8-3 output: product_category_id: - - '784' + - '6520' - input: - product_category_id: me-1-1 + product_category_id: os-9 output: product_category_id: - - '543541' + - '6373' - input: - product_category_id: me-1-2 + product_category_id: os-9-1 output: product_category_id: - - '543542' + - '1996' - input: - product_category_id: me-1-3 + product_category_id: os-9-2 output: product_category_id: - - '543543' + - '6182' - input: - product_category_id: me-2 + product_category_id: os-9-3 output: product_category_id: - - '886' + - '6180' - input: - product_category_id: me-2-1 + product_category_id: os-9-4 output: product_category_id: - - '543539' + - '6181' - input: - product_category_id: me-2-1-1 + product_category_id: os-9-5 output: product_category_id: - - '543539' + - '6179' - input: - product_category_id: me-2-1-2 + product_category_id: os-10 output: product_category_id: - - '543539' + - '950' - input: - product_category_id: me-2-1-3 + product_category_id: os-10-1 output: product_category_id: - - '543539' + - '499864' - input: - product_category_id: me-2-2 + product_category_id: os-10-2 output: product_category_id: - - '543540' + - '333' - input: - product_category_id: me-2-2-1 + product_category_id: os-10-2-1 output: product_category_id: - - '543540' + - '543518' - input: - product_category_id: me-2-2-2 + product_category_id: os-10-2-2 output: product_category_id: - - '543540' + - '543521' - input: - product_category_id: me-2-2-3 + product_category_id: os-10-2-3 output: product_category_id: - - '543540' + - '543519' - input: - product_category_id: me-3 + product_category_id: os-10-2-4 output: product_category_id: - - '855' + - '543517' - input: - product_category_id: me-3-1 + product_category_id: os-10-2-5 output: product_category_id: - - '543526' + - '543520' - input: - product_category_id: me-3-2 + product_category_id: os-10-3 output: product_category_id: - - '543524' + - '337' - input: - product_category_id: me-3-3 + product_category_id: os-10-4 output: product_category_id: - - '543522' + - '952' - input: - product_category_id: me-3-4 + product_category_id: os-10-5 output: product_category_id: - - '543523' + - '1625' - input: - product_category_id: me-3-5 + product_category_id: os-10-6 output: product_category_id: - - '543525' + - '953' - input: - product_category_id: me-3-6 + product_category_id: os-10-7 output: product_category_id: - - '855' + - '1708' - input: - product_category_id: me-4 + product_category_id: os-10-8 output: product_category_id: - - '783' + - '6404' - input: - product_category_id: me-4-1 + product_category_id: os-10-9 output: product_category_id: - - '783' + - '954' - input: - product_category_id: me-4-2 + product_category_id: os-10-10 output: product_category_id: - - '783' + - '955' - input: - product_category_id: me-4-3 + product_category_id: os-11 output: product_category_id: - - '783' + - '2986' - input: - product_category_id: me-5 + product_category_id: os-11-1 output: product_category_id: - - '5037' + - '2883' - input: - product_category_id: me-6 + product_category_id: os-11-2 output: product_category_id: - - '887' + - '935' - input: - product_category_id: me-7 + product_category_id: os-11-3 output: product_category_id: - - '839' + - '505830' - input: - product_category_id: me-7-1 + product_category_id: os-11-4 output: product_category_id: - - '839' + - '941' - input: - product_category_id: me-7-2 + product_category_id: os-11-5 output: product_category_id: - - '543529' + - '4341' - input: - product_category_id: me-7-3 + product_category_id: os-11-5-1 output: product_category_id: - - '543527' + - '4341' - input: - product_category_id: me-7-4 + product_category_id: os-11-5-2 output: product_category_id: - - '543528' + - '4341' - input: - product_category_id: me-8 + product_category_id: os-11-5-3 output: product_category_id: - - '783' + - '4341' - input: - product_category_id: os + product_category_id: os-11-5-4 output: product_category_id: - - '922' + - '4341' - input: - product_category_id: os-1 + product_category_id: os-11-5-5 output: product_category_id: - - '6174' + - '4341' - input: - product_category_id: os-1-1 + product_category_id: os-11-5-6 output: product_category_id: - - '6176' + - '4341' - input: - product_category_id: os-1-2 + product_category_id: os-11-5-7 output: product_category_id: - - '4941' + - '4341' - input: - product_category_id: os-1-3 + product_category_id: os-11-5-8 output: product_category_id: - - '6175' + - '4341' - input: - product_category_id: os-1-4 + product_category_id: os-11-6 output: product_category_id: - - '93' + - '943' - input: - product_category_id: os-10 + product_category_id: os-11-6-1 output: product_category_id: - - '950' + - '943' - input: - product_category_id: os-10-1 + product_category_id: os-11-6-2 output: product_category_id: - - '499864' + - '943' - input: - product_category_id: os-10-10 + product_category_id: os-11-6-3 output: product_category_id: - - '955' + - '943' - input: - product_category_id: os-10-2 + product_category_id: os-11-6-4 output: product_category_id: - - '333' + - '943' - input: - product_category_id: os-10-2-1 + product_category_id: os-11-6-5 output: product_category_id: - - '543518' + - '943' - input: - product_category_id: os-10-2-2 + product_category_id: os-11-6-6 output: product_category_id: - - '543521' + - '943' - input: - product_category_id: os-10-2-3 + product_category_id: os-11-7 output: product_category_id: - - '543519' + - '4499' - input: - product_category_id: os-10-2-4 + product_category_id: os-11-8 output: product_category_id: - - '543517' + - '947' - input: - product_category_id: os-10-2-5 + product_category_id: os-11-8-1 output: product_category_id: - - '543520' + - '947' - input: - product_category_id: os-10-3 + product_category_id: os-11-8-2 output: product_category_id: - - '337' + - '947' - input: - product_category_id: os-10-4 + product_category_id: os-11-8-3 output: product_category_id: - - '952' + - '947' - input: - product_category_id: os-10-5 + product_category_id: os-11-8-4 output: product_category_id: - - '1625' + - '947' - input: - product_category_id: os-10-6 + product_category_id: os-11-8-5 output: product_category_id: - - '953' + - '947' - input: - product_category_id: os-10-7 + product_category_id: os-11-8-6 output: product_category_id: - - '1708' + - '947' - input: - product_category_id: os-10-8 + product_category_id: os-11-8-7 output: product_category_id: - - '6404' + - '947' - input: - product_category_id: os-10-9 + product_category_id: os-11-8-8 output: product_category_id: - - '954' + - '947' - input: - product_category_id: os-11 + product_category_id: os-11-8-9 output: product_category_id: - - '2986' + - '947' - input: - product_category_id: os-11-1 + product_category_id: os-11-9 output: product_category_id: - - '2883' + - '503746' - input: product_category_id: os-11-10 output: @@ -39128,1030 +39833,1040 @@ rules: product_category_id: - '982' - input: - product_category_id: os-11-2 + product_category_id: os-12 output: product_category_id: - - '935' + - '2014' - input: - product_category_id: os-11-3 + product_category_id: os-12-1 output: product_category_id: - - '505830' + - '6486' - input: - product_category_id: os-11-4 + product_category_id: os-12-2 output: product_category_id: - - '941' + - '6467' - input: - product_category_id: os-11-5 + product_category_id: os-12-3 output: product_category_id: - - '4341' + - '2207' - input: - product_category_id: os-11-5-1 + product_category_id: os-12-4 output: product_category_id: - - '4341' + - '1836' - input: - product_category_id: os-11-5-2 + product_category_id: os-12-5 output: product_category_id: - - '4341' + - '1803' - input: - product_category_id: os-11-5-3 + product_category_id: os-12-6 output: product_category_id: - - '4341' + - '6178' - input: - product_category_id: os-11-5-4 + product_category_id: os-13 output: product_category_id: - - '4341' + - '964' - input: - product_category_id: os-11-5-5 + product_category_id: os-13-1 output: product_category_id: - - '4341' + - '965' - input: - product_category_id: os-11-5-6 + product_category_id: os-13-2 output: product_category_id: - - '4341' + - '966' - input: - product_category_id: os-11-5-7 + product_category_id: os-13-2-1 output: product_category_id: - - '4341' + - '7525' - input: - product_category_id: os-11-5-8 + product_category_id: os-13-2-1-1 output: product_category_id: - - '4341' + - '7526' - input: - product_category_id: os-11-6 + product_category_id: os-13-2-1-2 output: product_category_id: - - '943' + - '543688' - input: - product_category_id: os-11-6-1 + product_category_id: os-13-2-2 output: product_category_id: - - '943' + - '2401' - input: - product_category_id: os-11-6-2 + product_category_id: os-13-2-3 output: product_category_id: - - '943' + - '2263' - input: - product_category_id: os-11-6-3 + product_category_id: os-13-2-4 output: product_category_id: - - '943' + - '1627' - input: - product_category_id: os-11-6-4 + product_category_id: os-13-2-5 output: product_category_id: - - '943' + - '2674' - input: - product_category_id: os-11-6-5 + product_category_id: os-13-3 output: product_category_id: - - '943' + - '4492' - input: - product_category_id: os-11-6-6 + product_category_id: os-13-4 output: product_category_id: - - '943' + - '971' - input: - product_category_id: os-11-7 + product_category_id: os-13-5 output: product_category_id: - - '4499' + - '967' - input: - product_category_id: os-11-8 + product_category_id: os-13-6 output: product_category_id: - - '947' + - '968' - input: - product_category_id: os-11-8-1 + product_category_id: os-13-7 output: product_category_id: - - '947' + - '969' - input: - product_category_id: os-11-8-2 + product_category_id: os-13-8 output: product_category_id: - - '947' + - '970' - input: - product_category_id: os-11-8-3 + product_category_id: os-13-9 output: product_category_id: - - '947' + - '963' - input: - product_category_id: os-11-8-4 + product_category_id: os-13-10 output: product_category_id: - - '947' + - '4465' - input: - product_category_id: os-11-8-5 + product_category_id: os-14 output: product_category_id: - - '947' + - '2636' - input: - product_category_id: os-11-8-6 + product_category_id: os-14-1 output: product_category_id: - - '947' + - '973' - input: - product_category_id: os-11-8-7 + product_category_id: os-14-2 output: product_category_id: - - '947' + - '974' - input: - product_category_id: os-11-8-8 + product_category_id: os-14-3 output: product_category_id: - - '947' + - '975' - input: - product_category_id: os-11-8-9 + product_category_id: rc output: product_category_id: - - '947' + - '5605' - input: - product_category_id: os-11-9 + product_category_id: rc-1 output: product_category_id: - - '503746' + - '5606' - input: - product_category_id: os-12 + product_category_id: rc-1-1 output: product_category_id: - - '2014' + - '5607' - input: - product_category_id: os-12-1 + product_category_id: rc-2 output: product_category_id: - - '6486' + - '97' - input: - product_category_id: os-12-2 + product_category_id: rc-2-1 output: product_category_id: - - '6467' + - '3923' - input: - product_category_id: os-12-3 + product_category_id: rc-2-2 output: product_category_id: - - '2207' + - '328060' - input: - product_category_id: os-12-4 + product_category_id: rc-2-3 output: product_category_id: - - '1836' + - '7120' - input: - product_category_id: os-12-5 + product_category_id: rc-2-4 output: product_category_id: - - '1803' + - '1949' - input: - product_category_id: os-12-6 + product_category_id: rc-2-5 output: product_category_id: - - '6178' + - '499711' - input: - product_category_id: os-13 + product_category_id: rc-3 output: product_category_id: - - '964' + - '5455' - input: - product_category_id: os-13-1 + product_category_id: rc-3-1 output: product_category_id: - - '965' + - '503723' - input: - product_category_id: os-13-10 + product_category_id: rc-3-2 output: product_category_id: - - '4465' + - '5456' - input: - product_category_id: os-13-2 + product_category_id: rc-3-3 output: product_category_id: - - '966' + - '5457' - input: - product_category_id: os-13-2-1 + product_category_id: sg output: product_category_id: - - '7525' + - '988' - input: - product_category_id: os-13-2-1-1 + product_category_id: sg-1 output: product_category_id: - - '7526' + - '499713' - input: - product_category_id: os-13-2-1-2 + product_category_id: sg-1-1 output: product_category_id: - - '543688' + - '1093' - input: - product_category_id: os-13-2-2 + product_category_id: sg-1-1-1 output: product_category_id: - - '2401' + - '3442' - input: - product_category_id: os-13-2-3 + product_category_id: sg-1-1-2 output: product_category_id: - - '2263' + - '3492' - input: - product_category_id: os-13-2-4 + product_category_id: sg-1-1-3 output: product_category_id: - - '1627' + - '3656' - input: - product_category_id: os-13-2-5 + product_category_id: sg-1-1-4 output: product_category_id: - - '2674' + - '1097' - input: - product_category_id: os-13-3 + product_category_id: sg-1-1-4-1 output: product_category_id: - - '4492' + - '3510' - input: - product_category_id: os-13-4 + product_category_id: sg-1-1-4-2 output: product_category_id: - - '971' + - '3060' - input: - product_category_id: os-13-5 + product_category_id: sg-1-1-4-2-1 output: product_category_id: - - '967' + - '3247' - input: - product_category_id: os-13-6 + product_category_id: sg-1-1-4-2-2 output: product_category_id: - - '968' + - '3090' - input: - product_category_id: os-13-7 + product_category_id: sg-1-1-4-2-3 output: product_category_id: - - '969' + - '3343' - input: - product_category_id: os-13-8 + product_category_id: sg-1-1-4-2-4 output: product_category_id: - - '970' + - '3063' - input: - product_category_id: os-13-9 + product_category_id: sg-1-1-4-3 output: product_category_id: - - '963' + - '1098' - input: - product_category_id: os-14 + product_category_id: sg-1-1-4-4 output: product_category_id: - - '2636' + - '3497' - input: - product_category_id: os-14-1 + product_category_id: sg-1-1-4-5 output: product_category_id: - - '973' + - '499778' - input: - product_category_id: os-14-2 + product_category_id: sg-1-1-4-6 output: product_category_id: - - '974' + - '3621' - input: - product_category_id: os-14-3 + product_category_id: sg-1-1-5 output: product_category_id: - - '975' + - '3998' - input: - product_category_id: os-2 + product_category_id: sg-1-1-5-1 output: product_category_id: - - '8078' + - '499779' - input: - product_category_id: os-3 + product_category_id: sg-1-1-5-1-1 output: product_category_id: - - '923' + - '499779' - input: - product_category_id: os-3-1 + product_category_id: sg-1-1-5-1-2 output: product_category_id: - - '5997' + - '499779' - input: - product_category_id: os-3-10 + product_category_id: sg-1-1-6 output: product_category_id: - - '939' + - '1094' - input: - product_category_id: os-3-10-1 + product_category_id: sg-1-2 output: product_category_id: - - '939' + - '1070' - input: - product_category_id: os-3-10-2 + product_category_id: sg-1-2-1 output: product_category_id: - - '939' + - '3544' - input: - product_category_id: os-3-10-3 + product_category_id: sg-1-2-1-1 output: product_category_id: - - '939' + - '3544' - input: - product_category_id: os-3-10-4 + product_category_id: sg-1-2-1-2 output: product_category_id: - - '939' + - '3544' - input: - product_category_id: os-3-11 + product_category_id: sg-1-2-2 output: product_category_id: - - '925' + - '3747' - input: - product_category_id: os-3-12 + product_category_id: sg-1-2-3 output: product_category_id: - - '930' + - '1076' - input: - product_category_id: os-3-13 + product_category_id: sg-1-2-3-1 output: product_category_id: - - '6884' + - '1076' - input: - product_category_id: os-3-13-1 + product_category_id: sg-1-2-4 output: product_category_id: - - '543663' + - '1070' - input: - product_category_id: os-3-13-2 + product_category_id: sg-1-2-5 output: product_category_id: - - '543662' + - '234671' - input: - product_category_id: os-3-14 + product_category_id: sg-1-2-6 output: product_category_id: - - '5070' + - '234670' - input: - product_category_id: os-3-15 + product_category_id: sg-1-2-7 output: product_category_id: - - '6962' + - '1070' - input: - product_category_id: os-3-16 + product_category_id: sg-1-2-8 output: product_category_id: - - '3062' + - '1078' - input: - product_category_id: os-3-17 + product_category_id: sg-1-2-8-1 output: product_category_id: - - '6885' + - '3668' - input: - product_category_id: os-3-17-1 + product_category_id: sg-1-2-8-2 output: product_category_id: - - '543641' + - '499715' - input: - product_category_id: os-3-17-2 + product_category_id: sg-1-2-8-3 output: product_category_id: - - '543640' + - '499718' - input: - product_category_id: os-3-18 + product_category_id: sg-1-2-8-4 output: product_category_id: - - '6779' + - '499716' - input: - product_category_id: os-3-2 + product_category_id: sg-1-2-8-5 output: product_category_id: - - '4312' + - '499717' - input: - product_category_id: os-3-2-1 + product_category_id: sg-1-2-9 output: product_category_id: - - '4086' + - '1070' - input: - product_category_id: os-3-2-1-1 + product_category_id: sg-1-2-9-1 output: product_category_id: - - '4212' + - '1070' - input: - product_category_id: os-3-2-1-2 + product_category_id: sg-1-2-9-2 output: product_category_id: - - '4183' + - '1070' - input: - product_category_id: os-3-2-1-3 + product_category_id: sg-1-2-9-3 output: product_category_id: - - '2139' + - '1070' - input: - product_category_id: os-3-2-2 + product_category_id: sg-1-2-9-4 output: product_category_id: - - '4303' + - '1070' - input: - product_category_id: os-3-2-3 + product_category_id: sg-1-2-9-5 output: product_category_id: - - '4182' + - '1070' - input: - product_category_id: os-3-2-4 + product_category_id: sg-1-2-9-6 output: product_category_id: - - '7080' + - '1070' - input: - product_category_id: os-3-2-4-1 + product_category_id: sg-1-2-9-7 output: product_category_id: - - '7080' + - '1070' - input: - product_category_id: os-3-2-4-2 + product_category_id: sg-1-2-10 output: product_category_id: - - '7080' + - '3790' - input: - product_category_id: os-3-3 + product_category_id: sg-1-2-11 output: product_category_id: - - '6190' + - '3783' - input: - product_category_id: os-3-4 + product_category_id: sg-1-2-12 output: product_category_id: - - '6171' + - '1077' - input: - product_category_id: os-3-5 + product_category_id: sg-1-2-13 output: product_category_id: - - '927' + - '3679' +- input: + product_category_id: sg-1-2-14 + output: + product_category_id: + - '3671' +- input: + product_category_id: sg-1-3 + output: + product_category_id: + - '1081' - input: - product_category_id: os-3-5-1 + product_category_id: sg-1-3-1 output: product_category_id: - - '927' + - '4676' - input: - product_category_id: os-3-5-2 + product_category_id: sg-1-3-1-1 output: product_category_id: - - '927' + - '4089' - input: - product_category_id: os-3-5-3 + product_category_id: sg-1-3-1-2 output: product_category_id: - - '927' + - '7251' - input: - product_category_id: os-3-5-4 + product_category_id: sg-1-3-1-3 output: product_category_id: - - '927' + - '4050' - input: - product_category_id: os-3-6 + product_category_id: sg-1-3-1-4 output: product_category_id: - - '5531' + - '3829' - input: - product_category_id: os-3-7 + product_category_id: sg-1-3-1-5 output: product_category_id: - - '6177' + - '4192' - input: - product_category_id: os-3-8 + product_category_id: sg-1-3-2 output: product_category_id: - - '928' + - '1082' - input: - product_category_id: os-3-9 + product_category_id: sg-1-3-3 output: product_category_id: - - '926' + - '499751' - input: - product_category_id: os-4 + product_category_id: sg-1-3-3-1 output: product_category_id: - - '932' + - '499751' - input: - product_category_id: os-4-1 + product_category_id: sg-1-3-3-2 output: product_category_id: - - '6319' + - '499751' - input: - product_category_id: os-4-10 + product_category_id: sg-1-3-3-3 output: product_category_id: - - '944' + - '499751' - input: - product_category_id: os-4-11 + product_category_id: sg-1-3-3-4 output: product_category_id: - - '948' + - '499751' - input: - product_category_id: os-4-12 + product_category_id: sg-1-3-4 output: product_category_id: - - '949' + - '1083' - input: - product_category_id: os-4-2 + product_category_id: sg-1-4 output: product_category_id: - - '2591' + - '499719' - input: - product_category_id: os-4-2-1 + product_category_id: sg-1-4-1 output: product_category_id: - - '543618' + - '4008' - input: - product_category_id: os-4-2-2 + product_category_id: sg-1-4-1-1 output: product_category_id: - - '543620' + - '499725' - input: - product_category_id: os-4-2-3 + product_category_id: sg-1-4-1-2 output: product_category_id: - - '543619' + - '499723' - input: - product_category_id: os-4-3 + product_category_id: sg-1-4-1-3 output: product_category_id: - - '938' + - '499722' - input: - product_category_id: os-4-3-1 + product_category_id: sg-1-4-1-4 output: product_category_id: - - '938' + - '3235' - input: - product_category_id: os-4-3-2 + product_category_id: sg-1-4-1-4-1 output: product_category_id: - - '938' + - '3235' - input: - product_category_id: os-4-3-3 + product_category_id: sg-1-4-1-4-2 output: product_category_id: - - '938' + - '3235' - input: - product_category_id: os-4-4 + product_category_id: sg-1-4-1-4-3 output: product_category_id: - - '960' + - '3235' - input: - product_category_id: os-4-4-1 + product_category_id: sg-1-4-1-4-4 output: product_category_id: - - '4377' + - '3235' - input: - product_category_id: os-4-4-2 + product_category_id: sg-1-4-1-5 output: product_category_id: - - '4154' + - '499726' - input: - product_category_id: os-4-4-3 + product_category_id: sg-1-4-1-6 output: product_category_id: - - '4137' + - '499724' - input: - product_category_id: os-4-4-4 + product_category_id: sg-1-4-2 output: product_category_id: - - '5502' + - '499720' - input: - product_category_id: os-4-4-5 + product_category_id: sg-1-4-2-1 output: product_category_id: - - '4200' + - '499769' - input: - product_category_id: os-4-4-6 + product_category_id: sg-1-4-2-2 output: product_category_id: - - '4117' + - '7116' - input: - product_category_id: os-4-5 + product_category_id: sg-1-4-2-3 output: product_category_id: - - '8015' + - '7129' - input: - product_category_id: os-4-5-1 + product_category_id: sg-1-4-2-3-1 output: product_category_id: - - '8015' + - '7129' - input: - product_category_id: os-4-5-2 + product_category_id: sg-1-4-2-3-2 output: product_category_id: - - '8015' + - '7129' - input: - product_category_id: os-4-5-3 + product_category_id: sg-1-4-2-3-3 output: product_category_id: - - '8015' + - '7129' - input: - product_category_id: os-4-6 + product_category_id: sg-1-4-2-4 output: product_category_id: - - '505805' + - '3297' - input: - product_category_id: os-4-7 + product_category_id: sg-1-4-2-4-1 output: product_category_id: - - '934' + - '3297' - input: - product_category_id: os-4-7-1 + product_category_id: sg-1-4-2-4-2 output: product_category_id: - - '934' + - '3297' - input: - product_category_id: os-4-7-2 + product_category_id: sg-1-4-2-4-3 output: product_category_id: - - '934' + - '3297' - input: - product_category_id: os-4-8 + product_category_id: sg-1-4-2-4-4 output: product_category_id: - - '936' + - '3297' - input: - product_category_id: os-4-8-1 + product_category_id: sg-1-4-2-4-5 output: product_category_id: - - '543676' + - '3297' - input: - product_category_id: os-4-8-2 + product_category_id: sg-1-4-2-4-6 output: product_category_id: - - '543675' + - '3297' - input: - product_category_id: os-4-9 + product_category_id: sg-1-4-2-4-7 output: product_category_id: - - '956' + - '3297' - input: - product_category_id: os-4-9-1 + product_category_id: sg-1-4-2-4-8 output: product_category_id: - - '2658' + - '3297' - input: - product_category_id: os-4-9-10 + product_category_id: sg-1-4-2-4-9 output: product_category_id: - - '3871' + - '3297' - input: - product_category_id: os-4-9-11 + product_category_id: sg-1-4-2-5 output: product_category_id: - - '962' + - '499721' - input: - product_category_id: os-4-9-12 + product_category_id: sg-1-4-3 output: product_category_id: - - '5919' + - '3411' - input: - product_category_id: os-4-9-13 + product_category_id: sg-1-4-3-1 output: product_category_id: - - '3457' + - '3411' - input: - product_category_id: os-4-9-14 + product_category_id: sg-1-4-3-2 output: product_category_id: - - '2689' + - '3411' - input: - product_category_id: os-4-9-2 + product_category_id: sg-1-4-3-3 output: product_category_id: - - '5264' + - '3411' - input: - product_category_id: os-4-9-3 + product_category_id: sg-1-4-4 output: product_category_id: - - '957' + - '3652' - input: - product_category_id: os-4-9-4 + product_category_id: sg-1-4-5 output: product_category_id: - - '5918' + - '3717' - input: - product_category_id: os-4-9-5 + product_category_id: sg-1-4-6 output: product_category_id: - - '6930' + - '4282' - input: - product_category_id: os-4-9-6 + product_category_id: sg-1-4-6-1 output: product_category_id: - - '1513' + - '4282' - input: - product_category_id: os-4-9-7 + product_category_id: sg-1-4-6-2 output: product_category_id: - - '958' + - '4282' - input: - product_category_id: os-4-9-8 + product_category_id: sg-1-4-6-3 output: product_category_id: - - '959' + - '4282' - input: - product_category_id: os-4-9-9 + product_category_id: sg-1-4-6-4 output: product_category_id: - - '961' + - '4282' - input: - product_category_id: os-4-9-9-1 + product_category_id: sg-1-5 output: product_category_id: - - '961' + - '6734' - input: - product_category_id: os-4-9-9-3 + product_category_id: sg-1-5-1 output: product_category_id: - - '961' + - '6734' - input: - product_category_id: os-4-9-9-4 + product_category_id: sg-1-5-2 output: product_category_id: - - '961' + - '6734' - input: - product_category_id: os-4-9-9-5 + product_category_id: sg-1-5-3 output: product_category_id: - - '961' + - '6734' - input: - product_category_id: os-4-9-9-6 + product_category_id: sg-1-6 output: product_category_id: - - '961' + - '3354' - input: - product_category_id: os-4-9-9-9 + product_category_id: sg-1-6-1 output: product_category_id: - - '961' + - '3953' - input: - product_category_id: os-5 + product_category_id: sg-1-7 output: product_category_id: - - '5829' + - '6739' - input: - product_category_id: os-5-1 + product_category_id: sg-1-7-1 output: product_category_id: - - '5829' + - '499729' - input: - product_category_id: os-5-2 + product_category_id: sg-1-7-2 output: product_category_id: - - '5829' + - '505813' - input: - product_category_id: os-6 + product_category_id: sg-1-7-2-1 output: product_category_id: - - '8499' + - '505813' - input: - product_category_id: os-7 + product_category_id: sg-1-7-2-2 output: product_category_id: - - '2435' + - '505813' - input: - product_category_id: os-7-1 + product_category_id: sg-1-7-2-3 output: product_category_id: - - '2435' + - '505813' - input: - product_category_id: os-7-2 + product_category_id: sg-1-7-3 output: product_category_id: - - '2435' + - '499732' - input: - product_category_id: os-8 + product_category_id: sg-1-7-3-1 output: product_category_id: - - '6519' + - '499732' - input: - product_category_id: os-8-1 + product_category_id: sg-1-7-3-2 output: product_category_id: - - '6462' + - '499732' - input: - product_category_id: os-8-2 + product_category_id: sg-1-7-4 output: product_category_id: - - '6521' + - '6731' - input: - product_category_id: os-8-3 + product_category_id: sg-1-7-4-1 output: product_category_id: - - '6520' + - '6731' - input: - product_category_id: os-9 + product_category_id: sg-1-7-4-2 output: product_category_id: - - '6373' + - '6731' - input: - product_category_id: os-9-1 + product_category_id: sg-1-7-4-3 output: product_category_id: - - '1996' + - '6731' - input: - product_category_id: os-9-2 + product_category_id: sg-1-7-5 output: product_category_id: - - '6182' + - '6729' - input: - product_category_id: os-9-3 + product_category_id: sg-1-7-5-1 output: product_category_id: - - '6180' + - '6729' - input: - product_category_id: os-9-4 + product_category_id: sg-1-7-5-2 output: product_category_id: - - '6181' + - '6729' - input: - product_category_id: os-9-5 + product_category_id: sg-1-7-6 output: product_category_id: - - '6179' + - '499731' - input: - product_category_id: rc + product_category_id: sg-1-7-7 output: product_category_id: - - '5605' + - '499733' - input: - product_category_id: rc-1 + product_category_id: sg-1-7-7-1 output: product_category_id: - - '5606' + - '499733' - input: - product_category_id: rc-1-1 + product_category_id: sg-1-7-7-2 output: product_category_id: - - '5607' + - '499733' - input: - product_category_id: rc-2 + product_category_id: sg-1-7-8 output: product_category_id: - - '97' + - '499727' - input: - product_category_id: rc-2-1 + product_category_id: sg-1-7-9 output: product_category_id: - - '3923' + - '8505' - input: - product_category_id: rc-2-2 + product_category_id: sg-1-7-9-1 output: product_category_id: - - '328060' + - '8505' - input: - product_category_id: rc-2-3 + product_category_id: sg-1-7-9-2 output: product_category_id: - - '7120' + - '8505' - input: - product_category_id: rc-2-4 + product_category_id: sg-1-7-10 output: product_category_id: - - '1949' + - '6730' - input: - product_category_id: rc-2-5 + product_category_id: sg-1-7-10-1 output: product_category_id: - - '499711' + - '6730' - input: - product_category_id: rc-3 + product_category_id: sg-1-7-10-2 output: product_category_id: - - '5455' + - '6730' - input: - product_category_id: rc-3-1 + product_category_id: sg-1-7-10-3 output: product_category_id: - - '503723' + - '6730' - input: - product_category_id: rc-3-2 + product_category_id: sg-1-7-11 output: product_category_id: - - '5456' + - '499730' - input: - product_category_id: rc-3-3 + product_category_id: sg-1-8 output: product_category_id: - - '5457' + - '1087' - input: - product_category_id: sg + product_category_id: sg-1-8-1 output: product_category_id: - - '988' + - '3870' - input: - product_category_id: sg-1 + product_category_id: sg-1-8-2 output: product_category_id: - - '499713' + - '499737' - input: - product_category_id: sg-1-1 + product_category_id: sg-1-8-2-1 output: product_category_id: - - '1093' + - '499738' - input: - product_category_id: sg-1-1-1 + product_category_id: sg-1-8-3 output: product_category_id: - - '3442' + - '3815' - input: - product_category_id: sg-1-1-2 + product_category_id: sg-1-8-4 output: product_category_id: - - '3492' + - '499735' - input: - product_category_id: sg-1-1-3 + product_category_id: sg-1-8-5 output: product_category_id: - - '3656' + - '499736' - input: - product_category_id: sg-1-1-4 + product_category_id: sg-1-8-5-1 output: product_category_id: - - '1097' + - '3339' - input: - product_category_id: sg-1-1-4-1 + product_category_id: sg-1-8-5-2 output: product_category_id: - - '3510' + - '3543' - input: - product_category_id: sg-1-1-4-2 + product_category_id: sg-1-8-5-3 output: product_category_id: - - '3060' + - '499739' - input: - product_category_id: sg-1-1-4-2-1 + product_category_id: sg-1-8-6 output: product_category_id: - - '3247' + - '499734' - input: - product_category_id: sg-1-1-4-2-2 + product_category_id: sg-1-8-7 output: product_category_id: - - '3090' + - '1087' - input: - product_category_id: sg-1-1-4-2-3 + product_category_id: sg-1-8-7-1 output: product_category_id: - - '3343' + - '1087' - input: - product_category_id: sg-1-1-4-2-4 + product_category_id: sg-1-8-7-2 output: product_category_id: - - '3063' + - '1087' - input: - product_category_id: sg-1-1-4-3 + product_category_id: sg-1-8-7-3 output: product_category_id: - - '1098' + - '1087' - input: - product_category_id: sg-1-1-4-4 + product_category_id: sg-1-8-7-4 output: product_category_id: - - '3497' + - '1087' - input: - product_category_id: sg-1-1-4-5 + product_category_id: sg-1-8-7-5 output: product_category_id: - - '499778' + - '1087' - input: - product_category_id: sg-1-1-4-6 + product_category_id: sg-1-8-7-6 output: product_category_id: - - '3621' + - '1087' - input: - product_category_id: sg-1-1-5 + product_category_id: sg-1-8-7-7 output: product_category_id: - - '3998' + - '1087' - input: - product_category_id: sg-1-1-5-1 + product_category_id: sg-1-8-7-8 output: product_category_id: - - '499779' + - '1087' - input: - product_category_id: sg-1-1-5-1-1 + product_category_id: sg-1-8-7-9 output: product_category_id: - - '499779' + - '1087' - input: - product_category_id: sg-1-1-5-1-2 + product_category_id: sg-1-9 output: product_category_id: - - '499779' + - '989' - input: - product_category_id: sg-1-1-6 + product_category_id: sg-1-9-1 output: product_category_id: - - '1094' + - '3269' - input: product_category_id: sg-1-10 output: @@ -40292,26 +41007,6 @@ rules: output: product_category_id: - '502970' -- input: - product_category_id: sg-1-11-10 - output: - product_category_id: - - '3817' -- input: - product_category_id: sg-1-11-11 - output: - product_category_id: - - '3204' -- input: - product_category_id: sg-1-11-11-1 - output: - product_category_id: - - '3204' -- input: - product_category_id: sg-1-11-11-2 - output: - product_category_id: - - '3204' - input: product_category_id: sg-1-11-2 output: @@ -40393,32 +41088,37 @@ rules: product_category_id: - '3423' - input: - product_category_id: sg-1-12 + product_category_id: sg-1-11-10 output: product_category_id: - - '499915' + - '3817' - input: - product_category_id: sg-1-12-1 + product_category_id: sg-1-11-11 output: product_category_id: - - '499915' + - '3204' - input: - product_category_id: sg-1-12-1-1 + product_category_id: sg-1-11-11-1 output: product_category_id: - - '499915' + - '3204' - input: - product_category_id: sg-1-12-1-10 + product_category_id: sg-1-11-11-2 + output: + product_category_id: + - '3204' +- input: + product_category_id: sg-1-12 output: product_category_id: - '499915' - input: - product_category_id: sg-1-12-1-11 + product_category_id: sg-1-12-1 output: product_category_id: - '499915' - input: - product_category_id: sg-1-12-1-12 + product_category_id: sg-1-12-1-1 output: product_category_id: - '499915' @@ -40446,57 +41146,37 @@ rules: product_category_id: sg-1-12-1-6 output: product_category_id: - - '499915' -- input: - product_category_id: sg-1-12-1-7 - output: - product_category_id: - - '499915' -- input: - product_category_id: sg-1-12-1-8 - output: - product_category_id: - - '499915' -- input: - product_category_id: sg-1-12-1-9 - output: - product_category_id: - - '499915' -- input: - product_category_id: sg-1-12-10 - output: - product_category_id: - - '1057' + - '499915' - input: - product_category_id: sg-1-12-10-1 + product_category_id: sg-1-12-1-7 output: product_category_id: - - '1057' + - '499915' - input: - product_category_id: sg-1-12-10-2 + product_category_id: sg-1-12-1-8 output: product_category_id: - - '1057' + - '499915' - input: - product_category_id: sg-1-12-10-3 + product_category_id: sg-1-12-1-9 output: product_category_id: - - '1057' + - '499915' - input: - product_category_id: sg-1-12-10-4 + product_category_id: sg-1-12-1-10 output: product_category_id: - - '1057' + - '499915' - input: - product_category_id: sg-1-12-10-5 + product_category_id: sg-1-12-1-11 output: product_category_id: - - '1057' + - '499915' - input: - product_category_id: sg-1-12-10-6 + product_category_id: sg-1-12-1-12 output: product_category_id: - - '1057' + - '499915' - input: product_category_id: sg-1-12-2 output: @@ -40643,60 +41323,50 @@ rules: product_category_id: - '3241' - input: - product_category_id: sg-1-13 - output: - product_category_id: - - '499799' -- input: - product_category_id: sg-1-13-1 - output: - product_category_id: - - '8222' -- input: - product_category_id: sg-1-13-10 + product_category_id: sg-1-12-10 output: product_category_id: - - '8077' + - '1057' - input: - product_category_id: sg-1-13-11 + product_category_id: sg-1-12-10-1 output: product_category_id: - - '499802' + - '1057' - input: - product_category_id: sg-1-13-12 + product_category_id: sg-1-12-10-2 output: product_category_id: - - '8319' + - '1057' - input: - product_category_id: sg-1-13-13 + product_category_id: sg-1-12-10-3 output: product_category_id: - - '3877' + - '1057' - input: - product_category_id: sg-1-13-14 + product_category_id: sg-1-12-10-4 output: product_category_id: - - '499801' + - '1057' - input: - product_category_id: sg-1-13-15 + product_category_id: sg-1-12-10-5 output: product_category_id: - - '6344' + - '1057' - input: - product_category_id: sg-1-13-15-1 + product_category_id: sg-1-12-10-6 output: product_category_id: - - '6344' + - '1057' - input: - product_category_id: sg-1-13-15-2 + product_category_id: sg-1-13 output: product_category_id: - - '6344' + - '499799' - input: - product_category_id: sg-1-13-16 + product_category_id: sg-1-13-1 output: product_category_id: - - '499799' + - '8222' - input: product_category_id: sg-1-13-2 output: @@ -40772,6 +41442,51 @@ rules: output: product_category_id: - '499803' +- input: + product_category_id: sg-1-13-10 + output: + product_category_id: + - '8077' +- input: + product_category_id: sg-1-13-11 + output: + product_category_id: + - '499802' +- input: + product_category_id: sg-1-13-12 + output: + product_category_id: + - '8319' +- input: + product_category_id: sg-1-13-13 + output: + product_category_id: + - '3877' +- input: + product_category_id: sg-1-13-14 + output: + product_category_id: + - '499801' +- input: + product_category_id: sg-1-13-15 + output: + product_category_id: + - '6344' +- input: + product_category_id: sg-1-13-15-1 + output: + product_category_id: + - '6344' +- input: + product_category_id: sg-1-13-15-2 + output: + product_category_id: + - '6344' +- input: + product_category_id: sg-1-13-16 + output: + product_category_id: + - '499799' - input: product_category_id: sg-1-14 output: @@ -41167,156 +41882,6 @@ rules: output: product_category_id: - '1047' -- input: - product_category_id: sg-1-2 - output: - product_category_id: - - '1070' -- input: - product_category_id: sg-1-2-1 - output: - product_category_id: - - '3544' -- input: - product_category_id: sg-1-2-1-1 - output: - product_category_id: - - '3544' -- input: - product_category_id: sg-1-2-1-2 - output: - product_category_id: - - '3544' -- input: - product_category_id: sg-1-2-10 - output: - product_category_id: - - '3790' -- input: - product_category_id: sg-1-2-11 - output: - product_category_id: - - '3783' -- input: - product_category_id: sg-1-2-12 - output: - product_category_id: - - '1077' -- input: - product_category_id: sg-1-2-13 - output: - product_category_id: - - '3679' -- input: - product_category_id: sg-1-2-14 - output: - product_category_id: - - '3671' -- input: - product_category_id: sg-1-2-2 - output: - product_category_id: - - '3747' -- input: - product_category_id: sg-1-2-3 - output: - product_category_id: - - '1076' -- input: - product_category_id: sg-1-2-3-1 - output: - product_category_id: - - '1076' -- input: - product_category_id: sg-1-2-4 - output: - product_category_id: - - '1070' -- input: - product_category_id: sg-1-2-5 - output: - product_category_id: - - '234671' -- input: - product_category_id: sg-1-2-6 - output: - product_category_id: - - '234670' -- input: - product_category_id: sg-1-2-7 - output: - product_category_id: - - '1070' -- input: - product_category_id: sg-1-2-8 - output: - product_category_id: - - '1078' -- input: - product_category_id: sg-1-2-8-1 - output: - product_category_id: - - '3668' -- input: - product_category_id: sg-1-2-8-2 - output: - product_category_id: - - '499715' -- input: - product_category_id: sg-1-2-8-3 - output: - product_category_id: - - '499718' -- input: - product_category_id: sg-1-2-8-4 - output: - product_category_id: - - '499716' -- input: - product_category_id: sg-1-2-8-5 - output: - product_category_id: - - '499717' -- input: - product_category_id: sg-1-2-9 - output: - product_category_id: - - '1070' -- input: - product_category_id: sg-1-2-9-1 - output: - product_category_id: - - '1070' -- input: - product_category_id: sg-1-2-9-2 - output: - product_category_id: - - '1070' -- input: - product_category_id: sg-1-2-9-3 - output: - product_category_id: - - '1070' -- input: - product_category_id: sg-1-2-9-4 - output: - product_category_id: - - '1070' -- input: - product_category_id: sg-1-2-9-5 - output: - product_category_id: - - '1070' -- input: - product_category_id: sg-1-2-9-6 - output: - product_category_id: - - '1070' -- input: - product_category_id: sg-1-2-9-7 - output: - product_category_id: - - '1070' - input: product_category_id: sg-1-20 output: @@ -41433,885 +41998,640 @@ rules: product_category_id: - '1065' - input: - product_category_id: sg-1-21 - output: - product_category_id: - - '1060' -- input: - product_category_id: sg-1-21-1 - output: - product_category_id: - - '3478' -- input: - product_category_id: sg-1-21-10 - output: - product_category_id: - - '1060' -- input: - product_category_id: sg-1-21-10-1 - output: - product_category_id: - - '1060' -- input: - product_category_id: sg-1-21-10-2 - output: - product_category_id: - - '1060' -- input: - product_category_id: sg-1-21-10-3 - output: - product_category_id: - - '1060' -- input: - product_category_id: sg-1-21-10-4 - output: - product_category_id: - - '1060' -- input: - product_category_id: sg-1-21-11 - output: - product_category_id: - - '3149' -- input: - product_category_id: sg-1-21-12 - output: - product_category_id: - - '1060' -- input: - product_category_id: sg-1-21-13 - output: - product_category_id: - - '499786' -- input: - product_category_id: sg-1-21-14 - output: - product_category_id: - - '4020' -- input: - product_category_id: sg-1-21-2 - output: - product_category_id: - - '3445' -- input: - product_category_id: sg-1-21-3 - output: - product_category_id: - - '3864' -- input: - product_category_id: sg-1-21-4 - output: - product_category_id: - - '3389' -- input: - product_category_id: sg-1-21-5 - output: - product_category_id: - - '3987' -- input: - product_category_id: sg-1-21-6 - output: - product_category_id: - - '3878' -- input: - product_category_id: sg-1-21-7 - output: - product_category_id: - - '3770' -- input: - product_category_id: sg-1-21-8 - output: - product_category_id: - - '3997' -- input: - product_category_id: sg-1-21-9 - output: - product_category_id: - - '3880' -- input: - product_category_id: sg-1-22 - output: - product_category_id: - - '1115' -- input: - product_category_id: sg-1-22-1 - output: - product_category_id: - - '1117' -- input: - product_category_id: sg-1-22-2 - output: - product_category_id: - - '499788' -- input: - product_category_id: sg-1-22-2-1 - output: - product_category_id: - - '499789' -- input: - product_category_id: sg-1-22-3 - output: - product_category_id: - - '499787' -- input: - product_category_id: sg-1-22-3-1 - output: - product_category_id: - - '499787' -- input: - product_category_id: sg-1-22-3-2 - output: - product_category_id: - - '499787' -- input: - product_category_id: sg-1-22-4 - output: - product_category_id: - - '1116' -- input: - product_category_id: sg-1-23 - output: - product_category_id: - - '499861' -- input: - product_category_id: sg-1-23-1 - output: - product_category_id: - - '499861' -- input: - product_category_id: sg-1-23-2 - output: - product_category_id: - - '499861' -- input: - product_category_id: sg-1-23-3 - output: - product_category_id: - - '499861' -- input: - product_category_id: sg-1-24 - output: - product_category_id: - - '1145' -- input: - product_category_id: sg-1-24-1 - output: - product_category_id: - - '3794' -- input: - product_category_id: sg-1-24-2 - output: - product_category_id: - - '3575' -- input: - product_category_id: sg-1-24-3 - output: - product_category_id: - - '3678' -- input: - product_category_id: sg-1-24-4 - output: - product_category_id: - - '1145' -- input: - product_category_id: sg-1-24-4-1 - output: - product_category_id: - - '1145' -- input: - product_category_id: sg-1-24-4-2 - output: - product_category_id: - - '1145' -- input: - product_category_id: sg-1-24-4-3 - output: - product_category_id: - - '1145' -- input: - product_category_id: sg-1-24-4-4 - output: - product_category_id: - - '1145' -- input: - product_category_id: sg-1-24-4-5 - output: - product_category_id: - - '1145' -- input: - product_category_id: sg-1-24-4-6 - output: - product_category_id: - - '1145' -- input: - product_category_id: sg-1-24-4-7 - output: - product_category_id: - - '1145' -- input: - product_category_id: sg-1-24-4-8 - output: - product_category_id: - - '1145' -- input: - product_category_id: sg-1-24-4-9 - output: - product_category_id: - - '1145' -- input: - product_category_id: sg-1-25 - output: - product_category_id: - - '1068' -- input: - product_category_id: sg-1-25-1 - output: - product_category_id: - - '3057' -- input: - product_category_id: sg-1-25-1-1 - output: - product_category_id: - - '499791' -- input: - product_category_id: sg-1-25-1-2 - output: - product_category_id: - - '499790' -- input: - product_category_id: sg-1-25-2 + product_category_id: sg-1-21 output: product_category_id: - - '1068' + - '1060' - input: - product_category_id: sg-1-25-2-1 + product_category_id: sg-1-21-1 output: product_category_id: - - '1068' + - '3478' - input: - product_category_id: sg-1-25-2-2 + product_category_id: sg-1-21-2 output: product_category_id: - - '1068' + - '3445' - input: - product_category_id: sg-1-25-2-3 + product_category_id: sg-1-21-3 output: product_category_id: - - '1068' + - '3864' - input: - product_category_id: sg-1-25-2-4 + product_category_id: sg-1-21-4 output: product_category_id: - - '1068' + - '3389' - input: - product_category_id: sg-1-25-2-5 + product_category_id: sg-1-21-5 output: product_category_id: - - '1068' + - '3987' - input: - product_category_id: sg-1-25-2-6 + product_category_id: sg-1-21-6 output: product_category_id: - - '1068' + - '3878' - input: - product_category_id: sg-1-25-2-7 + product_category_id: sg-1-21-7 output: product_category_id: - - '1068' + - '3770' - input: - product_category_id: sg-1-25-2-8 + product_category_id: sg-1-21-8 output: product_category_id: - - '1068' + - '3997' - input: - product_category_id: sg-1-25-2-9 + product_category_id: sg-1-21-9 output: product_category_id: - - '1068' + - '3880' - input: - product_category_id: sg-1-3 + product_category_id: sg-1-21-10 output: product_category_id: - - '1081' + - '1060' - input: - product_category_id: sg-1-3-1 + product_category_id: sg-1-21-10-1 output: product_category_id: - - '4676' + - '1060' - input: - product_category_id: sg-1-3-1-1 + product_category_id: sg-1-21-10-2 output: product_category_id: - - '4089' + - '1060' - input: - product_category_id: sg-1-3-1-2 + product_category_id: sg-1-21-10-3 output: product_category_id: - - '7251' + - '1060' - input: - product_category_id: sg-1-3-1-3 + product_category_id: sg-1-21-10-4 output: product_category_id: - - '4050' + - '1060' - input: - product_category_id: sg-1-3-1-4 + product_category_id: sg-1-21-11 output: product_category_id: - - '3829' + - '3149' - input: - product_category_id: sg-1-3-1-5 + product_category_id: sg-1-21-12 output: product_category_id: - - '4192' + - '1060' - input: - product_category_id: sg-1-3-2 + product_category_id: sg-1-21-13 output: product_category_id: - - '1082' + - '499786' - input: - product_category_id: sg-1-3-3 + product_category_id: sg-1-21-14 output: product_category_id: - - '499751' + - '4020' - input: - product_category_id: sg-1-3-3-1 + product_category_id: sg-1-22 output: product_category_id: - - '499751' + - '1115' - input: - product_category_id: sg-1-3-3-2 + product_category_id: sg-1-22-1 output: product_category_id: - - '499751' + - '1117' - input: - product_category_id: sg-1-3-3-3 + product_category_id: sg-1-22-2 output: product_category_id: - - '499751' + - '499788' - input: - product_category_id: sg-1-3-3-4 + product_category_id: sg-1-22-2-1 output: product_category_id: - - '499751' + - '499789' - input: - product_category_id: sg-1-3-4 + product_category_id: sg-1-22-3 output: product_category_id: - - '1083' + - '499787' - input: - product_category_id: sg-1-4 + product_category_id: sg-1-22-3-1 output: product_category_id: - - '499719' + - '499787' - input: - product_category_id: sg-1-4-1 + product_category_id: sg-1-22-3-2 output: product_category_id: - - '4008' + - '499787' - input: - product_category_id: sg-1-4-1-1 + product_category_id: sg-1-22-4 output: product_category_id: - - '499725' + - '1116' - input: - product_category_id: sg-1-4-1-2 + product_category_id: sg-1-23 output: product_category_id: - - '499723' + - '499861' - input: - product_category_id: sg-1-4-1-3 + product_category_id: sg-1-23-1 output: product_category_id: - - '499722' + - '499861' - input: - product_category_id: sg-1-4-1-4 + product_category_id: sg-1-23-2 output: product_category_id: - - '3235' + - '499861' - input: - product_category_id: sg-1-4-1-4-1 + product_category_id: sg-1-23-3 output: product_category_id: - - '3235' + - '499861' - input: - product_category_id: sg-1-4-1-4-2 + product_category_id: sg-1-24 output: product_category_id: - - '3235' + - '1145' - input: - product_category_id: sg-1-4-1-4-3 + product_category_id: sg-1-24-1 output: product_category_id: - - '3235' + - '3794' - input: - product_category_id: sg-1-4-1-4-4 + product_category_id: sg-1-24-2 output: product_category_id: - - '3235' + - '3575' - input: - product_category_id: sg-1-4-1-5 + product_category_id: sg-1-24-3 output: product_category_id: - - '499726' + - '3678' - input: - product_category_id: sg-1-4-1-6 + product_category_id: sg-1-24-4 output: product_category_id: - - '499724' + - '1145' - input: - product_category_id: sg-1-4-2 + product_category_id: sg-1-24-4-1 output: product_category_id: - - '499720' + - '1145' - input: - product_category_id: sg-1-4-2-1 + product_category_id: sg-1-24-4-2 output: product_category_id: - - '499769' + - '1145' - input: - product_category_id: sg-1-4-2-2 + product_category_id: sg-1-24-4-3 output: product_category_id: - - '7116' + - '1145' - input: - product_category_id: sg-1-4-2-3 + product_category_id: sg-1-24-4-4 output: product_category_id: - - '7129' + - '1145' - input: - product_category_id: sg-1-4-2-3-1 + product_category_id: sg-1-24-4-5 output: product_category_id: - - '7129' + - '1145' - input: - product_category_id: sg-1-4-2-3-2 + product_category_id: sg-1-24-4-6 output: product_category_id: - - '7129' + - '1145' - input: - product_category_id: sg-1-4-2-3-3 + product_category_id: sg-1-24-4-7 output: product_category_id: - - '7129' + - '1145' - input: - product_category_id: sg-1-4-2-4 + product_category_id: sg-1-24-4-8 output: product_category_id: - - '3297' + - '1145' - input: - product_category_id: sg-1-4-2-4-1 + product_category_id: sg-1-24-4-9 output: product_category_id: - - '3297' + - '1145' - input: - product_category_id: sg-1-4-2-4-2 + product_category_id: sg-1-25 output: product_category_id: - - '3297' + - '1068' - input: - product_category_id: sg-1-4-2-4-3 + product_category_id: sg-1-25-1 output: product_category_id: - - '3297' + - '3057' - input: - product_category_id: sg-1-4-2-4-4 + product_category_id: sg-1-25-1-1 output: product_category_id: - - '3297' + - '499791' - input: - product_category_id: sg-1-4-2-4-5 + product_category_id: sg-1-25-1-2 output: product_category_id: - - '3297' + - '499790' - input: - product_category_id: sg-1-4-2-4-6 + product_category_id: sg-1-25-2 output: product_category_id: - - '3297' + - '1068' - input: - product_category_id: sg-1-4-2-4-7 + product_category_id: sg-1-25-2-1 output: product_category_id: - - '3297' + - '1068' - input: - product_category_id: sg-1-4-2-4-8 + product_category_id: sg-1-25-2-2 output: product_category_id: - - '3297' + - '1068' - input: - product_category_id: sg-1-4-2-4-9 + product_category_id: sg-1-25-2-3 output: product_category_id: - - '3297' + - '1068' - input: - product_category_id: sg-1-4-2-5 + product_category_id: sg-1-25-2-4 output: product_category_id: - - '499721' + - '1068' - input: - product_category_id: sg-1-4-3 + product_category_id: sg-1-25-2-5 output: product_category_id: - - '3411' + - '1068' - input: - product_category_id: sg-1-4-3-1 + product_category_id: sg-1-25-2-6 output: product_category_id: - - '3411' + - '1068' - input: - product_category_id: sg-1-4-3-2 + product_category_id: sg-1-25-2-7 output: product_category_id: - - '3411' + - '1068' - input: - product_category_id: sg-1-4-3-3 + product_category_id: sg-1-25-2-8 output: product_category_id: - - '3411' + - '1068' - input: - product_category_id: sg-1-4-4 + product_category_id: sg-1-25-2-9 output: product_category_id: - - '3652' + - '1068' - input: - product_category_id: sg-1-4-5 + product_category_id: sg-2 output: product_category_id: - - '3717' + - '990' - input: - product_category_id: sg-1-4-6 + product_category_id: sg-2-1 output: product_category_id: - - '4282' + - '499797' - input: - product_category_id: sg-1-4-6-1 + product_category_id: sg-2-1-1 output: product_category_id: - - '4282' + - '499797' - input: - product_category_id: sg-1-4-6-2 + product_category_id: sg-2-1-2 output: product_category_id: - - '4282' + - '499797' - input: - product_category_id: sg-1-4-6-3 + product_category_id: sg-2-2 output: product_category_id: - - '4282' + - '237166' - input: - product_category_id: sg-1-4-6-4 + product_category_id: sg-2-3 output: product_category_id: - - '4282' + - '499796' - input: - product_category_id: sg-1-5 + product_category_id: sg-2-3-1 output: product_category_id: - - '6734' + - '499796' - input: - product_category_id: sg-1-5-1 + product_category_id: sg-2-3-2 output: product_category_id: - - '6734' + - '499796' - input: - product_category_id: sg-1-5-2 + product_category_id: sg-2-3-3 output: product_category_id: - - '6734' + - '499796' - input: - product_category_id: sg-1-5-3 + product_category_id: sg-2-3-4 output: product_category_id: - - '6734' + - '499796' - input: - product_category_id: sg-1-6 + product_category_id: sg-2-4 output: product_category_id: - - '3354' + - '499792' - input: - product_category_id: sg-1-6-1 + product_category_id: sg-2-4-1 output: product_category_id: - - '3953' + - '4598' - input: - product_category_id: sg-1-7 + product_category_id: sg-2-4-1-1 output: product_category_id: - - '6739' + - '499703' - input: - product_category_id: sg-1-7-1 + product_category_id: sg-2-4-1-1-1 output: product_category_id: - - '499729' + - '499703' - input: - product_category_id: sg-1-7-10 + product_category_id: sg-2-4-1-1-2 output: product_category_id: - - '6730' + - '499703' - input: - product_category_id: sg-1-7-10-1 + product_category_id: sg-2-4-1-2 output: product_category_id: - - '6730' + - '499702' - input: - product_category_id: sg-1-7-10-2 + product_category_id: sg-2-4-1-2-1 output: product_category_id: - - '6730' + - '499702' - input: - product_category_id: sg-1-7-10-3 + product_category_id: sg-2-4-1-2-2 output: product_category_id: - - '6730' + - '499702' - input: - product_category_id: sg-1-7-11 + product_category_id: sg-2-4-1-2-3 output: product_category_id: - - '499730' + - '499702' - input: - product_category_id: sg-1-7-2 + product_category_id: sg-2-4-1-2-4 output: product_category_id: - - '505813' + - '499702' - input: - product_category_id: sg-1-7-2-1 + product_category_id: sg-2-4-1-2-5 output: product_category_id: - - '505813' + - '499702' - input: - product_category_id: sg-1-7-2-2 + product_category_id: sg-2-4-1-2-6 output: product_category_id: - - '505813' + - '499702' - input: - product_category_id: sg-1-7-2-3 + product_category_id: sg-2-4-1-3 output: product_category_id: - - '505813' + - '499701' - input: - product_category_id: sg-1-7-3 + product_category_id: sg-2-4-1-3-1 output: product_category_id: - - '499732' + - '499701' - input: - product_category_id: sg-1-7-3-1 + product_category_id: sg-2-4-1-3-2 output: product_category_id: - - '499732' + - '499701' - input: - product_category_id: sg-1-7-3-2 + product_category_id: sg-2-4-1-4 output: product_category_id: - - '499732' + - '499700' - input: - product_category_id: sg-1-7-4 + product_category_id: sg-2-4-1-4-1 output: product_category_id: - - '6731' + - '499700' - input: - product_category_id: sg-1-7-4-1 + product_category_id: sg-2-4-1-4-2 output: product_category_id: - - '6731' + - '499700' - input: - product_category_id: sg-1-7-4-2 + product_category_id: sg-2-4-1-5 output: product_category_id: - - '6731' + - '499699' - input: - product_category_id: sg-1-7-4-3 + product_category_id: sg-2-4-1-5-1 output: product_category_id: - - '6731' + - '499699' - input: - product_category_id: sg-1-7-5 + product_category_id: sg-2-4-1-5-2 output: product_category_id: - - '6729' + - '499699' - input: - product_category_id: sg-1-7-5-1 + product_category_id: sg-2-4-1-5-3 output: product_category_id: - - '6729' + - '499699' - input: - product_category_id: sg-1-7-5-2 + product_category_id: sg-2-4-1-5-4 output: product_category_id: - - '6729' + - '499699' - input: - product_category_id: sg-1-7-6 + product_category_id: sg-2-4-1-5-5 output: product_category_id: - - '499731' + - '499699' - input: - product_category_id: sg-1-7-7 + product_category_id: sg-2-4-1-5-6 output: product_category_id: - - '499733' + - '499699' - input: - product_category_id: sg-1-7-7-1 + product_category_id: sg-2-4-1-5-7 output: product_category_id: - - '499733' + - '499699' - input: - product_category_id: sg-1-7-7-2 + product_category_id: sg-2-4-1-5-8 output: product_category_id: - - '499733' + - '499699' - input: - product_category_id: sg-1-7-8 + product_category_id: sg-2-4-1-5-9 output: product_category_id: - - '499727' + - '499699' - input: - product_category_id: sg-1-7-9 + product_category_id: sg-2-4-1-5-10 output: product_category_id: - - '8505' + - '499699' - input: - product_category_id: sg-1-7-9-1 + product_category_id: sg-2-4-1-5-11 output: product_category_id: - - '8505' + - '499699' - input: - product_category_id: sg-1-7-9-2 + product_category_id: sg-2-4-1-5-12 output: product_category_id: - - '8505' + - '499699' - input: - product_category_id: sg-1-8 + product_category_id: sg-2-4-1-5-13 output: product_category_id: - - '1087' + - '499699' - input: - product_category_id: sg-1-8-1 + product_category_id: sg-2-4-1-5-14 output: product_category_id: - - '3870' + - '499699' - input: - product_category_id: sg-1-8-2 + product_category_id: sg-2-4-2 output: product_category_id: - - '499737' + - '4589' - input: - product_category_id: sg-1-8-2-1 + product_category_id: sg-2-4-2-1 output: product_category_id: - - '499738' + - '992' - input: - product_category_id: sg-1-8-3 + product_category_id: sg-2-4-2-1-1 output: product_category_id: - - '3815' + - '992' - input: - product_category_id: sg-1-8-4 + product_category_id: sg-2-4-2-1-2 output: product_category_id: - - '499735' + - '992' - input: - product_category_id: sg-1-8-5 + product_category_id: sg-2-4-2-2 output: product_category_id: - - '499736' + - '994' - input: - product_category_id: sg-1-8-5-1 + product_category_id: sg-2-4-2-2-1 output: product_category_id: - - '3339' + - '994' - input: - product_category_id: sg-1-8-5-2 + product_category_id: sg-2-4-2-2-2 output: product_category_id: - - '3543' + - '994' - input: - product_category_id: sg-1-8-5-3 + product_category_id: sg-2-4-2-2-3 output: product_category_id: - - '499739' + - '994' - input: - product_category_id: sg-1-8-6 + product_category_id: sg-2-4-2-2-4 output: product_category_id: - - '499734' + - '994' - input: - product_category_id: sg-1-8-7 + product_category_id: sg-2-4-2-3 output: product_category_id: - - '1087' + - '995' - input: - product_category_id: sg-1-8-7-1 + product_category_id: sg-2-4-2-4 output: product_category_id: - - '1087' + - '996' - input: - product_category_id: sg-1-8-7-2 + product_category_id: sg-2-4-2-4-1 output: product_category_id: - - '1087' + - '543610' - input: - product_category_id: sg-1-8-7-3 + product_category_id: sg-2-4-2-4-2 output: product_category_id: - - '1087' + - '543611' - input: - product_category_id: sg-1-8-7-4 + product_category_id: sg-2-4-2-5 output: product_category_id: - - '1087' + - '997' - input: - product_category_id: sg-1-8-7-5 + product_category_id: sg-2-4-3 output: product_category_id: - - '1087' + - '2614' - input: - product_category_id: sg-1-8-7-6 + product_category_id: sg-2-5 output: product_category_id: - - '1087' + - '993' - input: - product_category_id: sg-1-8-7-7 + product_category_id: sg-2-6 output: product_category_id: - - '1087' + - '5869' - input: - product_category_id: sg-1-8-7-8 + product_category_id: sg-2-7 output: product_category_id: - - '1087' + - '499795' - input: - product_category_id: sg-1-8-7-9 + product_category_id: sg-2-8 output: product_category_id: - - '1087' + - '4669' - input: - product_category_id: sg-1-9 + product_category_id: sg-2-8-1 output: product_category_id: - - '989' + - '4669' - input: - product_category_id: sg-1-9-1 + product_category_id: sg-2-8-2 output: product_category_id: - - '3269' + - '4669' - input: - product_category_id: sg-2 + product_category_id: sg-2-8-3 output: product_category_id: - - '990' + - '4669' - input: - product_category_id: sg-2-1 + product_category_id: sg-2-8-4 output: product_category_id: - - '499797' + - '4669' - input: - product_category_id: sg-2-1-1 + product_category_id: sg-2-8-5 output: product_category_id: - - '499797' + - '4669' - input: - product_category_id: sg-2-1-2 + product_category_id: sg-2-9 output: product_category_id: - - '499797' + - '499978' - input: product_category_id: sg-2-10 output: @@ -42417,11 +42737,6 @@ rules: output: product_category_id: - '8062' -- input: - product_category_id: sg-2-2 - output: - product_category_id: - - '237166' - input: product_category_id: sg-2-20 output: @@ -42702,321 +43017,6 @@ rules: output: product_category_id: - '5107' -- input: - product_category_id: sg-2-3 - output: - product_category_id: - - '499796' -- input: - product_category_id: sg-2-3-1 - output: - product_category_id: - - '499796' -- input: - product_category_id: sg-2-3-2 - output: - product_category_id: - - '499796' -- input: - product_category_id: sg-2-3-3 - output: - product_category_id: - - '499796' -- input: - product_category_id: sg-2-3-4 - output: - product_category_id: - - '499796' -- input: - product_category_id: sg-2-4 - output: - product_category_id: - - '499792' -- input: - product_category_id: sg-2-4-1 - output: - product_category_id: - - '4598' -- input: - product_category_id: sg-2-4-1-1 - output: - product_category_id: - - '499703' -- input: - product_category_id: sg-2-4-1-1-1 - output: - product_category_id: - - '499703' -- input: - product_category_id: sg-2-4-1-1-2 - output: - product_category_id: - - '499703' -- input: - product_category_id: sg-2-4-1-2 - output: - product_category_id: - - '499702' -- input: - product_category_id: sg-2-4-1-2-1 - output: - product_category_id: - - '499702' -- input: - product_category_id: sg-2-4-1-2-2 - output: - product_category_id: - - '499702' -- input: - product_category_id: sg-2-4-1-2-3 - output: - product_category_id: - - '499702' -- input: - product_category_id: sg-2-4-1-2-4 - output: - product_category_id: - - '499702' -- input: - product_category_id: sg-2-4-1-2-5 - output: - product_category_id: - - '499702' -- input: - product_category_id: sg-2-4-1-2-6 - output: - product_category_id: - - '499702' -- input: - product_category_id: sg-2-4-1-3 - output: - product_category_id: - - '499701' -- input: - product_category_id: sg-2-4-1-3-1 - output: - product_category_id: - - '499701' -- input: - product_category_id: sg-2-4-1-3-2 - output: - product_category_id: - - '499701' -- input: - product_category_id: sg-2-4-1-4 - output: - product_category_id: - - '499700' -- input: - product_category_id: sg-2-4-1-4-1 - output: - product_category_id: - - '499700' -- input: - product_category_id: sg-2-4-1-4-2 - output: - product_category_id: - - '499700' -- input: - product_category_id: sg-2-4-1-5 - output: - product_category_id: - - '499699' -- input: - product_category_id: sg-2-4-1-5-1 - output: - product_category_id: - - '499699' -- input: - product_category_id: sg-2-4-1-5-10 - output: - product_category_id: - - '499699' -- input: - product_category_id: sg-2-4-1-5-11 - output: - product_category_id: - - '499699' -- input: - product_category_id: sg-2-4-1-5-12 - output: - product_category_id: - - '499699' -- input: - product_category_id: sg-2-4-1-5-13 - output: - product_category_id: - - '499699' -- input: - product_category_id: sg-2-4-1-5-14 - output: - product_category_id: - - '499699' -- input: - product_category_id: sg-2-4-1-5-2 - output: - product_category_id: - - '499699' -- input: - product_category_id: sg-2-4-1-5-3 - output: - product_category_id: - - '499699' -- input: - product_category_id: sg-2-4-1-5-4 - output: - product_category_id: - - '499699' -- input: - product_category_id: sg-2-4-1-5-5 - output: - product_category_id: - - '499699' -- input: - product_category_id: sg-2-4-1-5-6 - output: - product_category_id: - - '499699' -- input: - product_category_id: sg-2-4-1-5-7 - output: - product_category_id: - - '499699' -- input: - product_category_id: sg-2-4-1-5-8 - output: - product_category_id: - - '499699' -- input: - product_category_id: sg-2-4-1-5-9 - output: - product_category_id: - - '499699' -- input: - product_category_id: sg-2-4-2 - output: - product_category_id: - - '4589' -- input: - product_category_id: sg-2-4-2-1 - output: - product_category_id: - - '992' -- input: - product_category_id: sg-2-4-2-1-1 - output: - product_category_id: - - '992' -- input: - product_category_id: sg-2-4-2-1-2 - output: - product_category_id: - - '992' -- input: - product_category_id: sg-2-4-2-2 - output: - product_category_id: - - '994' -- input: - product_category_id: sg-2-4-2-2-1 - output: - product_category_id: - - '994' -- input: - product_category_id: sg-2-4-2-2-2 - output: - product_category_id: - - '994' -- input: - product_category_id: sg-2-4-2-2-3 - output: - product_category_id: - - '994' -- input: - product_category_id: sg-2-4-2-2-4 - output: - product_category_id: - - '994' -- input: - product_category_id: sg-2-4-2-3 - output: - product_category_id: - - '995' -- input: - product_category_id: sg-2-4-2-4 - output: - product_category_id: - - '996' -- input: - product_category_id: sg-2-4-2-4-1 - output: - product_category_id: - - '543610' -- input: - product_category_id: sg-2-4-2-4-2 - output: - product_category_id: - - '543611' -- input: - product_category_id: sg-2-4-2-5 - output: - product_category_id: - - '997' -- input: - product_category_id: sg-2-4-3 - output: - product_category_id: - - '2614' -- input: - product_category_id: sg-2-5 - output: - product_category_id: - - '993' -- input: - product_category_id: sg-2-6 - output: - product_category_id: - - '5869' -- input: - product_category_id: sg-2-7 - output: - product_category_id: - - '499795' -- input: - product_category_id: sg-2-8 - output: - product_category_id: - - '4669' -- input: - product_category_id: sg-2-8-1 - output: - product_category_id: - - '4669' -- input: - product_category_id: sg-2-8-2 - output: - product_category_id: - - '4669' -- input: - product_category_id: sg-2-8-3 - output: - product_category_id: - - '4669' -- input: - product_category_id: sg-2-8-4 - output: - product_category_id: - - '4669' -- input: - product_category_id: sg-2-8-5 - output: - product_category_id: - - '4669' -- input: - product_category_id: sg-2-9 - output: - product_category_id: - - '499978' - input: product_category_id: sg-3 output: @@ -43402,11 +43402,6 @@ rules: output: product_category_id: - '7449' -- input: - product_category_id: sg-4-1-1-10 - output: - product_category_id: - - '3476' - input: product_category_id: sg-4-1-1-2 output: @@ -43547,6 +43542,11 @@ rules: output: product_category_id: - '3406' +- input: + product_category_id: sg-4-1-1-10 + output: + product_category_id: + - '3476' - input: product_category_id: sg-4-1-2 output: @@ -43787,11 +43787,6 @@ rules: output: product_category_id: - '6287' -- input: - product_category_id: sg-4-1-5-10 - output: - product_category_id: - - '3762' - input: product_category_id: sg-4-1-5-2 output: @@ -43852,6 +43847,11 @@ rules: output: product_category_id: - '7451' +- input: + product_category_id: sg-4-1-5-10 + output: + product_category_id: + - '3762' - input: product_category_id: sg-4-1-6 output: @@ -43867,11 +43867,6 @@ rules: output: product_category_id: - '7104' -- input: - product_category_id: sg-4-1-6-1-10 - output: - product_category_id: - - '7104' - input: product_category_id: sg-4-1-6-1-2 output: @@ -43913,35 +43908,10 @@ rules: product_category_id: - '7104' - input: - product_category_id: sg-4-1-6-10 - output: - product_category_id: - - '6550' -- input: - product_category_id: sg-4-1-6-11 - output: - product_category_id: - - '6511' -- input: - product_category_id: sg-4-1-6-11-1 - output: - product_category_id: - - '6512' -- input: - product_category_id: sg-4-1-6-11-2 - output: - product_category_id: - - '2512' -- input: - product_category_id: sg-4-1-6-12 - output: - product_category_id: - - '3596' -- input: - product_category_id: sg-4-1-6-13 + product_category_id: sg-4-1-6-1-10 output: product_category_id: - - '6515' + - '7104' - input: product_category_id: sg-4-1-6-2 output: @@ -43992,6 +43962,36 @@ rules: output: product_category_id: - '3360' +- input: + product_category_id: sg-4-1-6-10 + output: + product_category_id: + - '6550' +- input: + product_category_id: sg-4-1-6-11 + output: + product_category_id: + - '6511' +- input: + product_category_id: sg-4-1-6-11-1 + output: + product_category_id: + - '6512' +- input: + product_category_id: sg-4-1-6-11-2 + output: + product_category_id: + - '2512' +- input: + product_category_id: sg-4-1-6-12 + output: + product_category_id: + - '3596' +- input: + product_category_id: sg-4-1-6-13 + output: + product_category_id: + - '6515' - input: product_category_id: sg-4-1-7 output: @@ -44148,3420 +44148,3495 @@ rules: product_category_id: - '3413' - input: - product_category_id: sg-4-10 + product_category_id: sg-4-2 output: product_category_id: - - '5998' + - '1013' - input: - product_category_id: sg-4-10-1 + product_category_id: sg-4-2-1 output: product_category_id: - - '5998' + - '1014' +- input: + product_category_id: sg-4-2-1-1 + output: + product_category_id: + - '4451' +- input: + product_category_id: sg-4-2-1-1-1 + output: + product_category_id: + - '4451' +- input: + product_category_id: sg-4-2-1-1-2 + output: + product_category_id: + - '4451' +- input: + product_category_id: sg-4-2-1-2 + output: + product_category_id: + - '3695' +- input: + product_category_id: sg-4-2-1-3 + output: + product_category_id: + - '3089' +- input: + product_category_id: sg-4-2-2 + output: + product_category_id: + - '1016' +- input: + product_category_id: sg-4-2-2-1 + output: + product_category_id: + - '1016' +- input: + product_category_id: sg-4-2-2-2 + output: + product_category_id: + - '1016' +- input: + product_category_id: sg-4-2-2-3 + output: + product_category_id: + - '1016' +- input: + product_category_id: sg-4-2-2-4 + output: + product_category_id: + - '1016' +- input: + product_category_id: sg-4-2-3 + output: + product_category_id: + - '1019' +- input: + product_category_id: sg-4-2-4 + output: + product_category_id: + - '3937' +- input: + product_category_id: sg-4-2-4-1 + output: + product_category_id: + - '3937' +- input: + product_category_id: sg-4-2-4-2 + output: + product_category_id: + - '3937' +- input: + product_category_id: sg-4-2-4-3 + output: + product_category_id: + - '3937' - input: - product_category_id: sg-4-10-10 + product_category_id: sg-4-2-4-4 output: product_category_id: - - '5998' + - '3937' - input: - product_category_id: sg-4-10-2 + product_category_id: sg-4-2-4-5 output: product_category_id: - - '5998' + - '3937' - input: - product_category_id: sg-4-10-3 + product_category_id: sg-4-2-4-6 output: product_category_id: - - '5998' + - '3937' - input: - product_category_id: sg-4-10-4 + product_category_id: sg-4-2-4-7 output: product_category_id: - - '5998' + - '3495' - input: - product_category_id: sg-4-10-5 + product_category_id: sg-4-2-4-7-1 output: product_category_id: - - '5998' + - '3495' - input: - product_category_id: sg-4-10-6 + product_category_id: sg-4-2-4-7-2 output: product_category_id: - - '5998' + - '3495' - input: - product_category_id: sg-4-10-7 + product_category_id: sg-4-2-4-7-3 output: product_category_id: - - '5998' + - '3495' - input: - product_category_id: sg-4-10-8 + product_category_id: sg-4-2-4-8 output: product_category_id: - - '5998' + - '4095' - input: - product_category_id: sg-4-10-9 + product_category_id: sg-4-2-5 output: product_category_id: - - '5998' + - '3508' - input: - product_category_id: sg-4-11 + product_category_id: sg-4-2-6 output: product_category_id: - - '5635' + - '5636' - input: - product_category_id: sg-4-12 + product_category_id: sg-4-2-7 output: product_category_id: - - '499761' + - '7154' - input: - product_category_id: sg-4-12-1 + product_category_id: sg-4-2-7-1 output: product_category_id: - - '499771' + - '7154' - input: - product_category_id: sg-4-12-1-1 + product_category_id: sg-4-2-7-2 output: product_category_id: - - '499775' + - '7154' - input: - product_category_id: sg-4-12-2 + product_category_id: sg-4-2-7-3 output: product_category_id: - - '499759' + - '7154' - input: - product_category_id: sg-4-12-2-1 + product_category_id: sg-4-2-7-4 output: product_category_id: - - '499759' + - '7154' - input: - product_category_id: sg-4-12-2-2 + product_category_id: sg-4-2-7-5 output: product_category_id: - - '499759' + - '7154' - input: - product_category_id: sg-4-12-2-3 + product_category_id: sg-4-2-7-6 output: product_category_id: - - '499759' + - '7154' - input: - product_category_id: sg-4-12-3 + product_category_id: sg-4-2-7-7 output: product_category_id: - - '1058' + - '7154' - input: - product_category_id: sg-4-12-3-1 + product_category_id: sg-4-2-8 output: product_category_id: - - '1058' + - '3738' - input: - product_category_id: sg-4-12-3-2 + product_category_id: sg-4-2-9 output: product_category_id: - - '1058' + - '3538' - input: - product_category_id: sg-4-12-3-3 + product_category_id: sg-4-2-9-1 output: product_category_id: - - '1058' + - '3538' - input: - product_category_id: sg-4-12-3-4 + product_category_id: sg-4-2-9-2 output: product_category_id: - - '1058' + - '3538' - input: - product_category_id: sg-4-12-4 + product_category_id: sg-4-2-10 output: product_category_id: - - '499760' + - '4785' - input: - product_category_id: sg-4-12-4-1 + product_category_id: sg-4-2-10-1 output: product_category_id: - - '499760' + - '4785' - input: - product_category_id: sg-4-12-4-2 + product_category_id: sg-4-2-10-2 output: product_category_id: - - '499760' + - '4785' - input: - product_category_id: sg-4-12-4-3 + product_category_id: sg-4-2-10-3 output: product_category_id: - - '499760' + - '4785' - input: - product_category_id: sg-4-12-5 + product_category_id: sg-4-2-11 output: product_category_id: - - '2837' + - '502993' - input: - product_category_id: sg-4-12-5-1 + product_category_id: sg-4-2-11-1 output: product_category_id: - - '2837' + - '502994' - input: - product_category_id: sg-4-12-5-2 + product_category_id: sg-4-2-11-1-1 output: product_category_id: - - '2837' + - '502994' - input: - product_category_id: sg-4-12-5-3 + product_category_id: sg-4-2-11-1-2 output: product_category_id: - - '2837' + - '502994' - input: - product_category_id: sg-4-12-5-4 + product_category_id: sg-4-2-11-1-3 output: product_category_id: - - '2837' + - '502994' - input: - product_category_id: sg-4-12-6 + product_category_id: sg-4-2-11-2 output: product_category_id: - - '500029' + - '503009' - input: - product_category_id: sg-4-12-6-1 + product_category_id: sg-4-2-11-2-1 output: product_category_id: - - '500029' + - '503009' - input: - product_category_id: sg-4-12-6-2 + product_category_id: sg-4-2-11-2-2 output: product_category_id: - - '500029' + - '503009' - input: - product_category_id: sg-4-12-6-3 + product_category_id: sg-4-2-11-2-3 output: product_category_id: - - '500029' + - '503009' - input: - product_category_id: sg-4-12-6-4 + product_category_id: sg-4-2-12 output: product_category_id: - - '500029' + - '1023' - input: - product_category_id: sg-4-13 + product_category_id: sg-4-2-12-1 output: product_category_id: - - '7375' + - '1023' - input: - product_category_id: sg-4-13-1 + product_category_id: sg-4-2-12-2 output: product_category_id: - - '7376' + - '1023' - input: - product_category_id: sg-4-13-2 + product_category_id: sg-4-2-13 output: product_category_id: - - '7377' + - '5881' - input: - product_category_id: sg-4-13-2-1 + product_category_id: sg-4-2-14 output: product_category_id: - - '7377' + - '1020' - input: - product_category_id: sg-4-13-2-2 + product_category_id: sg-4-2-15 output: product_category_id: - - '7377' + - '1021' - input: - product_category_id: sg-4-13-2-3 + product_category_id: sg-4-2-16 output: product_category_id: - - '7377' + - '5655' - input: - product_category_id: sg-4-14 + product_category_id: sg-4-2-16-1 output: product_category_id: - - '499846' + - '499680' - input: - product_category_id: sg-4-14-1 + product_category_id: sg-4-2-16-2 output: product_category_id: - - '1062' + - '5656' - input: - product_category_id: sg-4-14-1-1 + product_category_id: sg-4-2-16-3 output: product_category_id: - - '3107' + - '5658' - input: - product_category_id: sg-4-14-1-2 + product_category_id: sg-4-2-16-3-1 output: product_category_id: - - '3950' + - '5658' - input: - product_category_id: sg-4-14-1-2-1 + product_category_id: sg-4-2-16-3-2 output: product_category_id: - - '3950' + - '5658' - input: - product_category_id: sg-4-14-1-2-2 + product_category_id: sg-4-2-16-4 output: product_category_id: - - '3950' + - '5657' - input: - product_category_id: sg-4-14-1-3 + product_category_id: sg-4-2-17 output: product_category_id: - - '3907' + - '1022' - input: - product_category_id: sg-4-14-1-3-1 + product_category_id: sg-4-2-17-1 output: product_category_id: - - '3907' + - '1022' - input: - product_category_id: sg-4-14-1-3-2 + product_category_id: sg-4-2-17-2 output: product_category_id: - - '3907' + - '1022' - input: - product_category_id: sg-4-14-2 + product_category_id: sg-4-2-17-3 output: product_category_id: - - '3787' + - '1022' - input: - product_category_id: sg-4-14-2-1 + product_category_id: sg-4-2-17-4 output: product_category_id: - - '3689' + - '1022' - input: - product_category_id: sg-4-14-2-2 + product_category_id: sg-4-2-17-5 output: product_category_id: - - '3190' + - '1022' - input: - product_category_id: sg-4-14-3 + product_category_id: sg-4-2-17-6 output: product_category_id: - - '3484' + - '1022' - input: - product_category_id: sg-4-14-3-1 + product_category_id: sg-4-2-17-7 output: product_category_id: - - '3993' + - '1022' - input: - product_category_id: sg-4-14-3-2 + product_category_id: sg-4-2-17-8 output: product_category_id: - - '3227' + - '1022' - input: - product_category_id: sg-4-14-4 + product_category_id: sg-4-2-17-9 output: product_category_id: - - '3405' + - '1022' - input: - product_category_id: sg-4-14-4-1 + product_category_id: sg-4-2-17-10 output: product_category_id: - - '3405' + - '1022' - input: - product_category_id: sg-4-14-4-2 + product_category_id: sg-4-2-18 output: product_category_id: - - '3405' + - '8079' - input: - product_category_id: sg-4-14-4-3 + product_category_id: sg-4-3 output: product_category_id: - - '3405' + - '7059' - input: - product_category_id: sg-4-14-4-4 + product_category_id: sg-4-3-1 output: product_category_id: - - '3405' + - '3363' - input: - product_category_id: sg-4-14-5 + product_category_id: sg-4-3-1-1 output: product_category_id: - - '7430' + - '3363' - input: - product_category_id: sg-4-14-6 + product_category_id: sg-4-3-1-2 output: product_category_id: - - '3390' + - '3363' - input: - product_category_id: sg-4-14-6-1 + product_category_id: sg-4-3-1-3 output: product_category_id: - - '499848' + - '3363' - input: - product_category_id: sg-4-14-6-2 + product_category_id: sg-4-3-2 output: product_category_id: - - '499847' + - '3746' - input: - product_category_id: sg-4-14-7 + product_category_id: sg-4-3-3 output: product_category_id: - - '499904' + - '499815' - input: - product_category_id: sg-4-14-7-1 + product_category_id: sg-4-3-3-1 output: product_category_id: - - '499850' + - '499816' - input: - product_category_id: sg-4-14-7-2 + product_category_id: sg-4-3-3-2 output: product_category_id: - - '499849' + - '3314' - input: - product_category_id: sg-4-14-8 + product_category_id: sg-4-3-3-3 output: product_category_id: - - '3126' + - '5394' - input: - product_category_id: sg-4-14-8-1 + product_category_id: sg-4-3-4 output: product_category_id: - - '499882' + - '3454' - input: - product_category_id: sg-4-14-8-2 + product_category_id: sg-4-3-5 output: product_category_id: - - '499883' + - '3211' - input: - product_category_id: sg-4-14-8-3 + product_category_id: sg-4-3-6 output: product_category_id: - - '499884' + - '3322' - input: - product_category_id: sg-4-15 + product_category_id: sg-4-3-7 output: product_category_id: - - '5879' + - '7059' - input: - product_category_id: sg-4-15-1 + product_category_id: sg-4-3-8 output: product_category_id: - - '5879' + - '3218' - input: - product_category_id: sg-4-15-2 + product_category_id: sg-4-3-9 output: product_category_id: - - '5879' + - '3266' - input: - product_category_id: sg-4-16 + product_category_id: sg-4-3-10 output: product_category_id: - - '3276' + - '3825' - input: - product_category_id: sg-4-16-1 + product_category_id: sg-4-3-11 output: product_category_id: - - '1059' + - '3201' - input: - product_category_id: sg-4-16-1-1 + product_category_id: sg-4-3-12 output: product_category_id: - - '1059' + - '3369' - input: - product_category_id: sg-4-16-1-2 + product_category_id: sg-4-3-12-1 output: product_category_id: - - '1059' + - '3369' - input: - product_category_id: sg-4-16-1-3 + product_category_id: sg-4-3-12-2 output: product_category_id: - - '1059' + - '3369' - input: - product_category_id: sg-4-16-1-4 + product_category_id: sg-4-3-13 output: product_category_id: - - '1059' + - '7060' - input: - product_category_id: sg-4-16-1-5 + product_category_id: sg-4-3-13-1 output: product_category_id: - - '1059' + - '7060' - input: - product_category_id: sg-4-16-1-6 + product_category_id: sg-4-3-13-2 output: product_category_id: - - '1059' + - '7060' - input: - product_category_id: sg-4-16-2 + product_category_id: sg-4-3-13-3 output: product_category_id: - - '3127' + - '7060' - input: - product_category_id: sg-4-16-3 + product_category_id: sg-4-3-14 output: product_category_id: - - '3626' + - '7061' - input: - product_category_id: sg-4-16-4 + product_category_id: sg-4-3-15 output: product_category_id: - - '3670' + - '3518' - input: - product_category_id: sg-4-16-4-1 + product_category_id: sg-4-3-16 output: product_category_id: - - '3869' + - '3849' - input: - product_category_id: sg-4-16-4-2 + product_category_id: sg-4-4 output: product_category_id: - - '505817' + - '1025' - input: - product_category_id: sg-4-16-4-2-1 + product_category_id: sg-4-4-1 output: product_category_id: - - '505817' + - '3214' - input: - product_category_id: sg-4-16-4-2-2 + product_category_id: sg-4-4-1-1 output: product_category_id: - - '505817' + - '3778' - input: - product_category_id: sg-4-16-4-2-3 + product_category_id: sg-4-4-1-1-1 output: product_category_id: - - '505817' + - '3778' - input: - product_category_id: sg-4-16-4-2-4 + product_category_id: sg-4-4-1-1-2 output: product_category_id: - - '505817' + - '3778' - input: - product_category_id: sg-4-16-4-2-5 + product_category_id: sg-4-4-1-1-3 output: product_category_id: - - '505817' + - '3778' - input: - product_category_id: sg-4-16-4-2-6 + product_category_id: sg-4-4-1-2 output: product_category_id: - - '505817' + - '3341' - input: - product_category_id: sg-4-16-4-2-7 + product_category_id: sg-4-4-1-3 output: product_category_id: - - '505817' + - '3879' - input: - product_category_id: sg-4-16-4-3 + product_category_id: sg-4-4-1-4 output: product_category_id: - - '3192' + - '4145' - input: - product_category_id: sg-4-16-4-4 + product_category_id: sg-4-4-1-4-1 output: product_category_id: - - '3637' + - '4145' - input: - product_category_id: sg-4-16-5 + product_category_id: sg-4-4-1-4-2 output: product_category_id: - - '3067' + - '4145' - input: - product_category_id: sg-4-16-5-1 + product_category_id: sg-4-4-1-5 output: product_category_id: - - '499776' + - '500067' - input: - product_category_id: sg-4-16-5-2 + product_category_id: sg-4-4-1-6 output: product_category_id: - - '7789' + - '5842' - input: - product_category_id: sg-4-16-5-3 + product_category_id: sg-4-4-1-7 output: product_category_id: - - '3488' + - '5540' - input: - product_category_id: sg-4-17 + product_category_id: sg-4-4-1-7-1 output: product_category_id: - - '499844' + - '5540' - input: - product_category_id: sg-4-17-1 + product_category_id: sg-4-4-1-7-2 output: product_category_id: - - '499951' + - '5540' - input: - product_category_id: sg-4-17-1-1 + product_category_id: sg-4-4-1-7-3 output: product_category_id: - - '499952' + - '5540' - input: - product_category_id: sg-4-17-1-2 + product_category_id: sg-4-4-1-7-4 output: product_category_id: - - '499877' + - '5540' - input: - product_category_id: sg-4-17-2 + product_category_id: sg-4-4-1-7-5 output: product_category_id: - - '499845' + - '5540' - input: - product_category_id: sg-4-17-2-1 + product_category_id: sg-4-4-1-7-6 output: product_category_id: - - '7224' + - '5540' - input: - product_category_id: sg-4-17-2-10 + product_category_id: sg-4-4-1-8 output: product_category_id: - - '6063' + - '3243' - input: - product_category_id: sg-4-17-2-11 + product_category_id: sg-4-4-1-9 output: product_category_id: - - '6062' + - '6442' - input: - product_category_id: sg-4-17-2-11-1 + product_category_id: sg-4-4-1-10 output: product_category_id: - - '6062' + - '3719' - input: - product_category_id: sg-4-17-2-11-2 + product_category_id: sg-4-4-1-11 output: product_category_id: - - '6062' + - '1028' - input: - product_category_id: sg-4-17-2-11-3 + product_category_id: sg-4-4-1-12 output: product_category_id: - - '6062' + - '500092' - input: - product_category_id: sg-4-17-2-12 + product_category_id: sg-4-4-1-13 output: product_category_id: - - '1157' + - '1027' - input: - product_category_id: sg-4-17-2-13 + product_category_id: sg-4-4-1-13-1 output: product_category_id: - - '6064' + - '1027' - input: - product_category_id: sg-4-17-2-13-1 + product_category_id: sg-4-4-1-13-2 output: product_category_id: - - '3331' + - '1027' - input: - product_category_id: sg-4-17-2-13-2 + product_category_id: sg-4-4-1-13-3 output: product_category_id: - - '1158' + - '1027' - input: - product_category_id: sg-4-17-2-14 + product_category_id: sg-4-4-1-13-4 output: product_category_id: - - '5088' + - '1027' - input: - product_category_id: sg-4-17-2-14-1 + product_category_id: sg-4-4-1-13-5 output: product_category_id: - - '5088' + - '1027' - input: - product_category_id: sg-4-17-2-14-2 + product_category_id: sg-4-4-1-13-6 output: product_category_id: - - '5088' + - '1027' - input: - product_category_id: sg-4-17-2-14-3 + product_category_id: sg-4-4-1-13-7 output: product_category_id: - - '5088' + - '1027' - input: - product_category_id: sg-4-17-2-15 + product_category_id: sg-4-4-1-13-8 output: product_category_id: - - '1162' + - '1027' - input: - product_category_id: sg-4-17-2-16 + product_category_id: sg-4-4-1-13-9 output: product_category_id: - - '1163' + - '1027' - input: - product_category_id: sg-4-17-2-17 + product_category_id: sg-4-4-1-13-10 output: product_category_id: - - '1164' + - '1027' - input: - product_category_id: sg-4-17-2-2 + product_category_id: sg-4-4-1-14 output: product_category_id: - - '8203' + - '3368' - input: - product_category_id: sg-4-17-2-2-1 + product_category_id: sg-4-4-1-15 output: product_category_id: - - '5050' + - '3827' - input: - product_category_id: sg-4-17-2-3 + product_category_id: sg-4-4-1-16 output: product_category_id: - - '3550' + - '6445' - input: - product_category_id: sg-4-17-2-4 + product_category_id: sg-4-4-1-17 output: product_category_id: - - '1161' + - '6506' - input: - product_category_id: sg-4-17-2-5 + product_category_id: sg-4-4-1-18 output: product_category_id: - - '499681' + - '7448' - input: - product_category_id: sg-4-17-2-6 + product_category_id: sg-4-4-1-19 output: product_category_id: - - '7558' + - '3428' - input: - product_category_id: sg-4-17-2-7 + product_category_id: sg-4-4-1-20 output: product_category_id: - - '505772' + - '499694' - input: - product_category_id: sg-4-17-2-7-1 + product_category_id: sg-4-4-1-20-1 output: product_category_id: - - '505772' + - '499694' - input: - product_category_id: sg-4-17-2-7-2 + product_category_id: sg-4-4-1-20-2 output: product_category_id: - - '505772' + - '499694' - input: - product_category_id: sg-4-17-2-7-3 + product_category_id: sg-4-4-1-20-3 output: product_category_id: - - '505772' + - '499694' - input: - product_category_id: sg-4-17-2-7-4 + product_category_id: sg-4-4-1-20-4 output: product_category_id: - - '505772' + - '499694' - input: - product_category_id: sg-4-17-2-7-5 + product_category_id: sg-4-4-1-20-5 output: product_category_id: - - '505772' + - '499694' - input: - product_category_id: sg-4-17-2-7-6 + product_category_id: sg-4-4-1-21 output: product_category_id: - - '505772' + - '7223' - input: - product_category_id: sg-4-17-2-7-7 + product_category_id: sg-4-4-1-22 output: product_category_id: - - '505772' + - '505668' - input: - product_category_id: sg-4-17-2-7-8 + product_category_id: sg-4-4-1-22-1 output: product_category_id: - - '505772' + - '505668' - input: - product_category_id: sg-4-17-2-7-9 + product_category_id: sg-4-4-1-22-2 output: product_category_id: - - '505772' + - '505668' - input: - product_category_id: sg-4-17-2-8 + product_category_id: sg-4-4-1-23 output: product_category_id: - - '8074' + - '3811' - input: - product_category_id: sg-4-17-2-8-1 + product_category_id: sg-4-4-1-24 output: product_category_id: - - '8074' + - '3868' - input: - product_category_id: sg-4-17-2-8-2 + product_category_id: sg-4-4-1-24-1 output: product_category_id: - - '8074' + - '3868' - input: - product_category_id: sg-4-17-2-9 + product_category_id: sg-4-4-1-24-2 output: product_category_id: - - '505296' + - '3868' - input: - product_category_id: sg-4-17-2-9-1 + product_category_id: sg-4-4-1-24-3 output: product_category_id: - - '505296' + - '3868' - input: - product_category_id: sg-4-17-3 + product_category_id: sg-4-4-1-24-4 output: product_category_id: - - '7539' + - '3868' - input: - product_category_id: sg-4-17-3-1 + product_category_id: sg-4-4-1-25 output: product_category_id: - - '7539' + - '3631' - input: - product_category_id: sg-4-17-3-2 + product_category_id: sg-4-4-1-26 output: product_category_id: - - '7539' + - '3558' - input: - product_category_id: sg-4-17-3-3 + product_category_id: sg-4-4-1-27 output: product_category_id: - - '7539' + - '6048' - input: - product_category_id: sg-4-17-3-4 + product_category_id: sg-4-4-1-28 output: product_category_id: - - '7539' + - '500109' - input: - product_category_id: sg-4-17-3-5 + product_category_id: sg-4-4-2 output: product_category_id: - - '7539' + - '3618' - input: - product_category_id: sg-4-17-3-6 + product_category_id: sg-4-4-2-1 output: product_category_id: - - '7539' + - '3740' - input: - product_category_id: sg-4-17-4 + product_category_id: sg-4-4-2-1-1 output: product_category_id: - - '1166' + - '4574' - input: - product_category_id: sg-4-17-4-1 + product_category_id: sg-4-4-2-1-2 output: product_category_id: - - '3073' + - '4575' - input: - product_category_id: sg-4-17-4-2 + product_category_id: sg-4-4-2-1-3 output: product_category_id: - - '3064' + - '4576' - input: - product_category_id: sg-4-2 + product_category_id: sg-4-4-2-1-4 output: product_category_id: - - '1013' + - '4577' - input: - product_category_id: sg-4-2-1 + product_category_id: sg-4-4-2-2 output: product_category_id: - - '1014' + - '499684' - input: - product_category_id: sg-4-2-1-1 + product_category_id: sg-4-4-2-3 output: product_category_id: - - '4451' + - '499685' - input: - product_category_id: sg-4-2-1-1-1 + product_category_id: sg-4-4-2-4 output: product_category_id: - - '4451' + - '4585' - input: - product_category_id: sg-4-2-1-1-2 + product_category_id: sg-4-4-2-4-1 output: product_category_id: - - '4451' + - '4590' - input: - product_category_id: sg-4-2-1-2 + product_category_id: sg-4-4-2-4-2 output: product_category_id: - - '3695' + - '4586' - input: - product_category_id: sg-4-2-1-3 + product_category_id: sg-4-4-2-4-2-1 output: product_category_id: - - '3089' + - '4586' - input: - product_category_id: sg-4-2-10 + product_category_id: sg-4-4-2-4-2-2 output: product_category_id: - - '4785' + - '4586' - input: - product_category_id: sg-4-2-10-1 + product_category_id: sg-4-4-2-4-3 output: product_category_id: - - '4785' + - '4591' - input: - product_category_id: sg-4-2-10-2 + product_category_id: sg-4-4-2-4-4 output: product_category_id: - - '4785' + - '4587' - input: - product_category_id: sg-4-2-10-3 + product_category_id: sg-4-4-2-4-5 output: product_category_id: - - '4785' + - '4592' - input: - product_category_id: sg-4-2-11 + product_category_id: sg-4-4-2-4-6 output: product_category_id: - - '502993' + - '4588' - input: - product_category_id: sg-4-2-11-1 + product_category_id: sg-4-4-2-4-7 output: product_category_id: - - '502994' + - '4593' - input: - product_category_id: sg-4-2-11-1-1 + product_category_id: sg-4-4-2-4-8 output: product_category_id: - - '502994' + - '4594' - input: - product_category_id: sg-4-2-11-1-2 + product_category_id: sg-4-4-2-5 output: product_category_id: - - '502994' + - '4603' - input: - product_category_id: sg-4-2-11-1-3 + product_category_id: sg-4-4-2-6 output: product_category_id: - - '502994' + - '3639' - input: - product_category_id: sg-4-2-11-2 + product_category_id: sg-4-4-2-7 output: product_category_id: - - '503009' + - '499868' - input: - product_category_id: sg-4-2-11-2-1 + product_category_id: sg-4-4-2-8 output: product_category_id: - - '503009' + - '6960' - input: - product_category_id: sg-4-2-11-2-2 + product_category_id: sg-4-4-2-9 output: product_category_id: - - '503009' + - '4582' - input: - product_category_id: sg-4-2-11-2-3 + product_category_id: sg-4-4-2-10 output: product_category_id: - - '503009' + - '7478' - input: - product_category_id: sg-4-2-12 + product_category_id: sg-4-4-2-10-1 output: product_category_id: - - '1023' + - '7480' - input: - product_category_id: sg-4-2-12-1 + product_category_id: sg-4-4-2-10-2 output: product_category_id: - - '1023' + - '7479' - input: - product_category_id: sg-4-2-12-2 + product_category_id: sg-4-4-2-11 output: product_category_id: - - '1023' + - '7477' - input: - product_category_id: sg-4-2-13 + product_category_id: sg-4-4-2-12 output: product_category_id: - - '5881' + - '8239' - input: - product_category_id: sg-4-2-14 + product_category_id: sg-4-4-2-13 output: product_category_id: - - '1020' + - '3292' - input: - product_category_id: sg-4-2-15 + product_category_id: sg-4-4-2-14 output: product_category_id: - - '1021' + - '4595' - input: - product_category_id: sg-4-2-16 + product_category_id: sg-4-4-2-15 output: product_category_id: - - '5655' + - '4194' - input: - product_category_id: sg-4-2-16-1 + product_category_id: sg-4-4-2-16 output: product_category_id: - - '499680' + - '4596' - input: - product_category_id: sg-4-2-16-2 + product_category_id: sg-4-4-2-16-1 output: product_category_id: - - '5656' + - '4596' - input: - product_category_id: sg-4-2-16-3 + product_category_id: sg-4-4-2-16-2 output: product_category_id: - - '5658' + - '4596' - input: - product_category_id: sg-4-2-16-3-1 + product_category_id: sg-4-4-2-16-3 output: product_category_id: - - '5658' + - '4596' - input: - product_category_id: sg-4-2-16-3-2 + product_category_id: sg-4-4-2-17 output: product_category_id: - - '5658' + - '4583' - input: - product_category_id: sg-4-2-16-4 + product_category_id: sg-4-4-2-18 output: product_category_id: - - '5657' + - '499871' - input: - product_category_id: sg-4-2-17 + product_category_id: sg-4-4-2-19 output: product_category_id: - - '1022' + - '499869' - input: - product_category_id: sg-4-2-17-1 + product_category_id: sg-4-4-2-20 output: product_category_id: - - '1022' + - '499870' - input: - product_category_id: sg-4-2-17-10 + product_category_id: sg-4-4-2-21 output: product_category_id: - - '1022' + - '4571' - input: - product_category_id: sg-4-2-17-2 + product_category_id: sg-4-4-2-21-1 output: product_category_id: - - '1022' + - '4571' - input: - product_category_id: sg-4-2-17-3 + product_category_id: sg-4-4-2-21-2 output: product_category_id: - - '1022' + - '4571' - input: - product_category_id: sg-4-2-17-4 + product_category_id: sg-4-4-2-21-3 output: product_category_id: - - '1022' + - '4571' - input: - product_category_id: sg-4-2-17-5 + product_category_id: sg-4-4-2-21-4 output: product_category_id: - - '1022' + - '4571' - input: - product_category_id: sg-4-2-17-6 + product_category_id: sg-4-4-2-22 output: product_category_id: - - '1022' + - '4572' - input: - product_category_id: sg-4-2-17-7 + product_category_id: sg-4-4-2-23 output: product_category_id: - - '1022' + - '4597' - input: - product_category_id: sg-4-2-17-8 + product_category_id: sg-4-4-2-23-1 output: product_category_id: - - '1022' + - '7538' - input: - product_category_id: sg-4-2-17-9 + product_category_id: sg-4-4-2-23-2 output: product_category_id: - - '1022' + - '500053' - input: - product_category_id: sg-4-2-18 + product_category_id: sg-4-4-2-23-2-1 output: product_category_id: - - '8079' + - '500053' - input: - product_category_id: sg-4-2-2 + product_category_id: sg-4-4-2-23-2-2 output: product_category_id: - - '1016' + - '500053' - input: - product_category_id: sg-4-2-2-1 + product_category_id: sg-4-4-2-23-2-3 output: product_category_id: - - '1016' + - '500053' - input: - product_category_id: sg-4-2-2-2 + product_category_id: sg-4-4-2-23-3 output: product_category_id: - - '1016' + - '4599' - input: - product_category_id: sg-4-2-2-3 + product_category_id: sg-4-4-2-23-4 output: product_category_id: - - '1016' + - '499875' - input: - product_category_id: sg-4-2-2-4 + product_category_id: sg-4-4-2-23-5 output: product_category_id: - - '1016' + - '4600' - input: - product_category_id: sg-4-2-3 + product_category_id: sg-4-4-2-23-6 output: product_category_id: - - '1019' + - '8528' - input: - product_category_id: sg-4-2-4 + product_category_id: sg-4-4-2-23-7 output: product_category_id: - - '3937' + - '4601' - input: - product_category_id: sg-4-2-4-1 + product_category_id: sg-4-4-2-23-8 output: product_category_id: - - '3937' + - '4602' - input: - product_category_id: sg-4-2-4-2 + product_category_id: sg-4-4-2-24 output: product_category_id: - - '3937' + - '3216' - input: - product_category_id: sg-4-2-4-3 + product_category_id: sg-4-4-2-24-1 output: product_category_id: - - '3937' + - '3216' - input: - product_category_id: sg-4-2-4-4 + product_category_id: sg-4-4-2-24-2 output: product_category_id: - - '3937' + - '3216' - input: - product_category_id: sg-4-2-4-5 + product_category_id: sg-4-4-2-24-3 output: product_category_id: - - '3937' + - '3216' - input: - product_category_id: sg-4-2-4-6 + product_category_id: sg-4-4-2-24-4 output: product_category_id: - - '3937' + - '3216' - input: - product_category_id: sg-4-2-4-7 + product_category_id: sg-4-4-3 output: product_category_id: - - '3495' + - '1026' - input: - product_category_id: sg-4-2-4-7-1 + product_category_id: sg-4-4-3-1 output: product_category_id: - - '3495' + - '1026' - input: - product_category_id: sg-4-2-4-7-2 + product_category_id: sg-4-4-3-2 output: product_category_id: - - '3495' + - '1026' - input: - product_category_id: sg-4-2-4-7-3 + product_category_id: sg-4-4-3-3 output: product_category_id: - - '3495' + - '1026' - input: - product_category_id: sg-4-2-4-8 + product_category_id: sg-4-4-3-4 output: product_category_id: - - '4095' + - '1026' - input: - product_category_id: sg-4-2-5 + product_category_id: sg-4-4-3-5 output: product_category_id: - - '3508' + - '1026' - input: - product_category_id: sg-4-2-6 + product_category_id: sg-4-4-3-6 output: product_category_id: - - '5636' + - '1026' - input: - product_category_id: sg-4-2-7 + product_category_id: sg-4-4-3-7 output: product_category_id: - - '7154' + - '1026' - input: - product_category_id: sg-4-2-7-1 + product_category_id: sg-4-4-3-8 output: product_category_id: - - '7154' + - '1026' - input: - product_category_id: sg-4-2-7-2 + product_category_id: sg-4-4-3-9 output: product_category_id: - - '7154' + - '1026' - input: - product_category_id: sg-4-2-7-3 + product_category_id: sg-4-4-3-10 output: product_category_id: - - '7154' + - '1026' - input: - product_category_id: sg-4-2-7-4 + product_category_id: sg-4-4-3-11 output: product_category_id: - - '7154' + - '1026' - input: - product_category_id: sg-4-2-7-5 + product_category_id: sg-4-4-3-12 output: product_category_id: - - '7154' + - '1026' - input: - product_category_id: sg-4-2-7-6 + product_category_id: sg-4-4-3-13 output: product_category_id: - - '7154' + - '1026' - input: - product_category_id: sg-4-2-7-7 + product_category_id: sg-4-4-4 output: product_category_id: - - '7154' + - '3982' - input: - product_category_id: sg-4-2-8 + product_category_id: sg-4-4-4-1 output: product_category_id: - - '3738' + - '7474' - input: - product_category_id: sg-4-2-9 + product_category_id: sg-4-4-4-1-1 output: product_category_id: - - '3538' + - '7476' - input: - product_category_id: sg-4-2-9-1 + product_category_id: sg-4-4-4-1-2 output: product_category_id: - - '3538' + - '7453' - input: - product_category_id: sg-4-2-9-2 + product_category_id: sg-4-4-4-1-3 output: product_category_id: - - '3538' + - '7475' - input: - product_category_id: sg-4-3 + product_category_id: sg-4-4-4-2 output: product_category_id: - - '7059' + - '3118' - input: - product_category_id: sg-4-3-1 + product_category_id: sg-4-4-4-3 output: product_category_id: - - '3363' + - '3246' - input: - product_category_id: sg-4-3-1-1 + product_category_id: sg-4-4-4-4 output: product_category_id: - - '3363' + - '500028' - input: - product_category_id: sg-4-3-1-2 + product_category_id: sg-4-4-4-5 output: product_category_id: - - '3363' + - '1029' - input: - product_category_id: sg-4-3-1-3 + product_category_id: sg-4-4-4-6 output: product_category_id: - - '3363' + - '8061' - input: - product_category_id: sg-4-3-10 + product_category_id: sg-4-4-4-7 output: product_category_id: - - '3825' + - '3272' - input: - product_category_id: sg-4-3-11 + product_category_id: sg-4-4-5 output: product_category_id: - - '3201' + - '3634' - input: - product_category_id: sg-4-3-12 + product_category_id: sg-4-4-5-1 output: product_category_id: - - '3369' + - '3634' - input: - product_category_id: sg-4-3-12-1 + product_category_id: sg-4-4-5-2 output: product_category_id: - - '3369' + - '3634' - input: - product_category_id: sg-4-3-12-2 + product_category_id: sg-4-4-5-3 output: product_category_id: - - '3369' + - '3634' - input: - product_category_id: sg-4-3-13 + product_category_id: sg-4-4-6 output: product_category_id: - - '7060' + - '3531' - input: - product_category_id: sg-4-3-13-1 + product_category_id: sg-4-4-7 output: product_category_id: - - '7060' + - '3070' - input: - product_category_id: sg-4-3-13-2 + product_category_id: sg-4-4-7-1 output: product_category_id: - - '7060' + - '3070' - input: - product_category_id: sg-4-3-13-3 + product_category_id: sg-4-4-7-2 output: product_category_id: - - '7060' + - '3070' - input: - product_category_id: sg-4-3-14 + product_category_id: sg-4-4-8 output: product_category_id: - - '7061' + - '1030' - input: - product_category_id: sg-4-3-15 + product_category_id: sg-4-5 output: product_category_id: - - '3518' + - '1031' - input: - product_category_id: sg-4-3-16 + product_category_id: sg-4-5-1 output: product_category_id: - - '3849' + - '3257' - input: - product_category_id: sg-4-3-2 + product_category_id: sg-4-5-1-1 output: product_category_id: - - '3746' + - '6898' - input: - product_category_id: sg-4-3-3 + product_category_id: sg-4-5-1-2 output: product_category_id: - - '499815' + - '5569' - input: - product_category_id: sg-4-3-3-1 + product_category_id: sg-4-5-1-3 output: product_category_id: - - '499816' + - '7482' - input: - product_category_id: sg-4-3-3-2 + product_category_id: sg-4-5-1-3-1 output: product_category_id: - - '3314' + - '7482' - input: - product_category_id: sg-4-3-3-3 + product_category_id: sg-4-5-1-4 output: product_category_id: - - '5394' + - '499817' - input: - product_category_id: sg-4-3-4 + product_category_id: sg-4-5-1-5 output: product_category_id: - - '3454' + - '5025' - input: - product_category_id: sg-4-3-5 + product_category_id: sg-4-5-1-5-1 output: product_category_id: - - '3211' + - '6386' - input: - product_category_id: sg-4-3-6 + product_category_id: sg-4-5-1-5-2 output: product_category_id: - - '3322' + - '499818' - input: - product_category_id: sg-4-3-7 + product_category_id: sg-4-5-1-5-2-1 output: product_category_id: - - '7059' + - '499818' - input: - product_category_id: sg-4-3-8 + product_category_id: sg-4-5-1-5-2-2 output: product_category_id: - - '3218' + - '499818' - input: - product_category_id: sg-4-3-9 + product_category_id: sg-4-5-1-5-2-3 output: product_category_id: - - '3266' + - '499818' - input: - product_category_id: sg-4-4 + product_category_id: sg-4-5-1-5-2-4 output: product_category_id: - - '1025' + - '499818' - input: - product_category_id: sg-4-4-1 + product_category_id: sg-4-5-1-5-2-5 output: product_category_id: - - '3214' + - '499818' - input: - product_category_id: sg-4-4-1-1 + product_category_id: sg-4-5-1-5-2-6 output: product_category_id: - - '3778' + - '499818' - input: - product_category_id: sg-4-4-1-1-1 + product_category_id: sg-4-5-1-6 output: product_category_id: - - '3778' + - '7481' - input: - product_category_id: sg-4-4-1-1-2 + product_category_id: sg-4-5-1-7 output: product_category_id: - - '3778' + - '7459' - input: - product_category_id: sg-4-4-1-1-3 + product_category_id: sg-4-5-1-8 output: product_category_id: - - '3778' + - '499819' - input: - product_category_id: sg-4-4-1-10 + product_category_id: sg-4-5-2 output: product_category_id: - - '3719' + - '5593' - input: - product_category_id: sg-4-4-1-11 + product_category_id: sg-4-5-2-1 output: product_category_id: - - '1028' + - '4018' - input: - product_category_id: sg-4-4-1-12 + product_category_id: sg-4-5-2-1-1 output: product_category_id: - - '500092' + - '4018' - input: - product_category_id: sg-4-4-1-13 + product_category_id: sg-4-5-2-1-2 output: product_category_id: - - '1027' + - '4018' - input: - product_category_id: sg-4-4-1-13-1 + product_category_id: sg-4-5-2-1-3 output: product_category_id: - - '1027' + - '4018' - input: - product_category_id: sg-4-4-1-13-10 + product_category_id: sg-4-5-2-2 output: product_category_id: - - '1027' + - '3426' - input: - product_category_id: sg-4-4-1-13-2 + product_category_id: sg-4-5-2-2-1 output: product_category_id: - - '1027' + - '3426' - input: - product_category_id: sg-4-4-1-13-3 + product_category_id: sg-4-5-2-2-2 output: product_category_id: - - '1027' + - '3426' - input: - product_category_id: sg-4-4-1-13-4 + product_category_id: sg-4-5-2-3 output: product_category_id: - - '1027' + - '1491' - input: - product_category_id: sg-4-4-1-13-5 + product_category_id: sg-4-5-2-4 output: product_category_id: - - '1027' + - '499710' - input: - product_category_id: sg-4-4-1-13-6 + product_category_id: sg-4-5-2-5 output: product_category_id: - - '1027' + - '2756' - input: - product_category_id: sg-4-4-1-13-7 + product_category_id: sg-4-5-2-6 output: product_category_id: - - '1027' + - '499709' - input: - product_category_id: sg-4-4-1-13-8 + product_category_id: sg-4-5-2-7 output: product_category_id: - - '1027' + - '1754' - input: - product_category_id: sg-4-4-1-13-9 + product_category_id: sg-4-5-2-8 output: product_category_id: - - '1027' + - '2210' - input: - product_category_id: sg-4-4-1-14 + product_category_id: sg-4-5-2-9 output: product_category_id: - - '3368' + - '8109' - input: - product_category_id: sg-4-4-1-15 + product_category_id: sg-4-5-3 output: product_category_id: - - '3827' + - '7215' - input: - product_category_id: sg-4-4-1-16 + product_category_id: sg-4-5-3-1 output: product_category_id: - - '6445' + - '499820' - input: - product_category_id: sg-4-4-1-17 + product_category_id: sg-4-5-3-2 output: product_category_id: - - '6506' + - '8107' - input: - product_category_id: sg-4-4-1-18 + product_category_id: sg-4-5-3-2-1 output: product_category_id: - - '7448' + - '326122' - input: - product_category_id: sg-4-4-1-19 + product_category_id: sg-4-5-3-2-2 output: product_category_id: - - '3428' + - '499959' - input: - product_category_id: sg-4-4-1-2 + product_category_id: sg-4-5-3-2-3 output: product_category_id: - - '3341' + - '8108' - input: - product_category_id: sg-4-4-1-20 + product_category_id: sg-4-5-3-2-4 output: product_category_id: - - '499694' + - '7216' - input: - product_category_id: sg-4-4-1-20-1 + product_category_id: sg-4-5-4 output: product_category_id: - - '499694' + - '1031' - input: - product_category_id: sg-4-4-1-20-2 + product_category_id: sg-4-5-4-1 output: product_category_id: - - '499694' + - '1031' - input: - product_category_id: sg-4-4-1-20-3 + product_category_id: sg-4-5-4-2 output: product_category_id: - - '499694' + - '1031' - input: - product_category_id: sg-4-4-1-20-4 + product_category_id: sg-4-5-4-3 output: product_category_id: - - '499694' + - '1031' - input: - product_category_id: sg-4-4-1-20-5 + product_category_id: sg-4-5-5 output: product_category_id: - - '499694' + - '5594' - input: - product_category_id: sg-4-4-1-21 + product_category_id: sg-4-5-5-1 output: product_category_id: - - '7223' + - '3084' - input: - product_category_id: sg-4-4-1-22 + product_category_id: sg-4-5-5-2 output: product_category_id: - - '505668' + - '3821' - input: - product_category_id: sg-4-4-1-22-1 + product_category_id: sg-4-5-5-3 output: product_category_id: - - '505668' + - '3265' - input: - product_category_id: sg-4-4-1-22-2 + product_category_id: sg-4-5-5-4 output: product_category_id: - - '505668' + - '6914' - input: - product_category_id: sg-4-4-1-23 + product_category_id: sg-4-6 output: product_category_id: - - '3811' + - '3334' - input: - product_category_id: sg-4-4-1-24 + product_category_id: sg-4-6-1 output: product_category_id: - - '3868' + - '8064' - input: - product_category_id: sg-4-4-1-24-1 + product_category_id: sg-4-6-1-1 output: product_category_id: - - '3868' + - '8064' - input: - product_category_id: sg-4-4-1-24-2 + product_category_id: sg-4-6-1-2 output: product_category_id: - - '3868' + - '8064' - input: - product_category_id: sg-4-4-1-24-3 + product_category_id: sg-4-6-1-3 output: product_category_id: - - '3868' + - '8064' - input: - product_category_id: sg-4-4-1-24-4 + product_category_id: sg-4-6-2 output: product_category_id: - - '3868' + - '5406' - input: - product_category_id: sg-4-4-1-25 + product_category_id: sg-4-6-2-1 output: product_category_id: - - '3631' + - '5406' - input: - product_category_id: sg-4-4-1-26 + product_category_id: sg-4-6-2-2 output: product_category_id: - - '3558' + - '5406' - input: - product_category_id: sg-4-4-1-27 + product_category_id: sg-4-6-2-3 output: product_category_id: - - '6048' + - '5406' - input: - product_category_id: sg-4-4-1-28 + product_category_id: sg-4-6-3 output: product_category_id: - - '500109' + - '6495' - input: - product_category_id: sg-4-4-1-3 + product_category_id: sg-4-6-4 output: product_category_id: - - '3879' + - '7342' - input: - product_category_id: sg-4-4-1-4 + product_category_id: sg-4-6-5 output: product_category_id: - - '4145' + - '7344' - input: - product_category_id: sg-4-4-1-4-1 + product_category_id: sg-4-6-5-1 output: product_category_id: - - '4145' + - '7344' - input: - product_category_id: sg-4-4-1-4-2 + product_category_id: sg-4-6-5-2 output: product_category_id: - - '4145' + - '7344' - input: - product_category_id: sg-4-4-1-5 + product_category_id: sg-4-6-5-3 output: product_category_id: - - '500067' + - '7344' - input: - product_category_id: sg-4-4-1-6 + product_category_id: sg-4-6-5-4 output: product_category_id: - - '5842' + - '7344' - input: - product_category_id: sg-4-4-1-7 + product_category_id: sg-4-6-5-5 output: product_category_id: - - '5540' + - '7344' - input: - product_category_id: sg-4-4-1-7-1 + product_category_id: sg-4-6-5-6 output: product_category_id: - - '5540' + - '7344' - input: - product_category_id: sg-4-4-1-7-2 + product_category_id: sg-4-6-5-7 output: product_category_id: - - '5540' + - '7344' - input: - product_category_id: sg-4-4-1-7-3 + product_category_id: sg-4-6-5-8 output: product_category_id: - - '5540' + - '7344' - input: - product_category_id: sg-4-4-1-7-4 + product_category_id: sg-4-6-5-9 output: product_category_id: - - '5540' + - '7344' - input: - product_category_id: sg-4-4-1-7-5 + product_category_id: sg-4-6-5-10 output: product_category_id: - - '5540' + - '7344' - input: - product_category_id: sg-4-4-1-7-6 + product_category_id: sg-4-6-5-11 output: product_category_id: - - '5540' + - '7344' - input: - product_category_id: sg-4-4-1-8 + product_category_id: sg-4-6-5-12 output: product_category_id: - - '3243' + - '7344' - input: - product_category_id: sg-4-4-1-9 + product_category_id: sg-4-6-5-13 output: product_category_id: - - '6442' + - '7344' - input: - product_category_id: sg-4-4-2 + product_category_id: sg-4-6-5-14 output: product_category_id: - - '3618' + - '7344' - input: - product_category_id: sg-4-4-2-1 + product_category_id: sg-4-6-5-15 output: product_category_id: - - '3740' + - '7344' - input: - product_category_id: sg-4-4-2-1-1 + product_category_id: sg-4-6-5-16 output: product_category_id: - - '4574' + - '7344' - input: - product_category_id: sg-4-4-2-1-2 + product_category_id: sg-4-6-5-17 output: product_category_id: - - '4575' + - '7344' - input: - product_category_id: sg-4-4-2-1-3 + product_category_id: sg-4-6-5-18 output: product_category_id: - - '4576' + - '7344' - input: - product_category_id: sg-4-4-2-1-4 + product_category_id: sg-4-6-5-19 output: product_category_id: - - '4577' + - '7344' - input: - product_category_id: sg-4-4-2-10 + product_category_id: sg-4-6-5-20 output: product_category_id: - - '7478' + - '7344' - input: - product_category_id: sg-4-4-2-10-1 + product_category_id: sg-4-6-6 output: product_category_id: - - '7480' + - '1037' - input: - product_category_id: sg-4-4-2-10-2 + product_category_id: sg-4-6-6-1 output: product_category_id: - - '7479' + - '1037' - input: - product_category_id: sg-4-4-2-11 + product_category_id: sg-4-6-6-2 output: product_category_id: - - '7477' + - '1037' - input: - product_category_id: sg-4-4-2-12 + product_category_id: sg-4-6-6-3 output: product_category_id: - - '8239' + - '1037' - input: - product_category_id: sg-4-4-2-13 + product_category_id: sg-4-6-6-4 output: product_category_id: - - '3292' + - '1037' - input: - product_category_id: sg-4-4-2-14 + product_category_id: sg-4-6-7 output: product_category_id: - - '4595' + - '3614' - input: - product_category_id: sg-4-4-2-15 + product_category_id: sg-4-6-8 output: product_category_id: - - '4194' + - '8092' - input: - product_category_id: sg-4-4-2-16 + product_category_id: sg-4-6-8-1 output: product_category_id: - - '4596' + - '8273' - input: - product_category_id: sg-4-4-2-16-1 + product_category_id: sg-4-6-8-2 output: product_category_id: - - '4596' + - '8094' - input: - product_category_id: sg-4-4-2-16-2 + product_category_id: sg-4-6-8-3 output: product_category_id: - - '4596' + - '8208' - input: - product_category_id: sg-4-4-2-16-3 + product_category_id: sg-4-6-9 output: product_category_id: - - '4596' + - '4926' - input: - product_category_id: sg-4-4-2-17 + product_category_id: sg-4-6-9-1 output: product_category_id: - - '4583' + - '4926' - input: - product_category_id: sg-4-4-2-18 + product_category_id: sg-4-6-9-2 output: product_category_id: - - '499871' + - '4926' - input: - product_category_id: sg-4-4-2-19 + product_category_id: sg-4-6-9-3 output: product_category_id: - - '499869' + - '4926' - input: - product_category_id: sg-4-4-2-2 + product_category_id: sg-4-6-9-4 output: product_category_id: - - '499684' + - '4926' - input: - product_category_id: sg-4-4-2-20 + product_category_id: sg-4-6-9-5 output: product_category_id: - - '499870' + - '4926' - input: - product_category_id: sg-4-4-2-21 + product_category_id: sg-4-6-9-6 output: product_category_id: - - '4571' + - '4926' - input: - product_category_id: sg-4-4-2-21-1 + product_category_id: sg-4-6-9-7 output: product_category_id: - - '4571' + - '4926' - input: - product_category_id: sg-4-4-2-21-2 + product_category_id: sg-4-6-10 output: product_category_id: - - '4571' + - '8093' - input: - product_category_id: sg-4-4-2-21-3 + product_category_id: sg-4-6-10-1 output: product_category_id: - - '4571' + - '8272' - input: - product_category_id: sg-4-4-2-21-4 + product_category_id: sg-4-6-10-2 output: product_category_id: - - '4571' + - '499942' - input: - product_category_id: sg-4-4-2-22 + product_category_id: sg-4-6-11 output: product_category_id: - - '4572' + - '4927' - input: - product_category_id: sg-4-4-2-23 + product_category_id: sg-4-6-11-1 output: product_category_id: - - '4597' + - '4927' - input: - product_category_id: sg-4-4-2-23-1 + product_category_id: sg-4-6-11-2 output: product_category_id: - - '7538' + - '4927' - input: - product_category_id: sg-4-4-2-23-2 + product_category_id: sg-4-6-11-3 output: product_category_id: - - '500053' + - '4927' - input: - product_category_id: sg-4-4-2-23-2-1 + product_category_id: sg-4-6-11-4 output: product_category_id: - - '500053' + - '4927' - input: - product_category_id: sg-4-4-2-23-2-2 + product_category_id: sg-4-6-11-5 output: product_category_id: - - '500053' + - '4927' - input: - product_category_id: sg-4-4-2-23-2-3 + product_category_id: sg-4-6-11-6 output: product_category_id: - - '500053' + - '4927' - input: - product_category_id: sg-4-4-2-23-3 + product_category_id: sg-4-6-11-7 output: product_category_id: - - '4599' + - '4927' - input: - product_category_id: sg-4-4-2-23-4 + product_category_id: sg-4-6-11-8 output: product_category_id: - - '499875' + - '4927' - input: - product_category_id: sg-4-4-2-23-5 + product_category_id: sg-4-6-11-9 output: product_category_id: - - '4600' + - '4927' - input: - product_category_id: sg-4-4-2-23-6 + product_category_id: sg-4-6-11-10 output: product_category_id: - - '8528' + - '4927' - input: - product_category_id: sg-4-4-2-23-7 + product_category_id: sg-4-6-11-11 output: product_category_id: - - '4601' + - '4927' - input: - product_category_id: sg-4-4-2-23-8 + product_category_id: sg-4-6-11-12 output: product_category_id: - - '4602' + - '4927' - input: - product_category_id: sg-4-4-2-24 + product_category_id: sg-4-6-12 output: product_category_id: - - '3216' + - '7343' - input: - product_category_id: sg-4-4-2-24-1 + product_category_id: sg-4-6-13 output: product_category_id: - - '3216' + - '499823' - input: - product_category_id: sg-4-4-2-24-2 + product_category_id: sg-4-6-13-1 output: product_category_id: - - '3216' + - '3603' - input: - product_category_id: sg-4-4-2-24-3 + product_category_id: sg-4-6-13-1-1 output: product_category_id: - - '3216' + - '3603' - input: - product_category_id: sg-4-4-2-24-4 + product_category_id: sg-4-6-13-1-2 output: product_category_id: - - '3216' + - '3603' - input: - product_category_id: sg-4-4-2-3 + product_category_id: sg-4-6-13-1-3 output: product_category_id: - - '499685' + - '3603' - input: - product_category_id: sg-4-4-2-4 + product_category_id: sg-4-6-13-1-4 output: product_category_id: - - '4585' + - '3603' - input: - product_category_id: sg-4-4-2-4-1 + product_category_id: sg-4-6-13-1-5 output: product_category_id: - - '4590' + - '3603' - input: - product_category_id: sg-4-4-2-4-2 + product_category_id: sg-4-6-13-1-6 output: product_category_id: - - '4586' + - '3603' - input: - product_category_id: sg-4-4-2-4-2-1 + product_category_id: sg-4-6-13-1-7 output: product_category_id: - - '4586' + - '3603' - input: - product_category_id: sg-4-4-2-4-2-2 + product_category_id: sg-4-6-13-1-8 output: product_category_id: - - '4586' + - '3603' - input: - product_category_id: sg-4-4-2-4-3 + product_category_id: sg-4-6-13-1-9 output: product_category_id: - - '4591' + - '3603' - input: - product_category_id: sg-4-4-2-4-4 + product_category_id: sg-4-6-13-1-10 output: product_category_id: - - '4587' + - '3603' - input: - product_category_id: sg-4-4-2-4-5 + product_category_id: sg-4-6-13-1-11 output: product_category_id: - - '4592' + - '3603' - input: - product_category_id: sg-4-4-2-4-6 + product_category_id: sg-4-6-13-2 output: product_category_id: - - '4588' + - '3859' - input: - product_category_id: sg-4-4-2-4-7 + product_category_id: sg-4-6-13-3 output: product_category_id: - - '4593' + - '3359' - input: - product_category_id: sg-4-4-2-4-8 + product_category_id: sg-4-6-13-3-1 output: product_category_id: - - '4594' + - '3359' - input: - product_category_id: sg-4-4-2-5 + product_category_id: sg-4-6-13-3-2 output: product_category_id: - - '4603' + - '3359' - input: - product_category_id: sg-4-4-2-6 + product_category_id: sg-4-6-13-4 output: product_category_id: - - '3639' + - '3651' - input: - product_category_id: sg-4-4-2-7 + product_category_id: sg-4-6-13-4-1 output: product_category_id: - - '499868' + - '3651' - input: - product_category_id: sg-4-4-2-8 + product_category_id: sg-4-6-13-4-2 output: product_category_id: - - '6960' + - '3651' - input: - product_category_id: sg-4-4-2-9 + product_category_id: sg-4-6-13-4-3 output: product_category_id: - - '4582' + - '3651' - input: - product_category_id: sg-4-4-3 + product_category_id: sg-4-6-13-4-4 output: product_category_id: - - '1026' + - '3651' - input: - product_category_id: sg-4-4-3-1 + product_category_id: sg-4-6-13-4-5 output: product_category_id: - - '1026' + - '3651' - input: - product_category_id: sg-4-4-3-10 + product_category_id: sg-4-6-13-4-6 output: product_category_id: - - '1026' + - '3651' - input: - product_category_id: sg-4-4-3-11 + product_category_id: sg-4-6-13-5 output: product_category_id: - - '1026' + - '7222' - input: - product_category_id: sg-4-4-3-12 + product_category_id: sg-4-6-14 output: product_category_id: - - '1026' + - '7221' - input: - product_category_id: sg-4-4-3-13 + product_category_id: sg-4-6-15 output: product_category_id: - - '1026' + - '7217' - input: - product_category_id: sg-4-4-3-2 + product_category_id: sg-4-6-15-1 output: product_category_id: - - '1026' + - '7125' - input: - product_category_id: sg-4-4-3-3 + product_category_id: sg-4-6-15-2 output: product_category_id: - - '1026' + - '6440' - input: - product_category_id: sg-4-4-3-4 + product_category_id: sg-4-6-16 output: product_category_id: - - '1026' + - '3096' - input: - product_category_id: sg-4-4-3-5 + product_category_id: sg-4-6-17 output: product_category_id: - - '1026' + - '1041' - input: - product_category_id: sg-4-4-3-6 + product_category_id: sg-4-7 output: product_category_id: - - '1026' + - '1043' - input: - product_category_id: sg-4-4-3-7 + product_category_id: sg-4-7-1 output: product_category_id: - - '1026' + - '8044' - input: - product_category_id: sg-4-4-3-8 + product_category_id: sg-4-7-2 output: product_category_id: - - '1026' + - '7314' - input: - product_category_id: sg-4-4-3-9 + product_category_id: sg-4-7-3 output: product_category_id: - - '1026' + - '4605' - input: - product_category_id: sg-4-4-4 + product_category_id: sg-4-7-3-1 output: product_category_id: - - '3982' + - '4537' - input: - product_category_id: sg-4-4-4-1 + product_category_id: sg-4-7-3-2 output: product_category_id: - - '7474' + - '4525' - input: - product_category_id: sg-4-4-4-1-1 + product_category_id: sg-4-7-4 output: product_category_id: - - '7476' + - '1044' - input: - product_category_id: sg-4-4-4-1-2 + product_category_id: sg-4-7-5 output: product_category_id: - - '7453' + - '6864' - input: - product_category_id: sg-4-4-4-1-3 + product_category_id: sg-4-7-6 output: product_category_id: - - '7475' + - '1045' - input: - product_category_id: sg-4-4-4-2 + product_category_id: sg-4-7-7 output: product_category_id: - - '3118' + - '3642' - input: - product_category_id: sg-4-4-4-3 + product_category_id: sg-4-7-7-1 output: product_category_id: - - '3246' + - '4254' - input: - product_category_id: sg-4-4-4-4 + product_category_id: sg-4-7-7-2 output: product_category_id: - - '500028' + - '4043' - input: - product_category_id: sg-4-4-4-5 + product_category_id: sg-4-7-7-3 output: product_category_id: - - '1029' + - '499780' - input: - product_category_id: sg-4-4-4-6 + product_category_id: sg-4-7-8 output: product_category_id: - - '8061' + - '1046' - input: - product_category_id: sg-4-4-4-7 + product_category_id: sg-4-7-9 output: product_category_id: - - '3272' + - '1046' - input: - product_category_id: sg-4-4-5 + product_category_id: sg-4-7-10 output: product_category_id: - - '3634' + - '3578' - input: - product_category_id: sg-4-4-5-1 + product_category_id: sg-4-7-11 output: product_category_id: - - '3634' + - '4466' - input: - product_category_id: sg-4-4-5-2 + product_category_id: sg-4-7-12 output: product_category_id: - - '3634' + - '3106' - input: - product_category_id: sg-4-4-5-3 + product_category_id: sg-4-7-13 output: product_category_id: - - '3634' + - '4467' - input: - product_category_id: sg-4-4-6 + product_category_id: sg-4-7-14 output: product_category_id: - - '3531' + - '3772' - input: - product_category_id: sg-4-4-7 + product_category_id: sg-4-7-14-1 output: product_category_id: - - '3070' + - '3772' - input: - product_category_id: sg-4-4-7-1 + product_category_id: sg-4-7-14-2 output: product_category_id: - - '3070' + - '3772' - input: - product_category_id: sg-4-4-7-2 + product_category_id: sg-4-7-14-3 output: product_category_id: - - '3070' + - '3772' - input: - product_category_id: sg-4-4-8 + product_category_id: sg-4-7-14-4 output: product_category_id: - - '1030' + - '3772' - input: - product_category_id: sg-4-5 + product_category_id: sg-4-8 output: product_category_id: - - '1031' + - '3789' - input: - product_category_id: sg-4-5-1 + product_category_id: sg-4-8-1 output: product_category_id: - - '3257' + - '5877' - input: - product_category_id: sg-4-5-1-1 + product_category_id: sg-4-8-2 output: product_category_id: - - '6898' + - '4327' - input: - product_category_id: sg-4-5-1-2 + product_category_id: sg-4-8-3 output: product_category_id: - - '5569' + - '4023' - input: - product_category_id: sg-4-5-1-3 + product_category_id: sg-4-9 output: product_category_id: - - '7482' + - '499824' - input: - product_category_id: sg-4-5-1-3-1 + product_category_id: sg-4-9-1 output: product_category_id: - - '7482' + - '1033' - input: - product_category_id: sg-4-5-1-4 + product_category_id: sg-4-9-1-1 output: product_category_id: - - '499817' + - '3773' - input: - product_category_id: sg-4-5-1-5 + product_category_id: sg-4-9-1-2 output: product_category_id: - - '5025' + - '499833' - input: - product_category_id: sg-4-5-1-5-1 + product_category_id: sg-4-9-1-3 output: product_category_id: - - '6386' + - '3883' - input: - product_category_id: sg-4-5-1-5-2 + product_category_id: sg-4-9-1-4 output: product_category_id: - - '499818' + - '3291' - input: - product_category_id: sg-4-5-1-5-2-1 + product_category_id: sg-4-9-1-4-1 output: product_category_id: - - '499818' + - '499831' - input: - product_category_id: sg-4-5-1-5-2-2 + product_category_id: sg-4-9-1-4-2 output: product_category_id: - - '499818' + - '499832' - input: - product_category_id: sg-4-5-1-5-2-3 + product_category_id: sg-4-9-1-4-2-1 output: product_category_id: - - '499818' + - '499832' - input: - product_category_id: sg-4-5-1-5-2-4 + product_category_id: sg-4-9-1-4-2-2 output: product_category_id: - - '499818' + - '499832' - input: - product_category_id: sg-4-5-1-5-2-5 + product_category_id: sg-4-9-1-4-2-3 output: product_category_id: - - '499818' + - '499832' - input: - product_category_id: sg-4-5-1-5-2-6 + product_category_id: sg-4-9-1-4-2-4 output: product_category_id: - - '499818' + - '499832' - input: - product_category_id: sg-4-5-1-6 + product_category_id: sg-4-9-1-4-2-5 output: product_category_id: - - '7481' + - '499832' - input: - product_category_id: sg-4-5-1-7 + product_category_id: sg-4-9-1-4-3 output: product_category_id: - - '7459' + - '499830' - input: - product_category_id: sg-4-5-1-8 + product_category_id: sg-4-9-1-4-3-1 output: product_category_id: - - '499819' + - '499830' - input: - product_category_id: sg-4-5-2 + product_category_id: sg-4-9-1-4-3-2 output: product_category_id: - - '5593' + - '499830' - input: - product_category_id: sg-4-5-2-1 + product_category_id: sg-4-9-1-5 output: product_category_id: - - '4018' + - '3533' - input: - product_category_id: sg-4-5-2-1-1 + product_category_id: sg-4-9-1-5-1 output: product_category_id: - - '4018' + - '3533' - input: - product_category_id: sg-4-5-2-1-2 + product_category_id: sg-4-9-1-5-2 output: product_category_id: - - '4018' + - '3533' - input: - product_category_id: sg-4-5-2-1-3 + product_category_id: sg-4-9-1-6 output: product_category_id: - - '4018' + - '499826' - input: - product_category_id: sg-4-5-2-2 + product_category_id: sg-4-9-1-6-1 output: product_category_id: - - '3426' + - '499826' - input: - product_category_id: sg-4-5-2-2-1 + product_category_id: sg-4-9-1-7 output: product_category_id: - - '3426' + - '499825' - input: - product_category_id: sg-4-5-2-2-2 + product_category_id: sg-4-9-1-7-1 output: product_category_id: - - '3426' + - '3332' - input: - product_category_id: sg-4-5-2-3 + product_category_id: sg-4-9-1-7-2 output: product_category_id: - - '1491' + - '3505' - input: - product_category_id: sg-4-5-2-4 + product_category_id: sg-4-9-1-7-3 output: product_category_id: - - '499710' + - '3715' - input: - product_category_id: sg-4-5-2-5 + product_category_id: sg-4-9-1-7-3-1 output: product_category_id: - - '2756' + - '3715' - input: - product_category_id: sg-4-5-2-6 + product_category_id: sg-4-9-1-7-3-2 output: product_category_id: - - '499709' + - '3715' - input: - product_category_id: sg-4-5-2-7 + product_category_id: sg-4-9-1-7-4 output: product_category_id: - - '1754' + - '499825' - input: - product_category_id: sg-4-5-2-8 + product_category_id: sg-4-9-1-8 output: product_category_id: - - '2210' + - '3757' - input: - product_category_id: sg-4-5-2-9 + product_category_id: sg-4-9-2 output: product_category_id: - - '8109' + - '3125' - input: - product_category_id: sg-4-5-3 + product_category_id: sg-4-9-2-1 output: product_category_id: - - '7215' + - '3305' - input: - product_category_id: sg-4-5-3-1 + product_category_id: sg-4-9-2-2 output: product_category_id: - - '499820' + - '3528' - input: - product_category_id: sg-4-5-3-2 + product_category_id: sg-4-9-3 output: product_category_id: - - '8107' + - '3136' - input: - product_category_id: sg-4-5-3-2-1 + product_category_id: sg-4-9-3-1 output: product_category_id: - - '326122' + - '3674' - input: - product_category_id: sg-4-5-3-2-2 + product_category_id: sg-4-9-3-2 output: product_category_id: - - '499959' + - '7373' - input: - product_category_id: sg-4-5-3-2-3 + product_category_id: sg-4-9-3-3 output: product_category_id: - - '8108' + - '1034' - input: - product_category_id: sg-4-5-3-2-4 + product_category_id: sg-4-9-3-3-1 output: product_category_id: - - '7216' + - '1034' - input: - product_category_id: sg-4-5-4 + product_category_id: sg-4-9-3-4 output: product_category_id: - - '1031' + - '5917' - input: - product_category_id: sg-4-5-4-1 + product_category_id: sg-4-9-3-4-1 output: product_category_id: - - '1031' + - '5917' - input: - product_category_id: sg-4-5-4-2 + product_category_id: sg-4-9-3-4-2 output: product_category_id: - - '1031' + - '5917' - input: - product_category_id: sg-4-5-4-3 + product_category_id: sg-4-9-3-4-3 output: product_category_id: - - '1031' + - '5917' - input: - product_category_id: sg-4-5-5 + product_category_id: sg-4-9-3-5 output: product_category_id: - - '5594' + - '3748' - input: - product_category_id: sg-4-5-5-1 + product_category_id: sg-4-9-3-6 output: product_category_id: - - '3084' + - '6992' - input: - product_category_id: sg-4-5-5-2 + product_category_id: sg-4-9-3-7 output: product_category_id: - - '3821' + - '8011' - input: - product_category_id: sg-4-5-5-3 + product_category_id: sg-4-9-3-7-1 output: product_category_id: - - '3265' + - '8080' - input: - product_category_id: sg-4-5-5-4 + product_category_id: sg-4-9-3-7-2 output: product_category_id: - - '6914' + - '3756' - input: - product_category_id: sg-4-6 + product_category_id: sg-4-9-3-7-3 output: product_category_id: - - '3334' + - '3583' - input: - product_category_id: sg-4-6-1 + product_category_id: sg-4-9-3-7-4 output: product_category_id: - - '8064' + - '8081' - input: - product_category_id: sg-4-6-1-1 + product_category_id: sg-4-9-3-7-4-1 output: product_category_id: - - '8064' + - '8081' - input: - product_category_id: sg-4-6-1-2 + product_category_id: sg-4-9-3-7-4-2 output: product_category_id: - - '8064' + - '8081' - input: - product_category_id: sg-4-6-1-3 + product_category_id: sg-4-9-3-7-4-3 output: product_category_id: - - '8064' + - '8081' - input: - product_category_id: sg-4-6-10 + product_category_id: sg-4-9-4 output: product_category_id: - - '8093' + - '7460' - input: - product_category_id: sg-4-6-10-1 + product_category_id: sg-4-9-4-1 output: product_category_id: - - '8272' + - '7461' - input: - product_category_id: sg-4-6-10-2 + product_category_id: sg-4-9-4-2 output: product_category_id: - - '499942' + - '7518' - input: - product_category_id: sg-4-6-11 + product_category_id: sg-4-9-5 output: product_category_id: - - '4927' + - '499834' - input: - product_category_id: sg-4-6-11-1 + product_category_id: sg-4-9-5-1 output: product_category_id: - - '4927' + - '2443' - input: - product_category_id: sg-4-6-11-10 + product_category_id: sg-4-9-5-1-1 output: product_category_id: - - '4927' + - '3116' - input: - product_category_id: sg-4-6-11-11 + product_category_id: sg-4-9-5-1-1-1 output: product_category_id: - - '4927' + - '8005' - input: - product_category_id: sg-4-6-11-12 + product_category_id: sg-4-9-5-1-2 output: product_category_id: - - '4927' + - '3093' - input: - product_category_id: sg-4-6-11-2 + product_category_id: sg-4-9-5-1-3 output: product_category_id: - - '4927' + - '3925' - input: - product_category_id: sg-4-6-11-3 + product_category_id: sg-4-9-5-2 output: product_category_id: - - '4927' + - '1049' - input: - product_category_id: sg-4-6-11-4 + product_category_id: sg-4-9-5-2-1 output: product_category_id: - - '4927' + - '6748' - input: - product_category_id: sg-4-6-11-5 + product_category_id: sg-4-9-5-2-2 output: product_category_id: - - '4927' + - '3408' - input: - product_category_id: sg-4-6-11-6 + product_category_id: sg-4-9-5-2-3 output: product_category_id: - - '4927' + - '3187' - input: - product_category_id: sg-4-6-11-7 + product_category_id: sg-4-9-5-2-3-1 output: product_category_id: - - '4927' + - '3244' - input: - product_category_id: sg-4-6-11-8 + product_category_id: sg-4-9-5-2-3-2 output: product_category_id: - - '4927' + - '3690' - input: - product_category_id: sg-4-6-11-9 + product_category_id: sg-4-9-5-2-3-3 output: product_category_id: - - '4927' + - '8514' - input: - product_category_id: sg-4-6-12 + product_category_id: sg-4-9-5-2-3-4 output: product_category_id: - - '7343' + - '3152' - input: - product_category_id: sg-4-6-13 + product_category_id: sg-4-9-5-2-4 output: product_category_id: - - '499823' + - '3234' - input: - product_category_id: sg-4-6-13-1 + product_category_id: sg-4-9-5-2-5 output: product_category_id: - - '3603' + - '6781' - input: - product_category_id: sg-4-6-13-1-1 + product_category_id: sg-4-9-5-2-6 output: product_category_id: - - '3603' + - '3438' - input: - product_category_id: sg-4-6-13-1-10 + product_category_id: sg-4-9-5-3 output: product_category_id: - - '3603' + - '499835' - input: - product_category_id: sg-4-6-13-1-11 + product_category_id: sg-4-9-5-3-1 output: product_category_id: - - '3603' + - '499836' - input: - product_category_id: sg-4-6-13-1-2 + product_category_id: sg-4-9-5-3-2 output: product_category_id: - - '3603' + - '499838' - input: - product_category_id: sg-4-6-13-1-3 + product_category_id: sg-4-9-5-3-3 output: product_category_id: - - '3603' + - '499839' - input: - product_category_id: sg-4-6-13-1-4 + product_category_id: sg-4-9-5-3-4 output: product_category_id: - - '3603' + - '499837' - input: - product_category_id: sg-4-6-13-1-5 + product_category_id: sg-4-9-6 output: product_category_id: - - '3603' + - '499840' - input: - product_category_id: sg-4-6-13-1-6 + product_category_id: sg-4-9-6-1 output: product_category_id: - - '3603' + - '499842' - input: - product_category_id: sg-4-6-13-1-7 + product_category_id: sg-4-9-6-2 output: product_category_id: - - '3603' + - '499841' - input: - product_category_id: sg-4-6-13-1-8 + product_category_id: sg-4-9-6-2-1 output: product_category_id: - - '3603' + - '499841' - input: - product_category_id: sg-4-6-13-1-9 + product_category_id: sg-4-9-6-2-2 output: product_category_id: - - '3603' + - '499841' - input: - product_category_id: sg-4-6-13-2 + product_category_id: sg-4-9-6-2-3 output: product_category_id: - - '3859' + - '499841' - input: - product_category_id: sg-4-6-13-3 + product_category_id: sg-4-9-6-3 output: product_category_id: - - '3359' + - '3170' - input: - product_category_id: sg-4-6-13-3-1 + product_category_id: sg-4-10 output: product_category_id: - - '3359' + - '5998' - input: - product_category_id: sg-4-6-13-3-2 + product_category_id: sg-4-10-1 output: product_category_id: - - '3359' + - '5998' - input: - product_category_id: sg-4-6-13-4 + product_category_id: sg-4-10-2 output: product_category_id: - - '3651' + - '5998' - input: - product_category_id: sg-4-6-13-4-1 + product_category_id: sg-4-10-3 output: product_category_id: - - '3651' + - '5998' - input: - product_category_id: sg-4-6-13-4-2 + product_category_id: sg-4-10-4 output: product_category_id: - - '3651' + - '5998' - input: - product_category_id: sg-4-6-13-4-3 + product_category_id: sg-4-10-5 output: product_category_id: - - '3651' + - '5998' - input: - product_category_id: sg-4-6-13-4-4 + product_category_id: sg-4-10-6 output: product_category_id: - - '3651' + - '5998' - input: - product_category_id: sg-4-6-13-4-5 + product_category_id: sg-4-10-7 output: product_category_id: - - '3651' + - '5998' - input: - product_category_id: sg-4-6-13-4-6 + product_category_id: sg-4-10-8 output: product_category_id: - - '3651' + - '5998' - input: - product_category_id: sg-4-6-13-5 + product_category_id: sg-4-10-9 output: product_category_id: - - '7222' + - '5998' - input: - product_category_id: sg-4-6-14 + product_category_id: sg-4-10-10 output: product_category_id: - - '7221' + - '5998' - input: - product_category_id: sg-4-6-15 + product_category_id: sg-4-11 output: product_category_id: - - '7217' + - '5635' - input: - product_category_id: sg-4-6-15-1 + product_category_id: sg-4-12 output: product_category_id: - - '7125' + - '499761' - input: - product_category_id: sg-4-6-15-2 + product_category_id: sg-4-12-1 output: product_category_id: - - '6440' + - '499771' - input: - product_category_id: sg-4-6-16 + product_category_id: sg-4-12-1-1 output: product_category_id: - - '3096' + - '499775' - input: - product_category_id: sg-4-6-17 + product_category_id: sg-4-12-2 output: product_category_id: - - '1041' + - '499759' - input: - product_category_id: sg-4-6-2 + product_category_id: sg-4-12-2-1 output: product_category_id: - - '5406' + - '499759' - input: - product_category_id: sg-4-6-2-1 + product_category_id: sg-4-12-2-2 output: product_category_id: - - '5406' + - '499759' - input: - product_category_id: sg-4-6-2-2 + product_category_id: sg-4-12-2-3 output: product_category_id: - - '5406' + - '499759' - input: - product_category_id: sg-4-6-2-3 + product_category_id: sg-4-12-3 output: product_category_id: - - '5406' + - '1058' - input: - product_category_id: sg-4-6-3 + product_category_id: sg-4-12-3-1 output: product_category_id: - - '6495' + - '1058' - input: - product_category_id: sg-4-6-4 + product_category_id: sg-4-12-3-2 output: product_category_id: - - '7342' + - '1058' - input: - product_category_id: sg-4-6-5 + product_category_id: sg-4-12-3-3 output: product_category_id: - - '7344' + - '1058' - input: - product_category_id: sg-4-6-5-1 + product_category_id: sg-4-12-3-4 output: product_category_id: - - '7344' + - '1058' - input: - product_category_id: sg-4-6-5-10 + product_category_id: sg-4-12-4 output: product_category_id: - - '7344' + - '499760' - input: - product_category_id: sg-4-6-5-11 + product_category_id: sg-4-12-4-1 output: product_category_id: - - '7344' + - '499760' - input: - product_category_id: sg-4-6-5-12 + product_category_id: sg-4-12-4-2 output: product_category_id: - - '7344' + - '499760' - input: - product_category_id: sg-4-6-5-13 + product_category_id: sg-4-12-4-3 output: product_category_id: - - '7344' + - '499760' - input: - product_category_id: sg-4-6-5-14 + product_category_id: sg-4-12-5 output: product_category_id: - - '7344' + - '2837' - input: - product_category_id: sg-4-6-5-15 + product_category_id: sg-4-12-5-1 output: product_category_id: - - '7344' + - '2837' - input: - product_category_id: sg-4-6-5-16 + product_category_id: sg-4-12-5-2 output: product_category_id: - - '7344' + - '2837' - input: - product_category_id: sg-4-6-5-17 + product_category_id: sg-4-12-5-3 output: product_category_id: - - '7344' + - '2837' - input: - product_category_id: sg-4-6-5-18 + product_category_id: sg-4-12-5-4 output: product_category_id: - - '7344' + - '2837' - input: - product_category_id: sg-4-6-5-19 + product_category_id: sg-4-12-6 output: product_category_id: - - '7344' + - '500029' - input: - product_category_id: sg-4-6-5-2 + product_category_id: sg-4-12-6-1 output: product_category_id: - - '7344' + - '500029' - input: - product_category_id: sg-4-6-5-20 + product_category_id: sg-4-12-6-2 output: product_category_id: - - '7344' + - '500029' - input: - product_category_id: sg-4-6-5-3 + product_category_id: sg-4-12-6-3 output: product_category_id: - - '7344' + - '500029' - input: - product_category_id: sg-4-6-5-4 + product_category_id: sg-4-12-6-4 output: product_category_id: - - '7344' + - '500029' - input: - product_category_id: sg-4-6-5-5 + product_category_id: sg-4-13 output: product_category_id: - - '7344' + - '7375' - input: - product_category_id: sg-4-6-5-6 + product_category_id: sg-4-13-1 output: product_category_id: - - '7344' + - '7376' - input: - product_category_id: sg-4-6-5-7 + product_category_id: sg-4-13-2 output: product_category_id: - - '7344' + - '7377' - input: - product_category_id: sg-4-6-5-8 + product_category_id: sg-4-13-2-1 output: product_category_id: - - '7344' + - '7377' - input: - product_category_id: sg-4-6-5-9 + product_category_id: sg-4-13-2-2 output: product_category_id: - - '7344' + - '7377' - input: - product_category_id: sg-4-6-6 + product_category_id: sg-4-13-2-3 output: product_category_id: - - '1037' + - '7377' - input: - product_category_id: sg-4-6-6-1 + product_category_id: sg-4-14 output: product_category_id: - - '1037' + - '499846' - input: - product_category_id: sg-4-6-6-2 + product_category_id: sg-4-14-1 output: product_category_id: - - '1037' + - '1062' - input: - product_category_id: sg-4-6-6-3 + product_category_id: sg-4-14-1-1 output: product_category_id: - - '1037' + - '3107' - input: - product_category_id: sg-4-6-6-4 + product_category_id: sg-4-14-1-2 output: product_category_id: - - '1037' + - '3950' - input: - product_category_id: sg-4-6-7 + product_category_id: sg-4-14-1-2-1 output: product_category_id: - - '3614' + - '3950' - input: - product_category_id: sg-4-6-8 + product_category_id: sg-4-14-1-2-2 output: product_category_id: - - '8092' + - '3950' - input: - product_category_id: sg-4-6-8-1 + product_category_id: sg-4-14-1-3 output: product_category_id: - - '8273' + - '3907' - input: - product_category_id: sg-4-6-8-2 + product_category_id: sg-4-14-1-3-1 output: product_category_id: - - '8094' + - '3907' - input: - product_category_id: sg-4-6-8-3 + product_category_id: sg-4-14-1-3-2 output: product_category_id: - - '8208' + - '3907' - input: - product_category_id: sg-4-6-9 + product_category_id: sg-4-14-2 output: product_category_id: - - '4926' + - '3787' - input: - product_category_id: sg-4-6-9-1 + product_category_id: sg-4-14-2-1 output: product_category_id: - - '4926' + - '3689' - input: - product_category_id: sg-4-6-9-2 + product_category_id: sg-4-14-2-2 output: product_category_id: - - '4926' + - '3190' - input: - product_category_id: sg-4-6-9-3 + product_category_id: sg-4-14-3 output: product_category_id: - - '4926' + - '3484' - input: - product_category_id: sg-4-6-9-4 + product_category_id: sg-4-14-3-1 output: product_category_id: - - '4926' + - '3993' - input: - product_category_id: sg-4-6-9-5 + product_category_id: sg-4-14-3-2 output: product_category_id: - - '4926' + - '3227' - input: - product_category_id: sg-4-6-9-6 + product_category_id: sg-4-14-4 output: product_category_id: - - '4926' + - '3405' - input: - product_category_id: sg-4-6-9-7 + product_category_id: sg-4-14-4-1 output: product_category_id: - - '4926' + - '3405' - input: - product_category_id: sg-4-7 + product_category_id: sg-4-14-4-2 output: product_category_id: - - '1043' + - '3405' - input: - product_category_id: sg-4-7-1 + product_category_id: sg-4-14-4-3 output: product_category_id: - - '8044' + - '3405' - input: - product_category_id: sg-4-7-10 + product_category_id: sg-4-14-4-4 output: product_category_id: - - '3578' + - '3405' - input: - product_category_id: sg-4-7-11 + product_category_id: sg-4-14-5 output: product_category_id: - - '4466' + - '7430' - input: - product_category_id: sg-4-7-12 + product_category_id: sg-4-14-6 output: product_category_id: - - '3106' + - '3390' - input: - product_category_id: sg-4-7-13 + product_category_id: sg-4-14-6-1 output: product_category_id: - - '4467' + - '499848' - input: - product_category_id: sg-4-7-14 + product_category_id: sg-4-14-6-2 output: product_category_id: - - '3772' + - '499847' - input: - product_category_id: sg-4-7-14-1 + product_category_id: sg-4-14-7 output: product_category_id: - - '3772' + - '499904' - input: - product_category_id: sg-4-7-14-2 + product_category_id: sg-4-14-7-1 output: product_category_id: - - '3772' + - '499850' - input: - product_category_id: sg-4-7-14-3 + product_category_id: sg-4-14-7-2 output: product_category_id: - - '3772' + - '499849' - input: - product_category_id: sg-4-7-14-4 + product_category_id: sg-4-14-8 output: product_category_id: - - '3772' + - '3126' - input: - product_category_id: sg-4-7-2 + product_category_id: sg-4-14-8-1 output: product_category_id: - - '7314' + - '499882' - input: - product_category_id: sg-4-7-3 + product_category_id: sg-4-14-8-2 output: product_category_id: - - '4605' + - '499883' - input: - product_category_id: sg-4-7-3-1 + product_category_id: sg-4-14-8-3 output: product_category_id: - - '4537' + - '499884' - input: - product_category_id: sg-4-7-3-2 + product_category_id: sg-4-15 output: product_category_id: - - '4525' + - '5879' - input: - product_category_id: sg-4-7-4 + product_category_id: sg-4-15-1 output: product_category_id: - - '1044' + - '5879' - input: - product_category_id: sg-4-7-5 + product_category_id: sg-4-15-2 output: product_category_id: - - '6864' + - '5879' - input: - product_category_id: sg-4-7-6 + product_category_id: sg-4-16 output: product_category_id: - - '1045' + - '3276' - input: - product_category_id: sg-4-7-7 + product_category_id: sg-4-16-1 output: product_category_id: - - '3642' + - '1059' - input: - product_category_id: sg-4-7-7-1 + product_category_id: sg-4-16-1-1 output: product_category_id: - - '4254' + - '1059' - input: - product_category_id: sg-4-7-7-2 + product_category_id: sg-4-16-1-2 output: product_category_id: - - '4043' + - '1059' - input: - product_category_id: sg-4-7-7-3 + product_category_id: sg-4-16-1-3 output: product_category_id: - - '499780' + - '1059' - input: - product_category_id: sg-4-7-8 + product_category_id: sg-4-16-1-4 output: product_category_id: - - '1046' + - '1059' - input: - product_category_id: sg-4-7-9 + product_category_id: sg-4-16-1-5 output: product_category_id: - - '1046' + - '1059' - input: - product_category_id: sg-4-8 + product_category_id: sg-4-16-1-6 output: product_category_id: - - '3789' + - '1059' - input: - product_category_id: sg-4-8-1 + product_category_id: sg-4-16-2 output: product_category_id: - - '5877' + - '3127' - input: - product_category_id: sg-4-8-2 + product_category_id: sg-4-16-3 output: product_category_id: - - '4327' + - '3626' - input: - product_category_id: sg-4-8-3 + product_category_id: sg-4-16-4 output: product_category_id: - - '4023' + - '3670' - input: - product_category_id: sg-4-9 + product_category_id: sg-4-16-4-1 output: product_category_id: - - '499824' + - '3869' - input: - product_category_id: sg-4-9-1 + product_category_id: sg-4-16-4-2 output: product_category_id: - - '1033' + - '505817' - input: - product_category_id: sg-4-9-1-1 + product_category_id: sg-4-16-4-2-1 output: product_category_id: - - '3773' + - '505817' - input: - product_category_id: sg-4-9-1-2 + product_category_id: sg-4-16-4-2-2 output: product_category_id: - - '499833' + - '505817' - input: - product_category_id: sg-4-9-1-3 + product_category_id: sg-4-16-4-2-3 output: product_category_id: - - '3883' + - '505817' - input: - product_category_id: sg-4-9-1-4 + product_category_id: sg-4-16-4-2-4 output: product_category_id: - - '3291' + - '505817' - input: - product_category_id: sg-4-9-1-4-1 + product_category_id: sg-4-16-4-2-5 output: product_category_id: - - '499831' + - '505817' - input: - product_category_id: sg-4-9-1-4-2 + product_category_id: sg-4-16-4-2-6 output: product_category_id: - - '499832' + - '505817' - input: - product_category_id: sg-4-9-1-4-2-1 + product_category_id: sg-4-16-4-2-7 output: product_category_id: - - '499832' + - '505817' - input: - product_category_id: sg-4-9-1-4-2-2 + product_category_id: sg-4-16-4-3 output: product_category_id: - - '499832' + - '3192' - input: - product_category_id: sg-4-9-1-4-2-3 + product_category_id: sg-4-16-4-4 output: product_category_id: - - '499832' + - '3637' - input: - product_category_id: sg-4-9-1-4-2-4 + product_category_id: sg-4-16-5 output: product_category_id: - - '499832' + - '3067' - input: - product_category_id: sg-4-9-1-4-2-5 + product_category_id: sg-4-16-5-1 output: product_category_id: - - '499832' + - '499776' - input: - product_category_id: sg-4-9-1-4-3 + product_category_id: sg-4-16-5-2 output: product_category_id: - - '499830' + - '7789' - input: - product_category_id: sg-4-9-1-4-3-1 + product_category_id: sg-4-16-5-3 output: product_category_id: - - '499830' + - '3488' - input: - product_category_id: sg-4-9-1-4-3-2 + product_category_id: sg-4-17 output: product_category_id: - - '499830' + - '499844' - input: - product_category_id: sg-4-9-1-5 + product_category_id: sg-4-17-1 output: product_category_id: - - '3533' + - '499951' - input: - product_category_id: sg-4-9-1-5-1 + product_category_id: sg-4-17-1-1 output: product_category_id: - - '3533' + - '499952' - input: - product_category_id: sg-4-9-1-5-2 + product_category_id: sg-4-17-1-2 output: product_category_id: - - '3533' + - '499877' - input: - product_category_id: sg-4-9-1-6 + product_category_id: sg-4-17-2 output: product_category_id: - - '499826' + - '499845' - input: - product_category_id: sg-4-9-1-6-1 + product_category_id: sg-4-17-2-1 output: product_category_id: - - '499826' + - '7224' - input: - product_category_id: sg-4-9-1-7 + product_category_id: sg-4-17-2-2 output: product_category_id: - - '499825' + - '8203' - input: - product_category_id: sg-4-9-1-7-1 + product_category_id: sg-4-17-2-2-1 output: product_category_id: - - '3332' + - '5050' - input: - product_category_id: sg-4-9-1-7-2 + product_category_id: sg-4-17-2-3 output: product_category_id: - - '3505' + - '3550' - input: - product_category_id: sg-4-9-1-7-3 + product_category_id: sg-4-17-2-4 output: product_category_id: - - '3715' + - '1161' - input: - product_category_id: sg-4-9-1-7-3-1 + product_category_id: sg-4-17-2-5 output: product_category_id: - - '3715' + - '499681' - input: - product_category_id: sg-4-9-1-7-3-2 + product_category_id: sg-4-17-2-6 output: product_category_id: - - '3715' + - '7558' - input: - product_category_id: sg-4-9-1-7-4 + product_category_id: sg-4-17-2-7 output: product_category_id: - - '499825' + - '505772' - input: - product_category_id: sg-4-9-1-8 + product_category_id: sg-4-17-2-7-1 output: product_category_id: - - '3757' + - '505772' - input: - product_category_id: sg-4-9-2 + product_category_id: sg-4-17-2-7-2 output: product_category_id: - - '3125' + - '505772' - input: - product_category_id: sg-4-9-2-1 + product_category_id: sg-4-17-2-7-3 output: product_category_id: - - '3305' + - '505772' - input: - product_category_id: sg-4-9-2-2 + product_category_id: sg-4-17-2-7-4 output: product_category_id: - - '3528' + - '505772' - input: - product_category_id: sg-4-9-3 + product_category_id: sg-4-17-2-7-5 output: product_category_id: - - '3136' + - '505772' - input: - product_category_id: sg-4-9-3-1 + product_category_id: sg-4-17-2-7-6 output: product_category_id: - - '3674' + - '505772' - input: - product_category_id: sg-4-9-3-2 + product_category_id: sg-4-17-2-7-7 output: product_category_id: - - '7373' + - '505772' - input: - product_category_id: sg-4-9-3-3 + product_category_id: sg-4-17-2-7-8 output: product_category_id: - - '1034' + - '505772' - input: - product_category_id: sg-4-9-3-3-1 + product_category_id: sg-4-17-2-7-9 output: product_category_id: - - '1034' + - '505772' - input: - product_category_id: sg-4-9-3-4 + product_category_id: sg-4-17-2-8 output: product_category_id: - - '5917' + - '8074' - input: - product_category_id: sg-4-9-3-4-1 + product_category_id: sg-4-17-2-8-1 output: product_category_id: - - '5917' + - '8074' - input: - product_category_id: sg-4-9-3-4-2 + product_category_id: sg-4-17-2-8-2 output: product_category_id: - - '5917' + - '8074' - input: - product_category_id: sg-4-9-3-4-3 + product_category_id: sg-4-17-2-9 output: product_category_id: - - '5917' + - '505296' - input: - product_category_id: sg-4-9-3-5 + product_category_id: sg-4-17-2-9-1 output: product_category_id: - - '3748' + - '505296' - input: - product_category_id: sg-4-9-3-6 + product_category_id: sg-4-17-2-10 output: product_category_id: - - '6992' + - '6063' - input: - product_category_id: sg-4-9-3-7 + product_category_id: sg-4-17-2-11 output: product_category_id: - - '8011' + - '6062' - input: - product_category_id: sg-4-9-3-7-1 + product_category_id: sg-4-17-2-11-1 output: product_category_id: - - '8080' + - '6062' - input: - product_category_id: sg-4-9-3-7-2 + product_category_id: sg-4-17-2-11-2 output: product_category_id: - - '3756' + - '6062' - input: - product_category_id: sg-4-9-3-7-3 + product_category_id: sg-4-17-2-11-3 output: product_category_id: - - '3583' + - '6062' - input: - product_category_id: sg-4-9-3-7-4 + product_category_id: sg-4-17-2-12 output: product_category_id: - - '8081' + - '1157' - input: - product_category_id: sg-4-9-3-7-4-1 + product_category_id: sg-4-17-2-13 output: product_category_id: - - '8081' + - '6064' - input: - product_category_id: sg-4-9-3-7-4-2 + product_category_id: sg-4-17-2-13-1 output: product_category_id: - - '8081' + - '3331' - input: - product_category_id: sg-4-9-3-7-4-3 + product_category_id: sg-4-17-2-13-2 output: product_category_id: - - '8081' + - '1158' - input: - product_category_id: sg-4-9-4 + product_category_id: sg-4-17-2-14 output: product_category_id: - - '7460' + - '5088' - input: - product_category_id: sg-4-9-4-1 + product_category_id: sg-4-17-2-14-1 output: product_category_id: - - '7461' + - '5088' - input: - product_category_id: sg-4-9-4-2 + product_category_id: sg-4-17-2-14-2 output: product_category_id: - - '7518' + - '5088' - input: - product_category_id: sg-4-9-5 + product_category_id: sg-4-17-2-14-3 output: product_category_id: - - '499834' + - '5088' - input: - product_category_id: sg-4-9-5-1 + product_category_id: sg-4-17-2-15 output: product_category_id: - - '2443' + - '1162' - input: - product_category_id: sg-4-9-5-1-1 + product_category_id: sg-4-17-2-16 output: product_category_id: - - '3116' + - '1163' - input: - product_category_id: sg-4-9-5-1-1-1 + product_category_id: sg-4-17-2-17 output: product_category_id: - - '8005' + - '1164' - input: - product_category_id: sg-4-9-5-1-2 + product_category_id: sg-4-17-3 output: product_category_id: - - '3093' + - '7539' - input: - product_category_id: sg-4-9-5-1-3 + product_category_id: sg-4-17-3-1 output: product_category_id: - - '3925' + - '7539' - input: - product_category_id: sg-4-9-5-2 + product_category_id: sg-4-17-3-2 output: product_category_id: - - '1049' + - '7539' - input: - product_category_id: sg-4-9-5-2-1 + product_category_id: sg-4-17-3-3 output: product_category_id: - - '6748' + - '7539' - input: - product_category_id: sg-4-9-5-2-2 + product_category_id: sg-4-17-3-4 output: product_category_id: - - '3408' + - '7539' - input: - product_category_id: sg-4-9-5-2-3 + product_category_id: sg-4-17-3-5 output: product_category_id: - - '3187' + - '7539' - input: - product_category_id: sg-4-9-5-2-3-1 + product_category_id: sg-4-17-3-6 output: product_category_id: - - '3244' + - '7539' - input: - product_category_id: sg-4-9-5-2-3-2 + product_category_id: sg-4-17-4 output: product_category_id: - - '3690' + - '1166' - input: - product_category_id: sg-4-9-5-2-3-3 + product_category_id: sg-4-17-4-1 output: product_category_id: - - '8514' + - '3073' - input: - product_category_id: sg-4-9-5-2-3-4 + product_category_id: sg-4-17-4-2 output: product_category_id: - - '3152' + - '3064' - input: - product_category_id: sg-4-9-5-2-4 + product_category_id: so output: product_category_id: - - '3234' + - '2092' - input: - product_category_id: sg-4-9-5-2-5 + product_category_id: so-1 output: product_category_id: - - '6781' + - '313' - input: - product_category_id: sg-4-9-5-2-6 + product_category_id: so-1-1 output: product_category_id: - - '3438' + - '5299' - input: - product_category_id: sg-4-9-5-3 + product_category_id: so-1-2 output: product_category_id: - - '499835' + - '5300' - input: - product_category_id: sg-4-9-5-3-1 + product_category_id: so-1-2-1 output: product_category_id: - - '499836' + - '5300' - input: - product_category_id: sg-4-9-5-3-2 + product_category_id: so-1-2-8 output: product_category_id: - - '499838' + - '5300' - input: - product_category_id: sg-4-9-5-3-3 + product_category_id: so-1-2-11 output: product_category_id: - - '499839' + - '5300' - input: - product_category_id: sg-4-9-5-3-4 + product_category_id: so-1-2-12 output: product_category_id: - - '499837' + - '5300' - input: - product_category_id: sg-4-9-6 + product_category_id: so-1-2-13 output: product_category_id: - - '499840' + - '5300' - input: - product_category_id: sg-4-9-6-1 + product_category_id: so-1-2-14 output: product_category_id: - - '499842' + - '5300' - input: - product_category_id: sg-4-9-6-2 + product_category_id: so-1-3 output: product_category_id: - - '499841' + - '315' - input: - product_category_id: sg-4-9-6-2-1 + product_category_id: so-1-3-1 output: product_category_id: - - '499841' + - '315' - input: - product_category_id: sg-4-9-6-2-2 + product_category_id: so-1-4 output: product_category_id: - - '499841' + - '5301' - input: - product_category_id: sg-4-9-6-2-3 + product_category_id: so-1-5 output: product_category_id: - - '499841' + - '5127' - input: - product_category_id: sg-4-9-6-3 + product_category_id: so-1-6 output: product_category_id: - - '3170' + - '317' - input: - product_category_id: so + product_category_id: so-1-7 output: product_category_id: - - '2092' + - '5304' - input: - product_category_id: so-1 + product_category_id: so-1-8 output: product_category_id: - - '313' + - '3283' - input: - product_category_id: so-1-1 + product_category_id: so-1-9 output: product_category_id: - - '5299' + - '318' - input: product_category_id: so-1-10 output: @@ -47572,11 +47647,6 @@ rules: output: product_category_id: - '6027' -- input: - product_category_id: so-1-10-10 - output: - product_category_id: - - '4954' - input: product_category_id: so-1-10-2 output: @@ -47617,6 +47687,11 @@ rules: output: product_category_id: - '4953' +- input: + product_category_id: so-1-10-10 + output: + product_category_id: + - '4954' - input: product_category_id: so-1-11 output: @@ -47647,81 +47722,6 @@ rules: output: product_category_id: - '313' -- input: - product_category_id: so-1-2 - output: - product_category_id: - - '5300' -- input: - product_category_id: so-1-2-1 - output: - product_category_id: - - '5300' -- input: - product_category_id: so-1-2-11 - output: - product_category_id: - - '5300' -- input: - product_category_id: so-1-2-12 - output: - product_category_id: - - '5300' -- input: - product_category_id: so-1-2-13 - output: - product_category_id: - - '5300' -- input: - product_category_id: so-1-2-14 - output: - product_category_id: - - '5300' -- input: - product_category_id: so-1-2-8 - output: - product_category_id: - - '5300' -- input: - product_category_id: so-1-3 - output: - product_category_id: - - '315' -- input: - product_category_id: so-1-3-1 - output: - product_category_id: - - '315' -- input: - product_category_id: so-1-4 - output: - product_category_id: - - '5301' -- input: - product_category_id: so-1-5 - output: - product_category_id: - - '5127' -- input: - product_category_id: so-1-6 - output: - product_category_id: - - '317' -- input: - product_category_id: so-1-7 - output: - product_category_id: - - '5304' -- input: - product_category_id: so-1-8 - output: - product_category_id: - - '3283' -- input: - product_category_id: so-1-9 - output: - product_category_id: - - '318' - input: product_category_id: so-2 output: @@ -47802,41 +47802,6 @@ rules: output: product_category_id: - '6794' -- input: - product_category_id: tg-2-10 - output: - product_category_id: - - '7383' -- input: - product_category_id: tg-2-10-1 - output: - product_category_id: - - '7384' -- input: - product_category_id: tg-2-11 - output: - product_category_id: - - '5403' -- input: - product_category_id: tg-2-12 - output: - product_category_id: - - '4554' -- input: - product_category_id: tg-2-13 - output: - product_category_id: - - '7412' -- input: - product_category_id: tg-2-14 - output: - product_category_id: - - '8472' -- input: - product_category_id: tg-2-15 - output: - product_category_id: - - '6038' - input: product_category_id: tg-2-2 output: @@ -47898,60 +47863,50 @@ rules: product_category_id: - '6037' - input: - product_category_id: tg-3 - output: - product_category_id: - - '1249' -- input: - product_category_id: tg-3-1 - output: - product_category_id: - - '7219' -- input: - product_category_id: tg-3-10 + product_category_id: tg-2-10 output: product_category_id: - - '3948' + - '7383' - input: - product_category_id: tg-3-11 + product_category_id: tg-2-10-1 output: product_category_id: - - '6269' + - '7384' - input: - product_category_id: tg-3-12 + product_category_id: tg-2-11 output: product_category_id: - - '6271' + - '5403' - input: - product_category_id: tg-3-13 + product_category_id: tg-2-12 output: product_category_id: - - '5524' + - '4554' - input: - product_category_id: tg-3-14 + product_category_id: tg-2-13 output: product_category_id: - - '1738' + - '7412' - input: - product_category_id: tg-3-15 + product_category_id: tg-2-14 output: product_category_id: - - '6464' + - '8472' - input: - product_category_id: tg-3-15-1 + product_category_id: tg-2-15 output: product_category_id: - - '6465' + - '6038' - input: - product_category_id: tg-3-15-2 + product_category_id: tg-3 output: product_category_id: - - '500095' + - '1249' - input: - product_category_id: tg-3-15-3 + product_category_id: tg-3-1 output: product_category_id: - - '3556' + - '7219' - input: product_category_id: tg-3-2 output: @@ -48003,15 +47958,55 @@ rules: product_category_id: - '2867' - input: - product_category_id: tg-4 + product_category_id: tg-3-10 output: product_category_id: - - '3867' + - '3948' - input: - product_category_id: tg-4-12 + product_category_id: tg-3-11 output: product_category_id: - - '6725' + - '6269' +- input: + product_category_id: tg-3-12 + output: + product_category_id: + - '6271' +- input: + product_category_id: tg-3-13 + output: + product_category_id: + - '5524' +- input: + product_category_id: tg-3-14 + output: + product_category_id: + - '1738' +- input: + product_category_id: tg-3-15 + output: + product_category_id: + - '6464' +- input: + product_category_id: tg-3-15-1 + output: + product_category_id: + - '6465' +- input: + product_category_id: tg-3-15-2 + output: + product_category_id: + - '500095' +- input: + product_category_id: tg-3-15-3 + output: + product_category_id: + - '3556' +- input: + product_category_id: tg-4 + output: + product_category_id: + - '3867' - input: product_category_id: tg-4-6 output: @@ -48027,6 +48022,11 @@ rules: output: product_category_id: - '4011' +- input: + product_category_id: tg-4-12 + output: + product_category_id: + - '6725' - input: product_category_id: tg-5 output: @@ -48042,21 +48042,6 @@ rules: output: product_category_id: - '7519' -- input: - product_category_id: tg-5-1-10 - output: - product_category_id: - - '4216' -- input: - product_category_id: tg-5-1-11 - output: - product_category_id: - - '7148' -- input: - product_category_id: tg-5-1-12 - output: - product_category_id: - - '3929' - input: product_category_id: tg-5-1-2 output: @@ -48113,915 +48098,930 @@ rules: product_category_id: - '3466' - input: - product_category_id: tg-5-10 + product_category_id: tg-5-1-10 output: product_category_id: - - '3074' + - '4216' - input: - product_category_id: tg-5-10-2 + product_category_id: tg-5-1-11 output: product_category_id: - - '5872' + - '7148' - input: - product_category_id: tg-5-11 + product_category_id: tg-5-1-12 output: product_category_id: - - '7366' + - '3929' - input: - product_category_id: tg-5-12 + product_category_id: tg-5-2 output: product_category_id: - - '1261' + - '3731' - input: - product_category_id: tg-5-12-10 + product_category_id: tg-5-2-1 output: product_category_id: - - '3966' + - '3731' - input: - product_category_id: tg-5-12-2 + product_category_id: tg-5-2-2 output: product_category_id: - - '1261' + - '3731' - input: - product_category_id: tg-5-12-3 + product_category_id: tg-5-2-3 output: product_category_id: - - '3460' + - '3731' - input: - product_category_id: tg-5-12-4 + product_category_id: tg-5-2-4 output: product_category_id: - - '1261' + - '3731' - input: - product_category_id: tg-5-12-5 + product_category_id: tg-5-2-5 output: product_category_id: - - '1261' + - '3731' - input: - product_category_id: tg-5-12-6 + product_category_id: tg-5-2-6 output: product_category_id: - - '3378' + - '505818' - input: - product_category_id: tg-5-12-7 + product_category_id: tg-5-2-6-1 output: product_category_id: - - '1261' + - '505818' - input: - product_category_id: tg-5-12-8 + product_category_id: tg-5-2-6-2 output: product_category_id: - - '3263' + - '505818' - input: - product_category_id: tg-5-13 + product_category_id: tg-5-2-6-3 output: product_category_id: - - '1264' + - '505818' - input: - product_category_id: tg-5-13-1 + product_category_id: tg-5-2-6-4 output: product_category_id: - - '1264' + - '505818' - input: - product_category_id: tg-5-13-12 + product_category_id: tg-5-2-6-5 output: product_category_id: - - '1264' + - '505818' - input: - product_category_id: tg-5-13-13 + product_category_id: tg-5-2-6-6 output: product_category_id: - - '1264' + - '505818' - input: - product_category_id: tg-5-13-14 + product_category_id: tg-5-2-7 output: product_category_id: - - '1264' + - '3731' - input: - product_category_id: tg-5-13-15 + product_category_id: tg-5-2-8 output: product_category_id: - - '1264' + - '3731' - input: - product_category_id: tg-5-13-2 + product_category_id: tg-5-2-9 output: product_category_id: - - '1264' + - '3731' - input: - product_category_id: tg-5-13-4 + product_category_id: tg-5-2-10 output: product_category_id: - - '1264' + - '3731' - input: - product_category_id: tg-5-13-5 + product_category_id: tg-5-2-11 output: product_category_id: - - '1264' + - '3079' - input: - product_category_id: tg-5-13-6 + product_category_id: tg-5-3 output: product_category_id: - - '1264' + - '7311' - input: - product_category_id: tg-5-13-7 + product_category_id: tg-5-3-1 output: product_category_id: - - '1264' + - '7312' - input: - product_category_id: tg-5-13-9 + product_category_id: tg-5-4 output: product_category_id: - - '1264' + - '3207' - input: - product_category_id: tg-5-14 + product_category_id: tg-5-5 output: product_category_id: - - '5970' + - '3911' +- input: + product_category_id: tg-5-5-1 + output: + product_category_id: + - '3911' +- input: + product_category_id: tg-5-5-2 + output: + product_category_id: + - '3911' +- input: + product_category_id: tg-5-5-3 + output: + product_category_id: + - '3911' - input: - product_category_id: tg-5-15 + product_category_id: tg-5-5-4 output: product_category_id: - - '2505' + - '3911' - input: - product_category_id: tg-5-15-1 + product_category_id: tg-5-5-5 output: product_category_id: - - '3444' + - '3911' - input: - product_category_id: tg-5-15-2 + product_category_id: tg-5-5-6 output: product_category_id: - - '3792' + - '3911' - input: - product_category_id: tg-5-15-3 + product_category_id: tg-5-5-7 output: product_category_id: - - '3551' + - '3911' - input: - product_category_id: tg-5-15-4 + product_category_id: tg-5-5-8 output: product_category_id: - - '3506' + - '3911' - input: - product_category_id: tg-5-15-5 + product_category_id: tg-5-5-9 output: product_category_id: - - '3590' + - '3911' - input: - product_category_id: tg-5-15-6 + product_category_id: tg-5-5-10 output: product_category_id: - - '3474' + - '3911' - input: - product_category_id: tg-5-15-7 + product_category_id: tg-5-6 output: product_category_id: - - '3589' + - '1268' - input: - product_category_id: tg-5-15-8 + product_category_id: tg-5-6-1 output: product_category_id: - - '5152' + - '1268' - input: - product_category_id: tg-5-15-9 + product_category_id: tg-5-6-2 output: product_category_id: - - '3296' + - '1268' - input: - product_category_id: tg-5-16 + product_category_id: tg-5-6-3 output: product_category_id: - - '3229' + - '1268' - input: - product_category_id: tg-5-16-1 + product_category_id: tg-5-6-4 output: product_category_id: - - '3680' + - '1268' - input: - product_category_id: tg-5-16-2 + product_category_id: tg-5-6-5 output: product_category_id: - - '3659' + - '1268' - input: - product_category_id: tg-5-16-3 + product_category_id: tg-5-6-6 output: product_category_id: - - '4004' + - '1268' - input: - product_category_id: tg-5-16-4 + product_category_id: tg-5-6-7 output: product_category_id: - - '3288' + - '1268' - input: - product_category_id: tg-5-16-5 + product_category_id: tg-5-6-8 output: product_category_id: - - '3129' + - '1268' - input: - product_category_id: tg-5-16-6 + product_category_id: tg-5-6-9 output: product_category_id: - - '8295' + - '1268' - input: - product_category_id: tg-5-16-7 + product_category_id: tg-5-6-10 output: product_category_id: - - '3298' + - '1268' - input: - product_category_id: tg-5-16-7-1 + product_category_id: tg-5-6-11 output: product_category_id: - - '543624' + - '1268' - input: - product_category_id: tg-5-16-7-2 + product_category_id: tg-5-7 output: product_category_id: - - '543690' + - '1254' - input: - product_category_id: tg-5-16-7-3 + product_category_id: tg-5-7-8 output: product_category_id: - - '543622' + - '3805' - input: - product_category_id: tg-5-16-7-4 + product_category_id: tg-5-7-11 output: product_category_id: - - '543623' + - '3172' - input: - product_category_id: tg-5-16-8 + product_category_id: tg-5-7-12 output: product_category_id: - - '3751' + - '3287' - input: - product_category_id: tg-5-17 + product_category_id: tg-5-7-13 output: product_category_id: - - '2778' + - '3163' - input: - product_category_id: tg-5-18 + product_category_id: tg-5-7-14 output: product_category_id: - - '2546' + - '3617' - input: - product_category_id: tg-5-18-1 + product_category_id: tg-5-8 output: product_category_id: - - '7090' + - '1255' - input: - product_category_id: tg-5-18-2 + product_category_id: tg-5-8-1 output: product_category_id: - - '3532' + - '6058' - input: - product_category_id: tg-5-18-3 + product_category_id: tg-5-8-1-1 output: product_category_id: - - '3601' + - '6058' - input: - product_category_id: tg-5-18-4 + product_category_id: tg-5-8-1-2 output: product_category_id: - - '3554' + - '6058' - input: - product_category_id: tg-5-18-5 + product_category_id: tg-5-8-2 output: product_category_id: - - '5968' + - '7114' - input: - product_category_id: tg-5-18-6 + product_category_id: tg-5-8-3 output: product_category_id: - - '3677' + - '3584' - input: - product_category_id: tg-5-18-7 + product_category_id: tg-5-8-4 output: product_category_id: - - '6059' + - '2497' - input: - product_category_id: tg-5-18-8 + product_category_id: tg-5-8-5 output: product_category_id: - - '5969' + - '2499' - input: - product_category_id: tg-5-19 + product_category_id: tg-5-8-6 output: product_category_id: - - '7202' + - '1257' - input: - product_category_id: tg-5-2 + product_category_id: tg-5-8-7 output: product_category_id: - - '3731' + - '8021' - input: - product_category_id: tg-5-2-1 + product_category_id: tg-5-8-8 output: product_category_id: - - '3731' + - '6056' - input: - product_category_id: tg-5-2-10 + product_category_id: tg-5-8-9 output: product_category_id: - - '3731' + - '6057' - input: - product_category_id: tg-5-2-11 + product_category_id: tg-5-8-10 output: product_category_id: - - '3079' + - '1258' - input: - product_category_id: tg-5-2-2 + product_category_id: tg-5-8-11 output: product_category_id: - - '3731' + - '1259' - input: - product_category_id: tg-5-2-3 + product_category_id: tg-5-8-12 output: product_category_id: - - '3731' + - '3166' - input: - product_category_id: tg-5-2-4 + product_category_id: tg-5-8-12-1 output: product_category_id: - - '3731' + - '3166' - input: - product_category_id: tg-5-2-5 + product_category_id: tg-5-8-12-2 output: product_category_id: - - '3731' + - '3166' - input: - product_category_id: tg-5-2-6 + product_category_id: tg-5-8-12-3 output: product_category_id: - - '505818' + - '3166' - input: - product_category_id: tg-5-2-6-1 + product_category_id: tg-5-8-12-4 output: product_category_id: - - '505818' + - '3166' - input: - product_category_id: tg-5-2-6-2 + product_category_id: tg-5-8-12-5 output: product_category_id: - - '505818' + - '3166' - input: - product_category_id: tg-5-2-6-3 + product_category_id: tg-5-8-12-6 output: product_category_id: - - '505818' + - '3166' - input: - product_category_id: tg-5-2-6-4 + product_category_id: tg-5-8-12-7 output: product_category_id: - - '505818' + - '3166' - input: - product_category_id: tg-5-2-6-5 + product_category_id: tg-5-8-12-8 output: product_category_id: - - '505818' + - '3166' - input: - product_category_id: tg-5-2-6-6 + product_category_id: tg-5-8-12-9 output: product_category_id: - - '505818' + - '3166' - input: - product_category_id: tg-5-2-7 + product_category_id: tg-5-9 output: product_category_id: - - '3731' + - '1262' - input: - product_category_id: tg-5-2-8 + product_category_id: tg-5-9-1 output: product_category_id: - - '3731' + - '3088' - input: - product_category_id: tg-5-2-9 + product_category_id: tg-5-9-2 output: product_category_id: - - '3731' + - '499938' - input: - product_category_id: tg-5-20 + product_category_id: tg-5-9-2-1 output: product_category_id: - - '2799' + - '499938' - input: - product_category_id: tg-5-20-1 + product_category_id: tg-5-9-2-3 output: product_category_id: - - '2753' + - '499938' - input: - product_category_id: tg-5-20-2 + product_category_id: tg-5-9-2-4 output: product_category_id: - - '6407' + - '499938' - input: - product_category_id: tg-5-20-3 + product_category_id: tg-5-9-2-5 output: product_category_id: - - '2724' + - '499938' - input: - product_category_id: tg-5-20-4 + product_category_id: tg-5-9-2-6 output: product_category_id: - - '3441' + - '499938' - input: - product_category_id: tg-5-20-5 + product_category_id: tg-5-9-2-7 output: product_category_id: - - '6379' + - '499938' - input: - product_category_id: tg-5-21 + product_category_id: tg-5-9-3 output: product_category_id: - - '3625' + - '3928' - input: - product_category_id: tg-5-22 + product_category_id: tg-5-9-4 output: product_category_id: - - '8127' + - '500015' - input: - product_category_id: tg-5-23 + product_category_id: tg-5-9-5 output: product_category_id: - - '1266' + - '5529' - input: - product_category_id: tg-5-23-1 + product_category_id: tg-5-9-6 output: product_category_id: - - '3371' + - '3500' - input: - product_category_id: tg-5-23-10 + product_category_id: tg-5-9-7 output: product_category_id: - - '3909' + - '6466' - input: - product_category_id: tg-5-23-11 + product_category_id: tg-5-10 output: product_category_id: - - '3226' + - '3074' - input: - product_category_id: tg-5-23-12 + product_category_id: tg-5-10-2 output: product_category_id: - - '3943' + - '5872' - input: - product_category_id: tg-5-23-13 + product_category_id: tg-5-11 output: product_category_id: - - '499965' + - '7366' - input: - product_category_id: tg-5-23-14 + product_category_id: tg-5-12 output: product_category_id: - - '505284' + - '1261' - input: - product_category_id: tg-5-23-2 + product_category_id: tg-5-12-2 output: product_category_id: - - '3776' + - '1261' - input: - product_category_id: tg-5-23-3 + product_category_id: tg-5-12-3 output: product_category_id: - - '3552' + - '3460' - input: - product_category_id: tg-5-23-4 + product_category_id: tg-5-12-4 output: product_category_id: - - '3675' + - '1261' - input: - product_category_id: tg-5-23-5 + product_category_id: tg-5-12-5 output: product_category_id: - - '3665' + - '1261' - input: - product_category_id: tg-5-23-6 + product_category_id: tg-5-12-6 output: product_category_id: - - '500113' + - '3378' - input: - product_category_id: tg-5-23-7 + product_category_id: tg-5-12-7 output: product_category_id: - - '8529' + - '1261' - input: - product_category_id: tg-5-23-8 + product_category_id: tg-5-12-8 output: product_category_id: - - '3199' + - '3263' - input: - product_category_id: tg-5-23-8-2 + product_category_id: tg-5-12-10 output: product_category_id: - - '3215' + - '3966' - input: - product_category_id: tg-5-23-8-3 + product_category_id: tg-5-13 output: product_category_id: - - '3199' + - '1264' - input: - product_category_id: tg-5-23-8-4 + product_category_id: tg-5-13-1 output: product_category_id: - - '3199' + - '1264' - input: - product_category_id: tg-5-23-8-5 + product_category_id: tg-5-13-2 output: product_category_id: - - '3199' + - '1264' - input: - product_category_id: tg-5-23-8-6 + product_category_id: tg-5-13-4 output: product_category_id: - - '3199' + - '1264' - input: - product_category_id: tg-5-23-9 + product_category_id: tg-5-13-5 output: product_category_id: - - '4167' + - '1264' - input: - product_category_id: tg-5-24 + product_category_id: tg-5-13-6 output: product_category_id: - - '499712' + - '1264' - input: - product_category_id: tg-5-25 + product_category_id: tg-5-13-7 output: product_category_id: - - '500005' + - '1264' - input: - product_category_id: tg-5-26 + product_category_id: tg-5-13-9 output: product_category_id: - - '3627' + - '1264' - input: - product_category_id: tg-5-27 + product_category_id: tg-5-13-12 output: product_category_id: - - '3562' + - '1264' - input: - product_category_id: tg-5-27-1 + product_category_id: tg-5-13-13 output: product_category_id: - - '3301' + - '1264' - input: - product_category_id: tg-5-27-2 + product_category_id: tg-5-13-14 output: product_category_id: - - '3782' + - '1264' - input: - product_category_id: tg-5-28 + product_category_id: tg-5-13-15 output: product_category_id: - - '2953' + - '1264' - input: - product_category_id: tg-5-3 + product_category_id: tg-5-14 output: product_category_id: - - '7311' + - '5970' - input: - product_category_id: tg-5-3-1 + product_category_id: tg-5-15 output: product_category_id: - - '7312' + - '2505' - input: - product_category_id: tg-5-4 + product_category_id: tg-5-15-1 output: product_category_id: - - '3207' + - '3444' - input: - product_category_id: tg-5-5 + product_category_id: tg-5-15-2 output: product_category_id: - - '3911' + - '3792' - input: - product_category_id: tg-5-5-1 + product_category_id: tg-5-15-3 output: product_category_id: - - '3911' + - '3551' - input: - product_category_id: tg-5-5-10 + product_category_id: tg-5-15-4 output: product_category_id: - - '3911' + - '3506' - input: - product_category_id: tg-5-5-2 + product_category_id: tg-5-15-5 output: product_category_id: - - '3911' + - '3590' - input: - product_category_id: tg-5-5-3 + product_category_id: tg-5-15-6 output: product_category_id: - - '3911' + - '3474' - input: - product_category_id: tg-5-5-4 + product_category_id: tg-5-15-7 output: product_category_id: - - '3911' + - '3589' - input: - product_category_id: tg-5-5-5 + product_category_id: tg-5-15-8 output: product_category_id: - - '3911' + - '5152' - input: - product_category_id: tg-5-5-6 + product_category_id: tg-5-15-9 output: product_category_id: - - '3911' + - '3296' - input: - product_category_id: tg-5-5-7 + product_category_id: tg-5-16 output: product_category_id: - - '3911' + - '3229' - input: - product_category_id: tg-5-5-8 + product_category_id: tg-5-16-1 output: product_category_id: - - '3911' + - '3680' - input: - product_category_id: tg-5-5-9 + product_category_id: tg-5-16-2 output: product_category_id: - - '3911' + - '3659' - input: - product_category_id: tg-5-6 + product_category_id: tg-5-16-3 output: product_category_id: - - '1268' + - '4004' - input: - product_category_id: tg-5-6-1 + product_category_id: tg-5-16-4 output: product_category_id: - - '1268' + - '3288' - input: - product_category_id: tg-5-6-10 + product_category_id: tg-5-16-5 output: product_category_id: - - '1268' + - '3129' - input: - product_category_id: tg-5-6-11 + product_category_id: tg-5-16-6 output: product_category_id: - - '1268' + - '8295' - input: - product_category_id: tg-5-6-2 + product_category_id: tg-5-16-7 output: product_category_id: - - '1268' + - '3298' - input: - product_category_id: tg-5-6-3 + product_category_id: tg-5-16-7-1 output: product_category_id: - - '1268' + - '543624' - input: - product_category_id: tg-5-6-4 + product_category_id: tg-5-16-7-2 output: product_category_id: - - '1268' + - '543690' - input: - product_category_id: tg-5-6-5 + product_category_id: tg-5-16-7-3 output: product_category_id: - - '1268' + - '543622' - input: - product_category_id: tg-5-6-6 + product_category_id: tg-5-16-7-4 output: product_category_id: - - '1268' + - '543623' - input: - product_category_id: tg-5-6-7 + product_category_id: tg-5-16-8 output: product_category_id: - - '1268' + - '3751' - input: - product_category_id: tg-5-6-8 + product_category_id: tg-5-17 output: product_category_id: - - '1268' + - '2778' - input: - product_category_id: tg-5-6-9 + product_category_id: tg-5-18 output: product_category_id: - - '1268' + - '2546' - input: - product_category_id: tg-5-7 + product_category_id: tg-5-18-1 output: product_category_id: - - '1254' + - '7090' - input: - product_category_id: tg-5-7-11 + product_category_id: tg-5-18-2 output: product_category_id: - - '3172' + - '3532' - input: - product_category_id: tg-5-7-12 + product_category_id: tg-5-18-3 output: product_category_id: - - '3287' + - '3601' - input: - product_category_id: tg-5-7-13 + product_category_id: tg-5-18-4 output: product_category_id: - - '3163' + - '3554' - input: - product_category_id: tg-5-7-14 + product_category_id: tg-5-18-5 output: product_category_id: - - '3617' + - '5968' - input: - product_category_id: tg-5-7-8 + product_category_id: tg-5-18-6 output: product_category_id: - - '3805' + - '3677' - input: - product_category_id: tg-5-8 + product_category_id: tg-5-18-7 output: product_category_id: - - '1255' + - '6059' - input: - product_category_id: tg-5-8-1 + product_category_id: tg-5-18-8 output: product_category_id: - - '6058' + - '5969' - input: - product_category_id: tg-5-8-1-1 + product_category_id: tg-5-19 output: product_category_id: - - '6058' + - '7202' - input: - product_category_id: tg-5-8-1-2 + product_category_id: tg-5-20 output: product_category_id: - - '6058' + - '2799' - input: - product_category_id: tg-5-8-10 + product_category_id: tg-5-20-1 output: product_category_id: - - '1258' + - '2753' - input: - product_category_id: tg-5-8-11 + product_category_id: tg-5-20-2 output: product_category_id: - - '1259' + - '6407' - input: - product_category_id: tg-5-8-12 + product_category_id: tg-5-20-3 output: product_category_id: - - '3166' + - '2724' - input: - product_category_id: tg-5-8-12-1 + product_category_id: tg-5-20-4 output: product_category_id: - - '3166' + - '3441' - input: - product_category_id: tg-5-8-12-2 + product_category_id: tg-5-20-5 output: product_category_id: - - '3166' + - '6379' - input: - product_category_id: tg-5-8-12-3 + product_category_id: tg-5-21 output: product_category_id: - - '3166' + - '3625' - input: - product_category_id: tg-5-8-12-4 + product_category_id: tg-5-22 output: product_category_id: - - '3166' + - '8127' - input: - product_category_id: tg-5-8-12-5 + product_category_id: tg-5-23 output: product_category_id: - - '3166' + - '1266' - input: - product_category_id: tg-5-8-12-6 + product_category_id: tg-5-23-1 output: product_category_id: - - '3166' + - '3371' - input: - product_category_id: tg-5-8-12-7 + product_category_id: tg-5-23-2 output: product_category_id: - - '3166' + - '3776' - input: - product_category_id: tg-5-8-12-8 + product_category_id: tg-5-23-3 output: product_category_id: - - '3166' + - '3552' - input: - product_category_id: tg-5-8-12-9 + product_category_id: tg-5-23-4 output: product_category_id: - - '3166' + - '3675' - input: - product_category_id: tg-5-8-2 + product_category_id: tg-5-23-5 output: product_category_id: - - '7114' + - '3665' - input: - product_category_id: tg-5-8-3 + product_category_id: tg-5-23-6 output: product_category_id: - - '3584' + - '500113' - input: - product_category_id: tg-5-8-4 + product_category_id: tg-5-23-7 output: product_category_id: - - '2497' + - '8529' - input: - product_category_id: tg-5-8-5 + product_category_id: tg-5-23-8 output: product_category_id: - - '2499' + - '3199' - input: - product_category_id: tg-5-8-6 + product_category_id: tg-5-23-8-2 output: product_category_id: - - '1257' + - '3215' - input: - product_category_id: tg-5-8-7 + product_category_id: tg-5-23-8-3 output: product_category_id: - - '8021' + - '3199' - input: - product_category_id: tg-5-8-8 + product_category_id: tg-5-23-8-4 output: product_category_id: - - '6056' + - '3199' - input: - product_category_id: tg-5-8-9 + product_category_id: tg-5-23-8-5 output: product_category_id: - - '6057' + - '3199' - input: - product_category_id: tg-5-9 + product_category_id: tg-5-23-8-6 output: product_category_id: - - '1262' + - '3199' - input: - product_category_id: tg-5-9-1 + product_category_id: tg-5-23-9 output: product_category_id: - - '3088' + - '4167' - input: - product_category_id: tg-5-9-2 + product_category_id: tg-5-23-10 output: product_category_id: - - '499938' + - '3909' - input: - product_category_id: tg-5-9-2-1 + product_category_id: tg-5-23-11 output: product_category_id: - - '499938' + - '3226' - input: - product_category_id: tg-5-9-2-3 + product_category_id: tg-5-23-12 output: product_category_id: - - '499938' + - '3943' - input: - product_category_id: tg-5-9-2-4 + product_category_id: tg-5-23-13 output: product_category_id: - - '499938' + - '499965' - input: - product_category_id: tg-5-9-2-5 + product_category_id: tg-5-23-14 output: product_category_id: - - '499938' + - '505284' - input: - product_category_id: tg-5-9-2-6 + product_category_id: tg-5-24 output: product_category_id: - - '499938' + - '499712' - input: - product_category_id: tg-5-9-2-7 + product_category_id: tg-5-25 output: product_category_id: - - '499938' + - '500005' - input: - product_category_id: tg-5-9-3 + product_category_id: tg-5-26 output: product_category_id: - - '3928' + - '3627' - input: - product_category_id: tg-5-9-4 + product_category_id: tg-5-27 output: product_category_id: - - '500015' + - '3562' - input: - product_category_id: tg-5-9-5 + product_category_id: tg-5-27-1 output: product_category_id: - - '5529' + - '3301' - input: - product_category_id: tg-5-9-6 + product_category_id: tg-5-27-2 output: product_category_id: - - '3500' + - '3782' - input: - product_category_id: tg-5-9-7 + product_category_id: tg-5-28 output: product_category_id: - - '6466' + - '2953' - input: product_category_id: vp output: @@ -49152,46 +49152,6 @@ rules: output: product_category_id: - '505766' -- input: - product_category_id: vp-1-3-10 - output: - product_category_id: - - '8483' -- input: - product_category_id: vp-1-3-10-1 - output: - product_category_id: - - '8483' -- input: - product_category_id: vp-1-3-10-2 - output: - product_category_id: - - '8483' -- input: - product_category_id: vp-1-3-10-3 - output: - product_category_id: - - '8483' -- input: - product_category_id: vp-1-3-10-4 - output: - product_category_id: - - '8483' -- input: - product_category_id: vp-1-3-10-5 - output: - product_category_id: - - '8483' -- input: - product_category_id: vp-1-3-10-6 - output: - product_category_id: - - '8483' -- input: - product_category_id: vp-1-3-10-7 - output: - product_category_id: - - '8483' - input: product_category_id: vp-1-3-2 output: @@ -49312,6 +49272,46 @@ rules: output: product_category_id: - '2833' +- input: + product_category_id: vp-1-3-10 + output: + product_category_id: + - '8483' +- input: + product_category_id: vp-1-3-10-1 + output: + product_category_id: + - '8483' +- input: + product_category_id: vp-1-3-10-2 + output: + product_category_id: + - '8483' +- input: + product_category_id: vp-1-3-10-3 + output: + product_category_id: + - '8483' +- input: + product_category_id: vp-1-3-10-4 + output: + product_category_id: + - '8483' +- input: + product_category_id: vp-1-3-10-5 + output: + product_category_id: + - '8483' +- input: + product_category_id: vp-1-3-10-6 + output: + product_category_id: + - '8483' +- input: + product_category_id: vp-1-3-10-7 + output: + product_category_id: + - '8483' - input: product_category_id: vp-1-4 output: @@ -49362,6 +49362,321 @@ rules: output: product_category_id: - '2977' +- input: + product_category_id: vp-1-4-2 + output: + product_category_id: + - '8232' +- input: + product_category_id: vp-1-4-2-1 + output: + product_category_id: + - '8232' +- input: + product_category_id: vp-1-4-2-2 + output: + product_category_id: + - '8232' +- input: + product_category_id: vp-1-4-2-3 + output: + product_category_id: + - '8232' +- input: + product_category_id: vp-1-4-2-4 + output: + product_category_id: + - '8232' +- input: + product_category_id: vp-1-4-2-5 + output: + product_category_id: + - '8232' +- input: + product_category_id: vp-1-4-2-6 + output: + product_category_id: + - '8232' +- input: + product_category_id: vp-1-4-2-7 + output: + product_category_id: + - '8232' +- input: + product_category_id: vp-1-4-2-8 + output: + product_category_id: + - '8232' +- input: + product_category_id: vp-1-4-3 + output: + product_category_id: + - '2805' +- input: + product_category_id: vp-1-4-3-1 + output: + product_category_id: + - '2805' +- input: + product_category_id: vp-1-4-3-2 + output: + product_category_id: + - '2805' +- input: + product_category_id: vp-1-4-3-3 + output: + product_category_id: + - '2805' +- input: + product_category_id: vp-1-4-3-4 + output: + product_category_id: + - '2805' +- input: + product_category_id: vp-1-4-3-5 + output: + product_category_id: + - '2805' +- input: + product_category_id: vp-1-4-3-6 + output: + product_category_id: + - '2805' +- input: + product_category_id: vp-1-4-3-7 + output: + product_category_id: + - '2805' +- input: + product_category_id: vp-1-4-3-8 + output: + product_category_id: + - '2805' +- input: + product_category_id: vp-1-4-4 + output: + product_category_id: + - '8235' +- input: + product_category_id: vp-1-4-4-1 + output: + product_category_id: + - '8235' +- input: + product_category_id: vp-1-4-4-2 + output: + product_category_id: + - '8235' +- input: + product_category_id: vp-1-4-4-3 + output: + product_category_id: + - '8235' +- input: + product_category_id: vp-1-4-4-4 + output: + product_category_id: + - '8235' +- input: + product_category_id: vp-1-4-4-5 + output: + product_category_id: + - '8235' +- input: + product_category_id: vp-1-4-4-6 + output: + product_category_id: + - '8235' +- input: + product_category_id: vp-1-4-5 + output: + product_category_id: + - '2550' +- input: + product_category_id: vp-1-4-5-1 + output: + product_category_id: + - '2550' +- input: + product_category_id: vp-1-4-5-2 + output: + product_category_id: + - '2550' +- input: + product_category_id: vp-1-4-5-3 + output: + product_category_id: + - '2550' +- input: + product_category_id: vp-1-4-5-4 + output: + product_category_id: + - '2550' +- input: + product_category_id: vp-1-4-5-5 + output: + product_category_id: + - '2550' +- input: + product_category_id: vp-1-4-5-6 + output: + product_category_id: + - '2550' +- input: + product_category_id: vp-1-4-5-7 + output: + product_category_id: + - '2550' +- input: + product_category_id: vp-1-4-5-8 + output: + product_category_id: + - '2550' +- input: + product_category_id: vp-1-4-6 + output: + product_category_id: + - '2820' +- input: + product_category_id: vp-1-4-6-1 + output: + product_category_id: + - '2820' +- input: + product_category_id: vp-1-4-6-2 + output: + product_category_id: + - '2820' +- input: + product_category_id: vp-1-4-6-3 + output: + product_category_id: + - '2820' +- input: + product_category_id: vp-1-4-6-4 + output: + product_category_id: + - '2820' +- input: + product_category_id: vp-1-4-6-5 + output: + product_category_id: + - '2820' +- input: + product_category_id: vp-1-4-6-6 + output: + product_category_id: + - '2820' +- input: + product_category_id: vp-1-4-6-7 + output: + product_category_id: + - '2820' +- input: + product_category_id: vp-1-4-6-8 + output: + product_category_id: + - '2820' +- input: + product_category_id: vp-1-4-6-9 + output: + product_category_id: + - '2820' +- input: + product_category_id: vp-1-4-7 + output: + product_category_id: + - '8137' +- input: + product_category_id: vp-1-4-7-1 + output: + product_category_id: + - '8137' +- input: + product_category_id: vp-1-4-7-2 + output: + product_category_id: + - '8137' +- input: + product_category_id: vp-1-4-7-3 + output: + product_category_id: + - '8137' +- input: + product_category_id: vp-1-4-7-4 + output: + product_category_id: + - '8137' +- input: + product_category_id: vp-1-4-7-5 + output: + product_category_id: + - '8137' +- input: + product_category_id: vp-1-4-7-6 + output: + product_category_id: + - '8137' +- input: + product_category_id: vp-1-4-7-7 + output: + product_category_id: + - '8137' +- input: + product_category_id: vp-1-4-7-8 + output: + product_category_id: + - '8137' +- input: + product_category_id: vp-1-4-8 + output: + product_category_id: + - '908' +- input: + product_category_id: vp-1-4-9 + output: + product_category_id: + - '8227' +- input: + product_category_id: vp-1-4-9-1 + output: + product_category_id: + - '8227' +- input: + product_category_id: vp-1-4-9-2 + output: + product_category_id: + - '8227' +- input: + product_category_id: vp-1-4-9-3 + output: + product_category_id: + - '8227' +- input: + product_category_id: vp-1-4-9-4 + output: + product_category_id: + - '8227' +- input: + product_category_id: vp-1-4-9-5 + output: + product_category_id: + - '8227' +- input: + product_category_id: vp-1-4-9-6 + output: + product_category_id: + - '8227' +- input: + product_category_id: vp-1-4-9-7 + output: + product_category_id: + - '8227' +- input: + product_category_id: vp-1-4-9-8 + output: + product_category_id: + - '8227' - input: product_category_id: vp-1-4-10 output: @@ -49737,51 +50052,6 @@ rules: output: product_category_id: - '2641' -- input: - product_category_id: vp-1-4-2 - output: - product_category_id: - - '8232' -- input: - product_category_id: vp-1-4-2-1 - output: - product_category_id: - - '8232' -- input: - product_category_id: vp-1-4-2-2 - output: - product_category_id: - - '8232' -- input: - product_category_id: vp-1-4-2-3 - output: - product_category_id: - - '8232' -- input: - product_category_id: vp-1-4-2-4 - output: - product_category_id: - - '8232' -- input: - product_category_id: vp-1-4-2-5 - output: - product_category_id: - - '8232' -- input: - product_category_id: vp-1-4-2-6 - output: - product_category_id: - - '8232' -- input: - product_category_id: vp-1-4-2-7 - output: - product_category_id: - - '8232' -- input: - product_category_id: vp-1-4-2-8 - output: - product_category_id: - - '8232' - input: product_category_id: vp-1-4-20 output: @@ -49842,276 +50112,6 @@ rules: output: product_category_id: - '2534' -- input: - product_category_id: vp-1-4-3 - output: - product_category_id: - - '2805' -- input: - product_category_id: vp-1-4-3-1 - output: - product_category_id: - - '2805' -- input: - product_category_id: vp-1-4-3-2 - output: - product_category_id: - - '2805' -- input: - product_category_id: vp-1-4-3-3 - output: - product_category_id: - - '2805' -- input: - product_category_id: vp-1-4-3-4 - output: - product_category_id: - - '2805' -- input: - product_category_id: vp-1-4-3-5 - output: - product_category_id: - - '2805' -- input: - product_category_id: vp-1-4-3-6 - output: - product_category_id: - - '2805' -- input: - product_category_id: vp-1-4-3-7 - output: - product_category_id: - - '2805' -- input: - product_category_id: vp-1-4-3-8 - output: - product_category_id: - - '2805' -- input: - product_category_id: vp-1-4-4 - output: - product_category_id: - - '8235' -- input: - product_category_id: vp-1-4-4-1 - output: - product_category_id: - - '8235' -- input: - product_category_id: vp-1-4-4-2 - output: - product_category_id: - - '8235' -- input: - product_category_id: vp-1-4-4-3 - output: - product_category_id: - - '8235' -- input: - product_category_id: vp-1-4-4-4 - output: - product_category_id: - - '8235' -- input: - product_category_id: vp-1-4-4-5 - output: - product_category_id: - - '8235' -- input: - product_category_id: vp-1-4-4-6 - output: - product_category_id: - - '8235' -- input: - product_category_id: vp-1-4-5 - output: - product_category_id: - - '2550' -- input: - product_category_id: vp-1-4-5-1 - output: - product_category_id: - - '2550' -- input: - product_category_id: vp-1-4-5-2 - output: - product_category_id: - - '2550' -- input: - product_category_id: vp-1-4-5-3 - output: - product_category_id: - - '2550' -- input: - product_category_id: vp-1-4-5-4 - output: - product_category_id: - - '2550' -- input: - product_category_id: vp-1-4-5-5 - output: - product_category_id: - - '2550' -- input: - product_category_id: vp-1-4-5-6 - output: - product_category_id: - - '2550' -- input: - product_category_id: vp-1-4-5-7 - output: - product_category_id: - - '2550' -- input: - product_category_id: vp-1-4-5-8 - output: - product_category_id: - - '2550' -- input: - product_category_id: vp-1-4-6 - output: - product_category_id: - - '2820' -- input: - product_category_id: vp-1-4-6-1 - output: - product_category_id: - - '2820' -- input: - product_category_id: vp-1-4-6-2 - output: - product_category_id: - - '2820' -- input: - product_category_id: vp-1-4-6-3 - output: - product_category_id: - - '2820' -- input: - product_category_id: vp-1-4-6-4 - output: - product_category_id: - - '2820' -- input: - product_category_id: vp-1-4-6-5 - output: - product_category_id: - - '2820' -- input: - product_category_id: vp-1-4-6-6 - output: - product_category_id: - - '2820' -- input: - product_category_id: vp-1-4-6-7 - output: - product_category_id: - - '2820' -- input: - product_category_id: vp-1-4-6-8 - output: - product_category_id: - - '2820' -- input: - product_category_id: vp-1-4-6-9 - output: - product_category_id: - - '2820' -- input: - product_category_id: vp-1-4-7 - output: - product_category_id: - - '8137' -- input: - product_category_id: vp-1-4-7-1 - output: - product_category_id: - - '8137' -- input: - product_category_id: vp-1-4-7-2 - output: - product_category_id: - - '8137' -- input: - product_category_id: vp-1-4-7-3 - output: - product_category_id: - - '8137' -- input: - product_category_id: vp-1-4-7-4 - output: - product_category_id: - - '8137' -- input: - product_category_id: vp-1-4-7-5 - output: - product_category_id: - - '8137' -- input: - product_category_id: vp-1-4-7-6 - output: - product_category_id: - - '8137' -- input: - product_category_id: vp-1-4-7-7 - output: - product_category_id: - - '8137' -- input: - product_category_id: vp-1-4-7-8 - output: - product_category_id: - - '8137' -- input: - product_category_id: vp-1-4-8 - output: - product_category_id: - - '908' -- input: - product_category_id: vp-1-4-9 - output: - product_category_id: - - '8227' -- input: - product_category_id: vp-1-4-9-1 - output: - product_category_id: - - '8227' -- input: - product_category_id: vp-1-4-9-2 - output: - product_category_id: - - '8227' -- input: - product_category_id: vp-1-4-9-3 - output: - product_category_id: - - '8227' -- input: - product_category_id: vp-1-4-9-4 - output: - product_category_id: - - '8227' -- input: - product_category_id: vp-1-4-9-5 - output: - product_category_id: - - '8227' -- input: - product_category_id: vp-1-4-9-6 - output: - product_category_id: - - '8227' -- input: - product_category_id: vp-1-4-9-7 - output: - product_category_id: - - '8227' -- input: - product_category_id: vp-1-4-9-8 - output: - product_category_id: - - '8227' - input: product_category_id: vp-1-5 output: @@ -50283,95 +50283,95 @@ rules: product_category_id: - '2667' - input: - product_category_id: vp-1-5-4-10 + product_category_id: vp-1-5-4-2 output: product_category_id: - - '7022' + - '2789' - input: - product_category_id: vp-1-5-4-11 + product_category_id: vp-1-5-4-3 output: product_category_id: - - '5994' + - '2588' - input: - product_category_id: vp-1-5-4-12 + product_category_id: vp-1-5-4-4 output: product_category_id: - - '8298' + - '2582' - input: - product_category_id: vp-1-5-4-13 + product_category_id: vp-1-5-4-5 output: product_category_id: - - '2248' + - '2722' - input: - product_category_id: vp-1-5-4-14 + product_category_id: vp-1-5-4-6 output: product_category_id: - - '7532' + - '8469' - input: - product_category_id: vp-1-5-4-15 + product_category_id: vp-1-5-4-7 output: product_category_id: - - '8478' + - '2652' - input: - product_category_id: vp-1-5-4-16 + product_category_id: vp-1-5-4-8 output: product_category_id: - - '8463' + - '5995' - input: - product_category_id: vp-1-5-4-17 + product_category_id: vp-1-5-4-9 output: product_category_id: - - '8142' + - '8145' - input: - product_category_id: vp-1-5-4-18 + product_category_id: vp-1-5-4-10 output: product_category_id: - - '8464' + - '7022' - input: - product_category_id: vp-1-5-4-19 + product_category_id: vp-1-5-4-11 output: product_category_id: - - '8202' + - '5994' - input: - product_category_id: vp-1-5-4-2 + product_category_id: vp-1-5-4-12 output: product_category_id: - - '2789' + - '8298' - input: - product_category_id: vp-1-5-4-3 + product_category_id: vp-1-5-4-13 output: product_category_id: - - '2588' + - '2248' - input: - product_category_id: vp-1-5-4-4 + product_category_id: vp-1-5-4-14 output: product_category_id: - - '2582' + - '7532' - input: - product_category_id: vp-1-5-4-5 + product_category_id: vp-1-5-4-15 output: product_category_id: - - '2722' + - '8478' - input: - product_category_id: vp-1-5-4-6 + product_category_id: vp-1-5-4-16 output: product_category_id: - - '8469' + - '8463' - input: - product_category_id: vp-1-5-4-7 + product_category_id: vp-1-5-4-17 output: product_category_id: - - '2652' + - '8142' - input: - product_category_id: vp-1-5-4-8 + product_category_id: vp-1-5-4-18 output: product_category_id: - - '5995' + - '8464' - input: - product_category_id: vp-1-5-4-9 + product_category_id: vp-1-5-4-19 output: product_category_id: - - '8145' + - '8202' - input: product_category_id: vp-1-5-5 output: @@ -50382,21 +50382,6 @@ rules: output: product_category_id: - '2635' -- input: - product_category_id: vp-1-5-5-10 - output: - product_category_id: - - '2513' -- input: - product_category_id: vp-1-5-5-11 - output: - product_category_id: - - '2688' -- input: - product_category_id: vp-1-5-5-12 - output: - product_category_id: - - '2943' - input: product_category_id: vp-1-5-5-2 output: @@ -50487,6 +50472,21 @@ rules: output: product_category_id: - '2770' +- input: + product_category_id: vp-1-5-5-10 + output: + product_category_id: + - '2513' +- input: + product_category_id: vp-1-5-5-11 + output: + product_category_id: + - '2688' +- input: + product_category_id: vp-1-5-5-12 + output: + product_category_id: + - '2943' - input: product_category_id: vp-1-5-6 output: @@ -50512,11 +50512,6 @@ rules: output: product_category_id: - '8260' -- input: - product_category_id: vp-1-5-7-10 - output: - product_category_id: - - '2647' - input: product_category_id: vp-1-5-7-2 output: @@ -50592,6 +50587,11 @@ rules: output: product_category_id: - '8261' +- input: + product_category_id: vp-1-5-7-10 + output: + product_category_id: + - '2647' - input: product_category_id: vp-1-6 output: @@ -50607,11 +50607,6 @@ rules: output: product_category_id: - '5959' -- input: - product_category_id: vp-1-6-1-10 - output: - product_category_id: - - '5961' - input: product_category_id: vp-1-6-1-2 output: @@ -50677,6 +50672,11 @@ rules: output: product_category_id: - '5962' +- input: + product_category_id: vp-1-6-1-10 + output: + product_category_id: + - '5961' - input: product_category_id: vp-1-6-2 output: @@ -50762,11 +50762,6 @@ rules: output: product_category_id: - '8447' -- input: - product_category_id: vp-1-6-4-10 - output: - product_category_id: - - '8506' - input: product_category_id: vp-1-6-4-2 output: @@ -50807,6 +50802,11 @@ rules: output: product_category_id: - '6966' +- input: + product_category_id: vp-1-6-4-10 + output: + product_category_id: + - '8506' - input: product_category_id: vp-1-7 output: