1
0.90 ms
SELECT
`name` ,
`base_class` AS baseClass ,
IF (`active` = 1 AND `installed_at` IS NOT NULL , 1 , 0 ) AS active ,
`path` ,
`version` ,
`autoload` ,
`managed_by_composer` AS managedByComposer ,
composer_name as composerName
FROM `plugin`
ORDER BY `installed_at` ;
SELECT
`name` ,
`base_class` AS baseClass ,
IF (`active` = 1 AND `installed_at` IS NOT NULL , 1 , 0 ) AS active ,
`path` ,
`version` ,
`autoload` ,
`managed_by_composer` AS managedByComposer ,
composer_name as composerName
FROM `plugin`
ORDER BY `installed_at` ; ;
Copy
2
0.24 ms
SELECT `key` , `value` FROM `app_config`
SELECT `key` , `value` FROM `app_config` ;
Copy
3
0.59 ms
SELECT custom_entity . name , custom_entity . fields , custom_entity . flags
FROM custom_entity
LEFT JOIN app ON app . id = custom_entity . app_id
WHERE (custom_entity . app_id IS NULL OR app . active = 1 ) AND custom_entity . deleted_at IS NULL ;
SELECT custom_entity . name , custom_entity . fields , custom_entity . flags
FROM custom_entity
LEFT JOIN app ON app . id = custom_entity . app_id
WHERE (custom_entity . app_id IS NULL OR app . active = 1 ) AND custom_entity . deleted_at IS NULL ;
;
Copy
4
1.42 ms
SELECT CONCAT (TRIM (TRAILING '/' FROM domain . url ), '/' ) `key` , CONCAT (TRIM (TRAILING '/' FROM domain . url ), '/' ) url , LOWER (HEX (domain . id )) id , LOWER (HEX (sales_channel . id )) salesChannelId , LOWER (HEX (sales_channel . type_id )) typeId , LOWER (HEX (domain . snippet_set_id )) snippetSetId , LOWER (HEX (domain . currency_id )) currencyId , LOWER (HEX (domain . language_id )) languageId , LOWER (HEX (theme . id )) themeId , sales_channel . maintenance maintenance , sales_channel . maintenance_ip_whitelist maintenanceIpWhitelist , snippet_set . iso as locale , theme . technical_name as themeName , parentTheme . technical_name as parentThemeName FROM sales_channel INNER JOIN sales_channel_domain domain ON domain . sales_channel_id = sales_channel . id LEFT JOIN theme_sales_channel theme_sales_channel ON sales_channel . id = theme_sales_channel . sales_channel_id INNER JOIN snippet_set snippet_set ON snippet_set . id = domain . snippet_set_id LEFT JOIN theme theme ON theme_sales_channel . theme_id = theme . id LEFT JOIN theme parentTheme ON theme . parent_theme_id = parentTheme . id WHERE (sales_channel . type_id = UNHEX (? )) AND (sales_channel . active )
Parameters :
[
"8a243080f92e4c719546314b577cf82b "
]
SELECT CONCAT (TRIM (TRAILING '/' FROM domain . url ), '/' ) `key` , CONCAT (TRIM (TRAILING '/' FROM domain . url ), '/' ) url , LOWER (HEX (domain . id )) id , LOWER (HEX (sales_channel . id )) salesChannelId , LOWER (HEX (sales_channel . type_id )) typeId , LOWER (HEX (domain . snippet_set_id )) snippetSetId , LOWER (HEX (domain . currency_id )) currencyId , LOWER (HEX (domain . language_id )) languageId , LOWER (HEX (theme . id )) themeId , sales_channel . maintenance maintenance , sales_channel . maintenance_ip_whitelist maintenanceIpWhitelist , snippet_set . iso as locale , theme . technical_name as themeName , parentTheme . technical_name as parentThemeName FROM sales_channel INNER JOIN sales_channel_domain domain ON domain . sales_channel_id = sales_channel . id LEFT JOIN theme_sales_channel theme_sales_channel ON sales_channel . id = theme_sales_channel . sales_channel_id INNER JOIN snippet_set snippet_set ON snippet_set . id = domain . snippet_set_id LEFT JOIN theme theme ON theme_sales_channel . theme_id = theme . id LEFT JOIN theme parentTheme ON theme . parent_theme_id = parentTheme . id WHERE (sales_channel . type_id = UNHEX ('8a243080f92e4c719546314b577cf82b' )) AND (sales_channel . active );
Copy
5
1.54 ms
SELECT id , path_info pathInfo , is_canonical isCanonical , sales_channel_id salesChannelId FROM seo_url WHERE (language_id = ? ) AND ((sales_channel_id = ? OR sales_channel_id IS NULL )) AND ((seo_path_info = ? OR seo_path_info = ? ))
Parameters :
[
b"\x02 0¨(çñA —O®8ͬÞÛ "
b">{k'Ô\x1E O‡!¼GnÏMj "
"Hersteller "
"Hersteller/ "
]
SELECT id , path_info pathInfo , is_canonical isCanonical , sales_channel_id salesChannelId FROM seo_url WHERE (language_id = 0x0230A828E7F14120974FAE38CDACDEDB ) AND ((sales_channel_id = 0x3E7B6B27D41E4F87AD21BC476ECF4D6A OR sales_channel_id IS NULL )) AND ((seo_path_info = 'Hersteller' OR seo_path_info = 'Hersteller/' ));
Copy
6
2.57 ms
SELECT configuration_key , configuration_value FROM system_config WHERE sales_channel_id IS NULL ORDER BY sales_channel_id ASC
SELECT configuration_key , configuration_value FROM system_config WHERE sales_channel_id IS NULL ORDER BY sales_channel_id ASC ;
Copy
7
0.26 ms
SELECT `name` , `path` , `author` , `self_managed`
FROM `app`
WHERE `active` = 1
SELECT `name` , `path` , `author` , `self_managed`
FROM `app`
WHERE `active` = 1
;
Copy
8
0.74 ms
SELECT * FROM sales_channel_api_context WHERE (sales_channel_id = ? ) AND (token = ? ) LIMIT 1
Parameters :
[
b">{k'Ô\x1E O‡!¼GnÏMj "
"dhy7lVXuw8dWjgQ6QKQ7so6fqgg8AS3H "
]
SELECT * FROM sales_channel_api_context WHERE (sales_channel_id = 0x3E7B6B27D41E4F87AD21BC476ECF4D6A ) AND (token = 'dhy7lVXuw8dWjgQ6QKQ7so6fqgg8AS3H' ) LIMIT 1 ;
Copy
9
0.70 ms
SELECT
sales_channel . id as sales_channel_id ,
sales_channel . language_id as sales_channel_default_language_id ,
sales_channel . currency_id as sales_channel_currency_id ,
currency . factor as sales_channel_currency_factor ,
GROUP_CONCAT (LOWER (HEX (sales_channel_language . language_id ))) as sales_channel_language_ids
FROM sales_channel
INNER JOIN currency
ON sales_channel . currency_id = currency . id
LEFT JOIN sales_channel_language
ON sales_channel_language . sales_channel_id = sales_channel . id
WHERE sales_channel . id = ?
GROUP BY sales_channel . id , sales_channel . language_id , sales_channel . currency_id , currency . factor
Parameters :
[
b">{k'Ô\x1E O‡!¼GnÏMj "
]
SELECT
sales_channel . id as sales_channel_id ,
sales_channel . language_id as sales_channel_default_language_id ,
sales_channel . currency_id as sales_channel_currency_id ,
currency . factor as sales_channel_currency_factor ,
GROUP_CONCAT (LOWER (HEX (sales_channel_language . language_id ))) as sales_channel_language_ids
FROM sales_channel
INNER JOIN currency
ON sales_channel . currency_id = currency . id
LEFT JOIN sales_channel_language
ON sales_channel_language . sales_channel_id = sales_channel . id
WHERE sales_channel . id = 0x3E7B6B27D41E4F87AD21BC476ECF4D6A
GROUP BY sales_channel . id , sales_channel . language_id , sales_channel . currency_id , currency . factor ;
Copy
10
1.43 ms
SELECT `sales_channel` . `id` as `sales_channel.id` , `sales_channel` . `type_id` as `sales_channel.typeId` , `sales_channel` . `language_id` as `sales_channel.languageId` , `sales_channel` . `customer_group_id` as `sales_channel.customerGroupId` , `sales_channel` . `currency_id` as `sales_channel.currencyId` , `sales_channel` . `payment_method_id` as `sales_channel.paymentMethodId` , `sales_channel` . `shipping_method_id` as `sales_channel.shippingMethodId` , `sales_channel` . `country_id` as `sales_channel.countryId` , `sales_channel` . `analytics_id` as `sales_channel.analyticsId` , `sales_channel` . `navigation_category_id` as `sales_channel.navigationCategoryId` , `sales_channel` . `navigation_category_version_id` as `sales_channel.navigationCategoryVersionId` , `sales_channel` . `navigation_category_depth` as `sales_channel.navigationCategoryDepth` , `sales_channel` . `footer_category_id` as `sales_channel.footerCategoryId` , `sales_channel` . `footer_category_version_id` as `sales_channel.footerCategoryVersionId` , `sales_channel` . `service_category_id` as `sales_channel.serviceCategoryId` , `sales_channel` . `service_category_version_id` as `sales_channel.serviceCategoryVersionId` , `sales_channel` . `mail_header_footer_id` as `sales_channel.mailHeaderFooterId` , `sales_channel` . `hreflang_default_domain_id` as `sales_channel.hreflangDefaultDomainId` , `sales_channel` . `short_name` as `sales_channel.shortName` , `sales_channel` . `tax_calculation_type` as `sales_channel.taxCalculationType` , `sales_channel` . `access_key` as `sales_channel.accessKey` , `sales_channel` . `configuration` as `sales_channel.configuration` , `sales_channel` . `active` as `sales_channel.active` , `sales_channel` . `hreflang_active` as `sales_channel.hreflangActive` , `sales_channel` . `maintenance` as `sales_channel.maintenance` , `sales_channel` . `maintenance_ip_whitelist` as `sales_channel.maintenanceIpWhitelist` , `sales_channel` . `payment_method_ids` as `sales_channel.paymentMethodIds` , `sales_channel` . `home_cms_page_id` as `sales_channel.homeCmsPageId` , `sales_channel` . `home_cms_page_version_id` as `sales_channel.homeCmsPageVersionId` , `sales_channel` . `created_at` as `sales_channel.createdAt` , `sales_channel` . `updated_at` as `sales_channel.updatedAt` , `sales_channel.currency` . `id` as `sales_channel.currency.id` , `sales_channel.currency` . `factor` as `sales_channel.currency.factor` , `sales_channel.currency` . `symbol` as `sales_channel.currency.symbol` , `sales_channel.currency` . `iso_code` as `sales_channel.currency.isoCode` , `sales_channel.currency` . `position` as `sales_channel.currency.position` , `sales_channel.currency` . `tax_free_from` as `sales_channel.currency.taxFreeFrom` , `sales_channel.currency` . `item_rounding` as `sales_channel.currency.itemRounding` , `sales_channel.currency` . `total_rounding` as `sales_channel.currency.totalRounding` , `sales_channel.currency` . `created_at` as `sales_channel.currency.createdAt` , `sales_channel.currency` . `updated_at` as `sales_channel.currency.updatedAt` , `sales_channel.currency.translation.shortName` , `sales_channel.currency.translation.shortName` as `sales_channel.currency.shortName` , `sales_channel.currency.translation.name` , `sales_channel.currency.translation.name` as `sales_channel.currency.name` , `sales_channel.currency.translation.customFields` , `sales_channel.currency.translation.customFields` as `sales_channel.currency.customFields` , `sales_channel.translation.name` , `sales_channel.translation.name` as `sales_channel.name` , `sales_channel.translation.homeSlotConfig` , `sales_channel.translation.homeSlotConfig` as `sales_channel.homeSlotConfig` , `sales_channel.translation.homeEnabled` , `sales_channel.translation.homeEnabled` as `sales_channel.homeEnabled` , `sales_channel.translation.homeName` , `sales_channel.translation.homeName` as `sales_channel.homeName` , `sales_channel.translation.homeMetaTitle` , `sales_channel.translation.homeMetaTitle` as `sales_channel.homeMetaTitle` , `sales_channel.translation.homeMetaDescription` , `sales_channel.translation.homeMetaDescription` as `sales_channel.homeMetaDescription` , `sales_channel.translation.homeKeywords` , `sales_channel.translation.homeKeywords` as `sales_channel.homeKeywords` , `sales_channel.translation.customFields` , `sales_channel.translation.customFields` as `sales_channel.customFields` FROM `sales_channel` LEFT JOIN `currency` `sales_channel.currency` ON `sales_channel` . `currency_id` = `sales_channel.currency` . `id` LEFT JOIN (SELECT `sales_channel.translation` . `sales_channel_id` , `sales_channel.translation` . `name` as `sales_channel.translation.name` , `sales_channel.translation` . `custom_fields` as `sales_channel.translation.customFields` , `sales_channel.translation` . `home_slot_config` as `sales_channel.translation.homeSlotConfig` , `sales_channel.translation` . `home_enabled` as `sales_channel.translation.homeEnabled` , `sales_channel.translation` . `home_name` as `sales_channel.translation.homeName` , `sales_channel.translation` . `home_meta_title` as `sales_channel.translation.homeMetaTitle` , `sales_channel.translation` . `home_meta_description` as `sales_channel.translation.homeMetaDescription` , `sales_channel.translation` . `home_keywords` as `sales_channel.translation.homeKeywords` FROM `sales_channel_translation` `sales_channel.translation` WHERE `sales_channel.translation` . `language_id` = ? ) `sales_channel.sales_channel_translation` ON `sales_channel.sales_channel_translation` . `sales_channel_id` = `sales_channel` . `id` LEFT JOIN (SELECT `sales_channel.currency.translation` . `currency_id` , `sales_channel.currency.translation` . `short_name` as `sales_channel.currency.translation.shortName` , `sales_channel.currency.translation` . `name` as `sales_channel.currency.translation.name` , `sales_channel.currency.translation` . `custom_fields` as `sales_channel.currency.translation.customFields` FROM `currency_translation` `sales_channel.currency.translation` WHERE `sales_channel.currency.translation` . `language_id` = ? ) `sales_channel.currency.currency_translation` ON `sales_channel.currency.currency_translation` . `currency_id` = `sales_channel.currency` . `id` WHERE `sales_channel` . `id` IN (? )
Parameters :
[
b"\x02 0¨(çñA —O®8ͬÞÛ "
b"\x02 0¨(çñA —O®8ͬÞÛ "
b">{k'Ô\x1E O‡!¼GnÏMj "
]
SELECT
`sales_channel` . `id` as `sales_channel.id` ,
`sales_channel` . `type_id` as `sales_channel.typeId` ,
`sales_channel` . `language_id` as `sales_channel.languageId` ,
`sales_channel` . `customer_group_id` as `sales_channel.customerGroupId` ,
`sales_channel` . `currency_id` as `sales_channel.currencyId` ,
`sales_channel` . `payment_method_id` as `sales_channel.paymentMethodId` ,
`sales_channel` . `shipping_method_id` as `sales_channel.shippingMethodId` ,
`sales_channel` . `country_id` as `sales_channel.countryId` ,
`sales_channel` . `analytics_id` as `sales_channel.analyticsId` ,
`sales_channel` . `navigation_category_id` as `sales_channel.navigationCategoryId` ,
`sales_channel` . `navigation_category_version_id` as `sales_channel.navigationCategoryVersionId` ,
`sales_channel` . `navigation_category_depth` as `sales_channel.navigationCategoryDepth` ,
`sales_channel` . `footer_category_id` as `sales_channel.footerCategoryId` ,
`sales_channel` . `footer_category_version_id` as `sales_channel.footerCategoryVersionId` ,
`sales_channel` . `service_category_id` as `sales_channel.serviceCategoryId` ,
`sales_channel` . `service_category_version_id` as `sales_channel.serviceCategoryVersionId` ,
`sales_channel` . `mail_header_footer_id` as `sales_channel.mailHeaderFooterId` ,
`sales_channel` . `hreflang_default_domain_id` as `sales_channel.hreflangDefaultDomainId` ,
`sales_channel` . `short_name` as `sales_channel.shortName` ,
`sales_channel` . `tax_calculation_type` as `sales_channel.taxCalculationType` ,
`sales_channel` . `access_key` as `sales_channel.accessKey` ,
`sales_channel` . `configuration` as `sales_channel.configuration` ,
`sales_channel` . `active` as `sales_channel.active` ,
`sales_channel` . `hreflang_active` as `sales_channel.hreflangActive` ,
`sales_channel` . `maintenance` as `sales_channel.maintenance` ,
`sales_channel` . `maintenance_ip_whitelist` as `sales_channel.maintenanceIpWhitelist` ,
`sales_channel` . `payment_method_ids` as `sales_channel.paymentMethodIds` ,
`sales_channel` . `home_cms_page_id` as `sales_channel.homeCmsPageId` ,
`sales_channel` . `home_cms_page_version_id` as `sales_channel.homeCmsPageVersionId` ,
`sales_channel` . `created_at` as `sales_channel.createdAt` ,
`sales_channel` . `updated_at` as `sales_channel.updatedAt` ,
`sales_channel.currency` . `id` as `sales_channel.currency.id` ,
`sales_channel.currency` . `factor` as `sales_channel.currency.factor` ,
`sales_channel.currency` . `symbol` as `sales_channel.currency.symbol` ,
`sales_channel.currency` . `iso_code` as `sales_channel.currency.isoCode` ,
`sales_channel.currency` . `position` as `sales_channel.currency.position` ,
`sales_channel.currency` . `tax_free_from` as `sales_channel.currency.taxFreeFrom` ,
`sales_channel.currency` . `item_rounding` as `sales_channel.currency.itemRounding` ,
`sales_channel.currency` . `total_rounding` as `sales_channel.currency.totalRounding` ,
`sales_channel.currency` . `created_at` as `sales_channel.currency.createdAt` ,
`sales_channel.currency` . `updated_at` as `sales_channel.currency.updatedAt` ,
`sales_channel.currency.translation.shortName` ,
`sales_channel.currency.translation.shortName` as `sales_channel.currency.shortName` ,
`sales_channel.currency.translation.name` ,
`sales_channel.currency.translation.name` as `sales_channel.currency.name` ,
`sales_channel.currency.translation.customFields` ,
`sales_channel.currency.translation.customFields` as `sales_channel.currency.customFields` ,
`sales_channel.translation.name` ,
`sales_channel.translation.name` as `sales_channel.name` ,
`sales_channel.translation.homeSlotConfig` ,
`sales_channel.translation.homeSlotConfig` as `sales_channel.homeSlotConfig` ,
`sales_channel.translation.homeEnabled` ,
`sales_channel.translation.homeEnabled` as `sales_channel.homeEnabled` ,
`sales_channel.translation.homeName` ,
`sales_channel.translation.homeName` as `sales_channel.homeName` ,
`sales_channel.translation.homeMetaTitle` ,
`sales_channel.translation.homeMetaTitle` as `sales_channel.homeMetaTitle` ,
`sales_channel.translation.homeMetaDescription` ,
`sales_channel.translation.homeMetaDescription` as `sales_channel.homeMetaDescription` ,
`sales_channel.translation.homeKeywords` ,
`sales_channel.translation.homeKeywords` as `sales_channel.homeKeywords` ,
`sales_channel.translation.customFields` ,
`sales_channel.translation.customFields` as `sales_channel.customFields`
FROM
`sales_channel`
LEFT JOIN `currency` `sales_channel.currency` ON `sales_channel` . `currency_id` = `sales_channel.currency` . `id`
LEFT JOIN (
SELECT
`sales_channel.translation` . `sales_channel_id` ,
`sales_channel.translation` . `name` as `sales_channel.translation.name` ,
`sales_channel.translation` . `custom_fields` as `sales_channel.translation.customFields` ,
`sales_channel.translation` . `home_slot_config` as `sales_channel.translation.homeSlotConfig` ,
`sales_channel.translation` . `home_enabled` as `sales_channel.translation.homeEnabled` ,
`sales_channel.translation` . `home_name` as `sales_channel.translation.homeName` ,
`sales_channel.translation` . `home_meta_title` as `sales_channel.translation.homeMetaTitle` ,
`sales_channel.translation` . `home_meta_description` as `sales_channel.translation.homeMetaDescription` ,
`sales_channel.translation` . `home_keywords` as `sales_channel.translation.homeKeywords`
FROM
`sales_channel_translation` `sales_channel.translation`
WHERE
`sales_channel.translation` . `language_id` = ?
) `sales_channel.sales_channel_translation` ON `sales_channel.sales_channel_translation` . `sales_channel_id` = `sales_channel` . `id`
LEFT JOIN (
SELECT
`sales_channel.currency.translation` . `currency_id` ,
`sales_channel.currency.translation` . `short_name` as `sales_channel.currency.translation.shortName` ,
`sales_channel.currency.translation` . `name` as `sales_channel.currency.translation.name` ,
`sales_channel.currency.translation` . `custom_fields` as `sales_channel.currency.translation.customFields`
FROM
`currency_translation` `sales_channel.currency.translation`
WHERE
`sales_channel.currency.translation` . `language_id` = ?
) `sales_channel.currency.currency_translation` ON `sales_channel.currency.currency_translation` . `currency_id` = `sales_channel.currency` . `id`
WHERE
`sales_channel` . `id` IN (? )
Copy
SELECT `sales_channel` . `id` as `sales_channel.id` , `sales_channel` . `type_id` as `sales_channel.typeId` , `sales_channel` . `language_id` as `sales_channel.languageId` , `sales_channel` . `customer_group_id` as `sales_channel.customerGroupId` , `sales_channel` . `currency_id` as `sales_channel.currencyId` , `sales_channel` . `payment_method_id` as `sales_channel.paymentMethodId` , `sales_channel` . `shipping_method_id` as `sales_channel.shippingMethodId` , `sales_channel` . `country_id` as `sales_channel.countryId` , `sales_channel` . `analytics_id` as `sales_channel.analyticsId` , `sales_channel` . `navigation_category_id` as `sales_channel.navigationCategoryId` , `sales_channel` . `navigation_category_version_id` as `sales_channel.navigationCategoryVersionId` , `sales_channel` . `navigation_category_depth` as `sales_channel.navigationCategoryDepth` , `sales_channel` . `footer_category_id` as `sales_channel.footerCategoryId` , `sales_channel` . `footer_category_version_id` as `sales_channel.footerCategoryVersionId` , `sales_channel` . `service_category_id` as `sales_channel.serviceCategoryId` , `sales_channel` . `service_category_version_id` as `sales_channel.serviceCategoryVersionId` , `sales_channel` . `mail_header_footer_id` as `sales_channel.mailHeaderFooterId` , `sales_channel` . `hreflang_default_domain_id` as `sales_channel.hreflangDefaultDomainId` , `sales_channel` . `short_name` as `sales_channel.shortName` , `sales_channel` . `tax_calculation_type` as `sales_channel.taxCalculationType` , `sales_channel` . `access_key` as `sales_channel.accessKey` , `sales_channel` . `configuration` as `sales_channel.configuration` , `sales_channel` . `active` as `sales_channel.active` , `sales_channel` . `hreflang_active` as `sales_channel.hreflangActive` , `sales_channel` . `maintenance` as `sales_channel.maintenance` , `sales_channel` . `maintenance_ip_whitelist` as `sales_channel.maintenanceIpWhitelist` , `sales_channel` . `payment_method_ids` as `sales_channel.paymentMethodIds` , `sales_channel` . `home_cms_page_id` as `sales_channel.homeCmsPageId` , `sales_channel` . `home_cms_page_version_id` as `sales_channel.homeCmsPageVersionId` , `sales_channel` . `created_at` as `sales_channel.createdAt` , `sales_channel` . `updated_at` as `sales_channel.updatedAt` , `sales_channel.currency` . `id` as `sales_channel.currency.id` , `sales_channel.currency` . `factor` as `sales_channel.currency.factor` , `sales_channel.currency` . `symbol` as `sales_channel.currency.symbol` , `sales_channel.currency` . `iso_code` as `sales_channel.currency.isoCode` , `sales_channel.currency` . `position` as `sales_channel.currency.position` , `sales_channel.currency` . `tax_free_from` as `sales_channel.currency.taxFreeFrom` , `sales_channel.currency` . `item_rounding` as `sales_channel.currency.itemRounding` , `sales_channel.currency` . `total_rounding` as `sales_channel.currency.totalRounding` , `sales_channel.currency` . `created_at` as `sales_channel.currency.createdAt` , `sales_channel.currency` . `updated_at` as `sales_channel.currency.updatedAt` , `sales_channel.currency.translation.shortName` , `sales_channel.currency.translation.shortName` as `sales_channel.currency.shortName` , `sales_channel.currency.translation.name` , `sales_channel.currency.translation.name` as `sales_channel.currency.name` , `sales_channel.currency.translation.customFields` , `sales_channel.currency.translation.customFields` as `sales_channel.currency.customFields` , `sales_channel.translation.name` , `sales_channel.translation.name` as `sales_channel.name` , `sales_channel.translation.homeSlotConfig` , `sales_channel.translation.homeSlotConfig` as `sales_channel.homeSlotConfig` , `sales_channel.translation.homeEnabled` , `sales_channel.translation.homeEnabled` as `sales_channel.homeEnabled` , `sales_channel.translation.homeName` , `sales_channel.translation.homeName` as `sales_channel.homeName` , `sales_channel.translation.homeMetaTitle` , `sales_channel.translation.homeMetaTitle` as `sales_channel.homeMetaTitle` , `sales_channel.translation.homeMetaDescription` , `sales_channel.translation.homeMetaDescription` as `sales_channel.homeMetaDescription` , `sales_channel.translation.homeKeywords` , `sales_channel.translation.homeKeywords` as `sales_channel.homeKeywords` , `sales_channel.translation.customFields` , `sales_channel.translation.customFields` as `sales_channel.customFields` FROM `sales_channel` LEFT JOIN `currency` `sales_channel.currency` ON `sales_channel` . `currency_id` = `sales_channel.currency` . `id` LEFT JOIN (SELECT `sales_channel.translation` . `sales_channel_id` , `sales_channel.translation` . `name` as `sales_channel.translation.name` , `sales_channel.translation` . `custom_fields` as `sales_channel.translation.customFields` , `sales_channel.translation` . `home_slot_config` as `sales_channel.translation.homeSlotConfig` , `sales_channel.translation` . `home_enabled` as `sales_channel.translation.homeEnabled` , `sales_channel.translation` . `home_name` as `sales_channel.translation.homeName` , `sales_channel.translation` . `home_meta_title` as `sales_channel.translation.homeMetaTitle` , `sales_channel.translation` . `home_meta_description` as `sales_channel.translation.homeMetaDescription` , `sales_channel.translation` . `home_keywords` as `sales_channel.translation.homeKeywords` FROM `sales_channel_translation` `sales_channel.translation` WHERE `sales_channel.translation` . `language_id` = 0x0230A828E7F14120974FAE38CDACDEDB ) `sales_channel.sales_channel_translation` ON `sales_channel.sales_channel_translation` . `sales_channel_id` = `sales_channel` . `id` LEFT JOIN (SELECT `sales_channel.currency.translation` . `currency_id` , `sales_channel.currency.translation` . `short_name` as `sales_channel.currency.translation.shortName` , `sales_channel.currency.translation` . `name` as `sales_channel.currency.translation.name` , `sales_channel.currency.translation` . `custom_fields` as `sales_channel.currency.translation.customFields` FROM `currency_translation` `sales_channel.currency.translation` WHERE `sales_channel.currency.translation` . `language_id` = 0x0230A828E7F14120974FAE38CDACDEDB ) `sales_channel.currency.currency_translation` ON `sales_channel.currency.currency_translation` . `currency_id` = `sales_channel.currency` . `id` WHERE `sales_channel` . `id` IN (0x3E7B6B27D41E4F87AD21BC476ECF4D6A );
Copy
11
0.54 ms
SELECT `sales_channel_domain` . `id` as `sales_channel_domain.id` , `sales_channel_domain` . `url` as `sales_channel_domain.url` , `sales_channel_domain` . `sales_channel_id` as `sales_channel_domain.salesChannelId` , `sales_channel_domain` . `language_id` as `sales_channel_domain.languageId` , `sales_channel_domain` . `currency_id` as `sales_channel_domain.currencyId` , `sales_channel_domain` . `snippet_set_id` as `sales_channel_domain.snippetSetId` , `sales_channel_domain` . `hreflang_use_only_locale` as `sales_channel_domain.hreflangUseOnlyLocale` , `sales_channel_domain` . `custom_fields` as `sales_channel_domain.customFields` , `sales_channel_domain` . `created_at` as `sales_channel_domain.createdAt` , `sales_channel_domain` . `updated_at` as `sales_channel_domain.updatedAt` FROM `sales_channel_domain` WHERE ((`sales_channel_domain` . `sales_channel_id` IN (? )))
Parameters :
[
b">{k'Ô\x1E O‡!¼GnÏMj "
]
SELECT `sales_channel_domain` . `id` as `sales_channel_domain.id` , `sales_channel_domain` . `url` as `sales_channel_domain.url` , `sales_channel_domain` . `sales_channel_id` as `sales_channel_domain.salesChannelId` , `sales_channel_domain` . `language_id` as `sales_channel_domain.languageId` , `sales_channel_domain` . `currency_id` as `sales_channel_domain.currencyId` , `sales_channel_domain` . `snippet_set_id` as `sales_channel_domain.snippetSetId` , `sales_channel_domain` . `hreflang_use_only_locale` as `sales_channel_domain.hreflangUseOnlyLocale` , `sales_channel_domain` . `custom_fields` as `sales_channel_domain.customFields` , `sales_channel_domain` . `created_at` as `sales_channel_domain.createdAt` , `sales_channel_domain` . `updated_at` as `sales_channel_domain.updatedAt` FROM `sales_channel_domain` WHERE ((`sales_channel_domain` . `sales_channel_id` IN (0x3E7B6B27D41E4F87AD21BC476ECF4D6A )));
Copy
12
0.43 ms
SELECT LOWER (HEX (`language.salesChannels.mapping` . `sales_channel_id` )) as `key` , GROUP_CONCAT (LOWER (HEX (`language.salesChannels.mapping` . `language_id` )) ) as `value` FROM `language` LEFT JOIN `sales_channel_language` `language.salesChannels.mapping` ON `language.salesChannels.mapping` . `language_id` = `language` . id WHERE ((`language` . `id` = ? )) AND (`language.salesChannels.mapping` . `sales_channel_id` IN (? )) GROUP BY `language.salesChannels.mapping` . `sales_channel_id`
Parameters :
[
b"\x02 0¨(çñA —O®8ͬÞÛ "
b">{k'Ô\x1E O‡!¼GnÏMj "
]
SELECT LOWER (HEX (`language.salesChannels.mapping` . `sales_channel_id` )) as `key` , GROUP_CONCAT (LOWER (HEX (`language.salesChannels.mapping` . `language_id` )) ) as `value` FROM `language` LEFT JOIN `sales_channel_language` `language.salesChannels.mapping` ON `language.salesChannels.mapping` . `language_id` = `language` . id WHERE ((`language` . `id` = 0x0230A828E7F14120974FAE38CDACDEDB )) AND (`language.salesChannels.mapping` . `sales_channel_id` IN (0x3E7B6B27D41E4F87AD21BC476ECF4D6A )) GROUP BY `language.salesChannels.mapping` . `sales_channel_id` ;
Copy
13
1.02 ms
SELECT `language` . `id` as `language.id` , `language` . `parent_id` as `language.parentId` , `language` . `locale_id` as `language.localeId` , `language` . `translation_code_id` as `language.translationCodeId` , `language` . `name` as `language.name` , `language` . `custom_fields` as `language.customFields` , `language` . `created_at` as `language.createdAt` , `language` . `updated_at` as `language.updatedAt` , `language.translationCode` . `id` as `language.translationCode.id` , `language.translationCode` . `code` as `language.translationCode.code` , `language.translationCode` . `created_at` as `language.translationCode.createdAt` , `language.translationCode` . `updated_at` as `language.translationCode.updatedAt` , `language.translationCode.translation.name` , `language.translationCode.translation.name` as `language.translationCode.name` , `language.translationCode.translation.territory` , `language.translationCode.translation.territory` as `language.translationCode.territory` , `language.translationCode.translation.customFields` , `language.translationCode.translation.customFields` as `language.translationCode.customFields` , `language.locale` . `id` as `language.locale.id` , `language.locale` . `code` as `language.locale.code` , `language.locale` . `created_at` as `language.locale.createdAt` , `language.locale` . `updated_at` as `language.locale.updatedAt` , `language.locale.translation.name` , `language.locale.translation.name` as `language.locale.name` , `language.locale.translation.territory` , `language.locale.translation.territory` as `language.locale.territory` , `language.locale.translation.customFields` , `language.locale.translation.customFields` as `language.locale.customFields` FROM `language` LEFT JOIN `locale` `language.translationCode` ON `language` . `translation_code_id` = `language.translationCode` . `id` LEFT JOIN `locale` `language.locale` ON `language` . `locale_id` = `language.locale` . `id` LEFT JOIN (SELECT `language.translationCode.translation` . `locale_id` , `language.translationCode.translation` . `name` as `language.translationCode.translation.name` , `language.translationCode.translation` . `territory` as `language.translationCode.translation.territory` , `language.translationCode.translation` . `custom_fields` as `language.translationCode.translation.customFields` FROM `locale_translation` `language.translationCode.translation` WHERE `language.translationCode.translation` . `language_id` = ? ) `language.translationCode.locale_translation` ON `language.translationCode.locale_translation` . `locale_id` = `language.translationCode` . `id` LEFT JOIN (SELECT `language.locale.translation` . `locale_id` , `language.locale.translation` . `name` as `language.locale.translation.name` , `language.locale.translation` . `territory` as `language.locale.translation.territory` , `language.locale.translation` . `custom_fields` as `language.locale.translation.customFields` FROM `locale_translation` `language.locale.translation` WHERE `language.locale.translation` . `language_id` = ? ) `language.locale.locale_translation` ON `language.locale.locale_translation` . `locale_id` = `language.locale` . `id` WHERE ((`language` . `id` = ? )) AND (`language` . `id` IN (? ))
Parameters :
[
b"\x02 0¨(çñA —O®8ͬÞÛ "
b"\x02 0¨(çñA —O®8ͬÞÛ "
b"\x02 0¨(çñA —O®8ͬÞÛ "
b"\x02 0¨(çñA —O®8ͬÞÛ "
]
SELECT `language` . `id` as `language.id` , `language` . `parent_id` as `language.parentId` , `language` . `locale_id` as `language.localeId` , `language` . `translation_code_id` as `language.translationCodeId` , `language` . `name` as `language.name` , `language` . `custom_fields` as `language.customFields` , `language` . `created_at` as `language.createdAt` , `language` . `updated_at` as `language.updatedAt` , `language.translationCode` . `id` as `language.translationCode.id` , `language.translationCode` . `code` as `language.translationCode.code` , `language.translationCode` . `created_at` as `language.translationCode.createdAt` , `language.translationCode` . `updated_at` as `language.translationCode.updatedAt` , `language.translationCode.translation.name` , `language.translationCode.translation.name` as `language.translationCode.name` , `language.translationCode.translation.territory` , `language.translationCode.translation.territory` as `language.translationCode.territory` , `language.translationCode.translation.customFields` , `language.translationCode.translation.customFields` as `language.translationCode.customFields` , `language.locale` . `id` as `language.locale.id` , `language.locale` . `code` as `language.locale.code` , `language.locale` . `created_at` as `language.locale.createdAt` , `language.locale` . `updated_at` as `language.locale.updatedAt` , `language.locale.translation.name` , `language.locale.translation.name` as `language.locale.name` , `language.locale.translation.territory` , `language.locale.translation.territory` as `language.locale.territory` , `language.locale.translation.customFields` , `language.locale.translation.customFields` as `language.locale.customFields` FROM `language` LEFT JOIN `locale` `language.translationCode` ON `language` . `translation_code_id` = `language.translationCode` . `id` LEFT JOIN `locale` `language.locale` ON `language` . `locale_id` = `language.locale` . `id` LEFT JOIN (SELECT `language.translationCode.translation` . `locale_id` , `language.translationCode.translation` . `name` as `language.translationCode.translation.name` , `language.translationCode.translation` . `territory` as `language.translationCode.translation.territory` , `language.translationCode.translation` . `custom_fields` as `language.translationCode.translation.customFields` FROM `locale_translation` `language.translationCode.translation` WHERE `language.translationCode.translation` . `language_id` = 0x0230A828E7F14120974FAE38CDACDEDB ) `language.translationCode.locale_translation` ON `language.translationCode.locale_translation` . `locale_id` = `language.translationCode` . `id` LEFT JOIN (SELECT `language.locale.translation` . `locale_id` , `language.locale.translation` . `name` as `language.locale.translation.name` , `language.locale.translation` . `territory` as `language.locale.translation.territory` , `language.locale.translation` . `custom_fields` as `language.locale.translation.customFields` FROM `locale_translation` `language.locale.translation` WHERE `language.locale.translation` . `language_id` = 0x0230A828E7F14120974FAE38CDACDEDB ) `language.locale.locale_translation` ON `language.locale.locale_translation` . `locale_id` = `language.locale` . `id` WHERE ((`language` . `id` = 0x0230A828E7F14120974FAE38CDACDEDB )) AND (`language` . `id` IN (0x0230A828E7F14120974FAE38CDACDEDB ));
Copy
14
0.65 ms
SELECT `currency` . `id` as `currency.id` , `currency` . `factor` as `currency.factor` , `currency` . `symbol` as `currency.symbol` , `currency` . `iso_code` as `currency.isoCode` , `currency` . `position` as `currency.position` , `currency` . `tax_free_from` as `currency.taxFreeFrom` , `currency` . `item_rounding` as `currency.itemRounding` , `currency` . `total_rounding` as `currency.totalRounding` , `currency` . `created_at` as `currency.createdAt` , `currency` . `updated_at` as `currency.updatedAt` , `currency.translation.shortName` , `currency.translation.shortName` as `currency.shortName` , `currency.translation.name` , `currency.translation.name` as `currency.name` , `currency.translation.customFields` , `currency.translation.customFields` as `currency.customFields` FROM `currency` LEFT JOIN (SELECT `currency.translation` . `currency_id` , `currency.translation` . `short_name` as `currency.translation.shortName` , `currency.translation` . `name` as `currency.translation.name` , `currency.translation` . `custom_fields` as `currency.translation.customFields` FROM `currency_translation` `currency.translation` WHERE `currency.translation` . `language_id` = ? ) `currency.currency_translation` ON `currency.currency_translation` . `currency_id` = `currency` . `id` WHERE `currency` . `id` IN (? )
Parameters :
[
b"\x02 0¨(çñA —O®8ͬÞÛ "
b"·ÒUK\f èGÍ‚ó¬›ÑÀßÊ "
]
SELECT `currency` . `id` as `currency.id` , `currency` . `factor` as `currency.factor` , `currency` . `symbol` as `currency.symbol` , `currency` . `iso_code` as `currency.isoCode` , `currency` . `position` as `currency.position` , `currency` . `tax_free_from` as `currency.taxFreeFrom` , `currency` . `item_rounding` as `currency.itemRounding` , `currency` . `total_rounding` as `currency.totalRounding` , `currency` . `created_at` as `currency.createdAt` , `currency` . `updated_at` as `currency.updatedAt` , `currency.translation.shortName` , `currency.translation.shortName` as `currency.shortName` , `currency.translation.name` , `currency.translation.name` as `currency.name` , `currency.translation.customFields` , `currency.translation.customFields` as `currency.customFields` FROM `currency` LEFT JOIN (SELECT `currency.translation` . `currency_id` , `currency.translation` . `short_name` as `currency.translation.shortName` , `currency.translation` . `name` as `currency.translation.name` , `currency.translation` . `custom_fields` as `currency.translation.customFields` FROM `currency_translation` `currency.translation` WHERE `currency.translation` . `language_id` = 0x0230A828E7F14120974FAE38CDACDEDB ) `currency.currency_translation` ON `currency.currency_translation` . `currency_id` = `currency` . `id` WHERE `currency` . `id` IN (0xB7D2554B0CE847CD82F3AC9BD1C0DFCA );
Copy
15
0.77 ms
SELECT `country` . `id` as `country.id` , `country` . `iso` as `country.iso` , `country` . `position` as `country.position` , `country` . `active` as `country.active` , `country` . `shipping_available` as `country.shippingAvailable` , `country` . `iso3` as `country.iso3` , `country` . `display_state_in_registration` as `country.displayStateInRegistration` , `country` . `force_state_in_registration` as `country.forceStateInRegistration` , `country` . `check_vat_id_pattern` as `country.checkVatIdPattern` , `country` . `vat_id_required` as `country.vatIdRequired` , `country` . `vat_id_pattern` as `country.vatIdPattern` , `country` . `customer_tax` as `country.customerTax` , `country` . `company_tax` as `country.companyTax` , `country` . `postal_code_required` as `country.postalCodeRequired` , `country` . `check_postal_code_pattern` as `country.checkPostalCodePattern` , `country` . `check_advanced_postal_code_pattern` as `country.checkAdvancedPostalCodePattern` , `country` . `advanced_postal_code_pattern` as `country.advancedPostalCodePattern` , `country` . `default_postal_code_pattern` as `country.defaultPostalCodePattern` , `country` . `is_eu` as `country.isEu` , `country` . `created_at` as `country.createdAt` , `country` . `updated_at` as `country.updatedAt` , `country.translation.name` , `country.translation.name` as `country.name` , `country.translation.addressFormat` , `country.translation.addressFormat` as `country.addressFormat` , `country.translation.customFields` , `country.translation.customFields` as `country.customFields` FROM `country` LEFT JOIN (SELECT `country.translation` . `country_id` , `country.translation` . `name` as `country.translation.name` , `country.translation` . `custom_fields` as `country.translation.customFields` , `country.translation` . `address_format` as `country.translation.addressFormat` FROM `country_translation` `country.translation` WHERE `country.translation` . `language_id` = ? ) `country.country_translation` ON `country.country_translation` . `country_id` = `country` . `id` WHERE `country` . `id` IN (? )
Parameters :
[
b"\x02 0¨(çñA —O®8ͬÞÛ "
b"■ï^½Ü\x05 NùüK/Ìû!²─ "
]
SELECT `country` . `id` as `country.id` , `country` . `iso` as `country.iso` , `country` . `position` as `country.position` , `country` . `active` as `country.active` , `country` . `shipping_available` as `country.shippingAvailable` , `country` . `iso3` as `country.iso3` , `country` . `display_state_in_registration` as `country.displayStateInRegistration` , `country` . `force_state_in_registration` as `country.forceStateInRegistration` , `country` . `check_vat_id_pattern` as `country.checkVatIdPattern` , `country` . `vat_id_required` as `country.vatIdRequired` , `country` . `vat_id_pattern` as `country.vatIdPattern` , `country` . `customer_tax` as `country.customerTax` , `country` . `company_tax` as `country.companyTax` , `country` . `postal_code_required` as `country.postalCodeRequired` , `country` . `check_postal_code_pattern` as `country.checkPostalCodePattern` , `country` . `check_advanced_postal_code_pattern` as `country.checkAdvancedPostalCodePattern` , `country` . `advanced_postal_code_pattern` as `country.advancedPostalCodePattern` , `country` . `default_postal_code_pattern` as `country.defaultPostalCodePattern` , `country` . `is_eu` as `country.isEu` , `country` . `created_at` as `country.createdAt` , `country` . `updated_at` as `country.updatedAt` , `country.translation.name` , `country.translation.name` as `country.name` , `country.translation.addressFormat` , `country.translation.addressFormat` as `country.addressFormat` , `country.translation.customFields` , `country.translation.customFields` as `country.customFields` FROM `country` LEFT JOIN (SELECT `country.translation` . `country_id` , `country.translation` . `name` as `country.translation.name` , `country.translation` . `custom_fields` as `country.translation.customFields` , `country.translation` . `address_format` as `country.translation.addressFormat` FROM `country_translation` `country.translation` WHERE `country.translation` . `language_id` = 0x0230A828E7F14120974FAE38CDACDEDB ) `country.country_translation` ON `country.country_translation` . `country_id` = `country` . `id` WHERE `country` . `id` IN (0xFE8B5EAB9A054E97814B2FDE9621FDC4 );
Copy
16
0.74 ms
SELECT `customer_group` . `id` as `customer_group.id` , `customer_group` . `display_gross` as `customer_group.displayGross` , `customer_group` . `registration_active` as `customer_group.registrationActive` , `customer_group` . `created_at` as `customer_group.createdAt` , `customer_group` . `updated_at` as `customer_group.updatedAt` , `customer_group.translation.name` , `customer_group.translation.name` as `customer_group.name` , `customer_group.translation.registrationTitle` , `customer_group.translation.registrationTitle` as `customer_group.registrationTitle` , `customer_group.translation.registrationIntroduction` , `customer_group.translation.registrationIntroduction` as `customer_group.registrationIntroduction` , `customer_group.translation.registrationOnlyCompanyRegistration` , `customer_group.translation.registrationOnlyCompanyRegistration` as `customer_group.registrationOnlyCompanyRegistration` , `customer_group.translation.registrationSeoMetaDescription` , `customer_group.translation.registrationSeoMetaDescription` as `customer_group.registrationSeoMetaDescription` , `customer_group.translation.customFields` , `customer_group.translation.customFields` as `customer_group.customFields` FROM `customer_group` LEFT JOIN (SELECT `customer_group.translation` . `customer_group_id` , `customer_group.translation` . `name` as `customer_group.translation.name` , `customer_group.translation` . `custom_fields` as `customer_group.translation.customFields` , `customer_group.translation` . `registration_title` as `customer_group.translation.registrationTitle` , `customer_group.translation` . `registration_introduction` as `customer_group.translation.registrationIntroduction` , `customer_group.translation` . `registration_only_company_registration` as `customer_group.translation.registrationOnlyCompanyRegistration` , `customer_group.translation` . `registration_seo_meta_description` as `customer_group.translation.registrationSeoMetaDescription` FROM `customer_group_translation` `customer_group.translation` WHERE `customer_group.translation` . `language_id` = ? ) `customer_group.customer_group_translation` ON `customer_group.customer_group_translation` . `customer_group_id` = `customer_group` . `id` WHERE `customer_group` . `id` IN (? )
Parameters :
[
b"\x02 0¨(çñA —O®8ͬÞÛ "
b"¤¢P\x18 ËìAÏ¡╩\x10 ┘O╚¢Í "
]
SELECT `customer_group` . `id` as `customer_group.id` , `customer_group` . `display_gross` as `customer_group.displayGross` , `customer_group` . `registration_active` as `customer_group.registrationActive` , `customer_group` . `created_at` as `customer_group.createdAt` , `customer_group` . `updated_at` as `customer_group.updatedAt` , `customer_group.translation.name` , `customer_group.translation.name` as `customer_group.name` , `customer_group.translation.registrationTitle` , `customer_group.translation.registrationTitle` as `customer_group.registrationTitle` , `customer_group.translation.registrationIntroduction` , `customer_group.translation.registrationIntroduction` as `customer_group.registrationIntroduction` , `customer_group.translation.registrationOnlyCompanyRegistration` , `customer_group.translation.registrationOnlyCompanyRegistration` as `customer_group.registrationOnlyCompanyRegistration` , `customer_group.translation.registrationSeoMetaDescription` , `customer_group.translation.registrationSeoMetaDescription` as `customer_group.registrationSeoMetaDescription` , `customer_group.translation.customFields` , `customer_group.translation.customFields` as `customer_group.customFields` FROM `customer_group` LEFT JOIN (SELECT `customer_group.translation` . `customer_group_id` , `customer_group.translation` . `name` as `customer_group.translation.name` , `customer_group.translation` . `custom_fields` as `customer_group.translation.customFields` , `customer_group.translation` . `registration_title` as `customer_group.translation.registrationTitle` , `customer_group.translation` . `registration_introduction` as `customer_group.translation.registrationIntroduction` , `customer_group.translation` . `registration_only_company_registration` as `customer_group.translation.registrationOnlyCompanyRegistration` , `customer_group.translation` . `registration_seo_meta_description` as `customer_group.translation.registrationSeoMetaDescription` FROM `customer_group_translation` `customer_group.translation` WHERE `customer_group.translation` . `language_id` = 0x0230A828E7F14120974FAE38CDACDEDB ) `customer_group.customer_group_translation` ON `customer_group.customer_group_translation` . `customer_group_id` = `customer_group` . `id` WHERE `customer_group` . `id` IN (0xCFBD5018D38D41D8ADCA10D94FC8BDD6 );
Copy
17
0.24 ms
SELECT `tax` . `id` as `tax.id` , `tax` . `tax_rate` as `tax.taxRate` , `tax` . `name` as `tax.name` , `tax` . `position` as `tax.position` , `tax` . `custom_fields` as `tax.customFields` , `tax` . `created_at` as `tax.createdAt` , `tax` . `updated_at` as `tax.updatedAt` FROM `tax`
SELECT `tax` . `id` as `tax.id` , `tax` . `tax_rate` as `tax.taxRate` , `tax` . `name` as `tax.name` , `tax` . `position` as `tax.position` , `tax` . `custom_fields` as `tax.customFields` , `tax` . `created_at` as `tax.createdAt` , `tax` . `updated_at` as `tax.updatedAt` FROM `tax` ;
Copy
18
1.11 ms
SELECT `tax_rule` . `id` as `tax_rule.id` , `tax_rule` . `tax_rule_type_id` as `tax_rule.taxRuleTypeId` , `tax_rule` . `country_id` as `tax_rule.countryId` , `tax_rule` . `tax_rate` as `tax_rule.taxRate` , `tax_rule` . `data` as `tax_rule.data` , `tax_rule` . `tax_id` as `tax_rule.taxId` , `tax_rule` . `active_from` as `tax_rule.activeFrom` , `tax_rule` . `created_at` as `tax_rule.createdAt` , `tax_rule` . `updated_at` as `tax_rule.updatedAt` , `tax_rule.type` . `id` as `tax_rule.type.id` , `tax_rule.type` . `technical_name` as `tax_rule.type.technicalName` , `tax_rule.type` . `position` as `tax_rule.type.position` , `tax_rule.type` . `created_at` as `tax_rule.type.createdAt` , `tax_rule.type` . `updated_at` as `tax_rule.type.updatedAt` , `tax_rule.type.translation.typeName` , `tax_rule.type.translation.typeName` as `tax_rule.type.typeName` FROM `tax_rule` LEFT JOIN `tax_rule_type` `tax_rule.type` ON `tax_rule` . `tax_rule_type_id` = `tax_rule.type` . `id` LEFT JOIN (SELECT `tax_rule.type.translation` . `tax_rule_type_id` , `tax_rule.type.translation` . `type_name` as `tax_rule.type.translation.typeName` FROM `tax_rule_type_translation` `tax_rule.type.translation` WHERE `tax_rule.type.translation` . `language_id` = ? ) `tax_rule.type.tax_rule_type_translation` ON `tax_rule.type.tax_rule_type_translation` . `tax_rule_type_id` = `tax_rule.type` . `id` WHERE ((`tax_rule` . `tax_id` IN (? , ? , ? , ? , ? )))
Parameters :
[
b"\x02 0¨(çñA —O®8ͬÞÛ "
b"+Mñ\x14 Ò/Aã’\x00 ›`ñJX~ "
b"/x\v àZïJg²AkÊ<iÌÂ "
b"^«Iþ~ÙBºÉ6pl\x05 !\x05 "
b"lHi\x14 Õ\x1D A!öü^'\x19 'Ûz "
b"ãO¿\x01 ÿ"N\x13 ›‚qyÇL\x06 Š "
]
SELECT `tax_rule` . `id` as `tax_rule.id` , `tax_rule` . `tax_rule_type_id` as `tax_rule.taxRuleTypeId` , `tax_rule` . `country_id` as `tax_rule.countryId` , `tax_rule` . `tax_rate` as `tax_rule.taxRate` , `tax_rule` . `data` as `tax_rule.data` , `tax_rule` . `tax_id` as `tax_rule.taxId` , `tax_rule` . `active_from` as `tax_rule.activeFrom` , `tax_rule` . `created_at` as `tax_rule.createdAt` , `tax_rule` . `updated_at` as `tax_rule.updatedAt` , `tax_rule.type` . `id` as `tax_rule.type.id` , `tax_rule.type` . `technical_name` as `tax_rule.type.technicalName` , `tax_rule.type` . `position` as `tax_rule.type.position` , `tax_rule.type` . `created_at` as `tax_rule.type.createdAt` , `tax_rule.type` . `updated_at` as `tax_rule.type.updatedAt` , `tax_rule.type.translation.typeName` , `tax_rule.type.translation.typeName` as `tax_rule.type.typeName` FROM `tax_rule` LEFT JOIN `tax_rule_type` `tax_rule.type` ON `tax_rule` . `tax_rule_type_id` = `tax_rule.type` . `id` LEFT JOIN (SELECT `tax_rule.type.translation` . `tax_rule_type_id` , `tax_rule.type.translation` . `type_name` as `tax_rule.type.translation.typeName` FROM `tax_rule_type_translation` `tax_rule.type.translation` WHERE `tax_rule.type.translation` . `language_id` = 0x0230A828E7F14120974FAE38CDACDEDB ) `tax_rule.type.tax_rule_type_translation` ON `tax_rule.type.tax_rule_type_translation` . `tax_rule_type_id` = `tax_rule.type` . `id` WHERE ((`tax_rule` . `tax_id` IN (0x2B4DF114D22F41E392009B60F14A587E , 0x2F780BE05AEF4A67B2416BCA3C69CCC2 , 0x5EAE49E77EEB42A7903670F06C052105 , 0x6C486914E51D412194815E271927EA7A , 0xE34FBF01FF224E139B827179C74C068A )));
Copy
19
1.26 ms
SELECT `payment_method` . `id` as `payment_method.id` , `payment_method` . `plugin_id` as `payment_method.pluginId` , `payment_method` . `handler_identifier` as `payment_method.handlerIdentifier` , `payment_method` . `position` as `payment_method.position` , `payment_method` . `active` as `payment_method.active` , `payment_method` . `after_order_enabled` as `payment_method.afterOrderEnabled` , `payment_method` . `availability_rule_id` as `payment_method.availabilityRuleId` , `payment_method` . `media_id` as `payment_method.mediaId` , `payment_method` . `technical_name` as `payment_method.technicalName` , `payment_method` . `created_at` as `payment_method.createdAt` , `payment_method` . `updated_at` as `payment_method.updatedAt` , `payment_method.media` . `id` as `payment_method.media.id` , `payment_method.media` . `user_id` as `payment_method.media.userId` , `payment_method.media` . `media_folder_id` as `payment_method.media.mediaFolderId` , `payment_method.media` . `mime_type` as `payment_method.media.mimeType` , `payment_method.media` . `file_extension` as `payment_method.media.fileExtension` , `payment_method.media` . `uploaded_at` as `payment_method.media.uploadedAt` , `payment_method.media` . `file_name` as `payment_method.media.fileName` , `payment_method.media` . `file_size` as `payment_method.media.fileSize` , `payment_method.media` . `media_type` as `payment_method.media.mediaTypeRaw` , `payment_method.media` . `meta_data` as `payment_method.media.metaData` , `payment_method.media` . `config` as `payment_method.media.config` , `payment_method.media` . `path` as `payment_method.media.path` , `payment_method.media` . `private` as `payment_method.media.private` , `payment_method.media` . `thumbnails_ro` as `payment_method.media.thumbnailsRo` , `payment_method.media` . `file_hash` as `payment_method.media.fileHash` , `payment_method.media` . `created_at` as `payment_method.media.createdAt` , `payment_method.media` . `updated_at` as `payment_method.media.updatedAt` , `payment_method.media.translation.title` , `payment_method.media.translation.title` as `payment_method.media.title` , `payment_method.media.translation.alt` , `payment_method.media.translation.alt` as `payment_method.media.alt` , `payment_method.media.translation.customFields` , `payment_method.media.translation.customFields` as `payment_method.media.customFields` , `payment_method.appPaymentMethod` . `id` as `payment_method.appPaymentMethod.id` , `payment_method.appPaymentMethod` . `app_name` as `payment_method.appPaymentMethod.appName` , `payment_method.appPaymentMethod` . `identifier` as `payment_method.appPaymentMethod.identifier` , `payment_method.appPaymentMethod` . `pay_url` as `payment_method.appPaymentMethod.payUrl` , `payment_method.appPaymentMethod` . `finalize_url` as `payment_method.appPaymentMethod.finalizeUrl` , `payment_method.appPaymentMethod` . `validate_url` as `payment_method.appPaymentMethod.validateUrl` , `payment_method.appPaymentMethod` . `capture_url` as `payment_method.appPaymentMethod.captureUrl` , `payment_method.appPaymentMethod` . `refund_url` as `payment_method.appPaymentMethod.refundUrl` , `payment_method.appPaymentMethod` . `recurring_url` as `payment_method.appPaymentMethod.recurringUrl` , `payment_method.appPaymentMethod` . `app_id` as `payment_method.appPaymentMethod.appId` , `payment_method.appPaymentMethod` . `original_media_id` as `payment_method.appPaymentMethod.originalMediaId` , `payment_method.appPaymentMethod` . `payment_method_id` as `payment_method.appPaymentMethod.paymentMethodId` , `payment_method.appPaymentMethod` . `created_at` as `payment_method.appPaymentMethod.createdAt` , `payment_method.appPaymentMethod` . `updated_at` as `payment_method.appPaymentMethod.updatedAt` , `payment_method.translation.name` , `payment_method.translation.name` as `payment_method.name` , `payment_method.translation.distinguishableName` , `payment_method.translation.distinguishableName` as `payment_method.distinguishableName` , `payment_method.translation.description` , `payment_method.translation.description` as `payment_method.description` , `payment_method.translation.customFields` , `payment_method.translation.customFields` as `payment_method.customFields` FROM `payment_method` LEFT JOIN `media` `payment_method.media` ON `payment_method` . `media_id` = `payment_method.media` . `id` LEFT JOIN `app_payment_method` `payment_method.appPaymentMethod` ON `payment_method` . `id` = `payment_method.appPaymentMethod` . `payment_method_id` LEFT JOIN (SELECT `payment_method.translation` . `payment_method_id` , `payment_method.translation` . `name` as `payment_method.translation.name` , `payment_method.translation` . `distinguishable_name` as `payment_method.translation.distinguishableName` , `payment_method.translation` . `description` as `payment_method.translation.description` , `payment_method.translation` . `custom_fields` as `payment_method.translation.customFields` FROM `payment_method_translation` `payment_method.translation` WHERE `payment_method.translation` . `language_id` = ? ) `payment_method.payment_method_translation` ON `payment_method.payment_method_translation` . `payment_method_id` = `payment_method` . `id` LEFT JOIN (SELECT `payment_method.media.translation` . `media_id` , `payment_method.media.translation` . `alt` as `payment_method.media.translation.alt` , `payment_method.media.translation` . `title` as `payment_method.media.translation.title` , `payment_method.media.translation` . `custom_fields` as `payment_method.media.translation.customFields` FROM `media_translation` `payment_method.media.translation` WHERE `payment_method.media.translation` . `language_id` = ? ) `payment_method.media.media_translation` ON `payment_method.media.media_translation` . `media_id` = `payment_method.media` . `id` WHERE `payment_method` . `id` IN (? )
Parameters :
[
b"\x02 0¨(çñA —O®8ͬÞÛ "
b"\x02 0¨(çñA —O®8ͬÞÛ "
b"Vjÿª@SB\x16 ¿╠¾}O\e ü! "
]
SELECT
`payment_method` . `id` as `payment_method.id` ,
`payment_method` . `plugin_id` as `payment_method.pluginId` ,
`payment_method` . `handler_identifier` as `payment_method.handlerIdentifier` ,
`payment_method` . `position` as `payment_method.position` ,
`payment_method` . `active` as `payment_method.active` ,
`payment_method` . `after_order_enabled` as `payment_method.afterOrderEnabled` ,
`payment_method` . `availability_rule_id` as `payment_method.availabilityRuleId` ,
`payment_method` . `media_id` as `payment_method.mediaId` ,
`payment_method` . `technical_name` as `payment_method.technicalName` ,
`payment_method` . `created_at` as `payment_method.createdAt` ,
`payment_method` . `updated_at` as `payment_method.updatedAt` ,
`payment_method.media` . `id` as `payment_method.media.id` ,
`payment_method.media` . `user_id` as `payment_method.media.userId` ,
`payment_method.media` . `media_folder_id` as `payment_method.media.mediaFolderId` ,
`payment_method.media` . `mime_type` as `payment_method.media.mimeType` ,
`payment_method.media` . `file_extension` as `payment_method.media.fileExtension` ,
`payment_method.media` . `uploaded_at` as `payment_method.media.uploadedAt` ,
`payment_method.media` . `file_name` as `payment_method.media.fileName` ,
`payment_method.media` . `file_size` as `payment_method.media.fileSize` ,
`payment_method.media` . `media_type` as `payment_method.media.mediaTypeRaw` ,
`payment_method.media` . `meta_data` as `payment_method.media.metaData` ,
`payment_method.media` . `config` as `payment_method.media.config` ,
`payment_method.media` . `path` as `payment_method.media.path` ,
`payment_method.media` . `private` as `payment_method.media.private` ,
`payment_method.media` . `thumbnails_ro` as `payment_method.media.thumbnailsRo` ,
`payment_method.media` . `file_hash` as `payment_method.media.fileHash` ,
`payment_method.media` . `created_at` as `payment_method.media.createdAt` ,
`payment_method.media` . `updated_at` as `payment_method.media.updatedAt` ,
`payment_method.media.translation.title` ,
`payment_method.media.translation.title` as `payment_method.media.title` ,
`payment_method.media.translation.alt` ,
`payment_method.media.translation.alt` as `payment_method.media.alt` ,
`payment_method.media.translation.customFields` ,
`payment_method.media.translation.customFields` as `payment_method.media.customFields` ,
`payment_method.appPaymentMethod` . `id` as `payment_method.appPaymentMethod.id` ,
`payment_method.appPaymentMethod` . `app_name` as `payment_method.appPaymentMethod.appName` ,
`payment_method.appPaymentMethod` . `identifier` as `payment_method.appPaymentMethod.identifier` ,
`payment_method.appPaymentMethod` . `pay_url` as `payment_method.appPaymentMethod.payUrl` ,
`payment_method.appPaymentMethod` . `finalize_url` as `payment_method.appPaymentMethod.finalizeUrl` ,
`payment_method.appPaymentMethod` . `validate_url` as `payment_method.appPaymentMethod.validateUrl` ,
`payment_method.appPaymentMethod` . `capture_url` as `payment_method.appPaymentMethod.captureUrl` ,
`payment_method.appPaymentMethod` . `refund_url` as `payment_method.appPaymentMethod.refundUrl` ,
`payment_method.appPaymentMethod` . `recurring_url` as `payment_method.appPaymentMethod.recurringUrl` ,
`payment_method.appPaymentMethod` . `app_id` as `payment_method.appPaymentMethod.appId` ,
`payment_method.appPaymentMethod` . `original_media_id` as `payment_method.appPaymentMethod.originalMediaId` ,
`payment_method.appPaymentMethod` . `payment_method_id` as `payment_method.appPaymentMethod.paymentMethodId` ,
`payment_method.appPaymentMethod` . `created_at` as `payment_method.appPaymentMethod.createdAt` ,
`payment_method.appPaymentMethod` . `updated_at` as `payment_method.appPaymentMethod.updatedAt` ,
`payment_method.translation.name` ,
`payment_method.translation.name` as `payment_method.name` ,
`payment_method.translation.distinguishableName` ,
`payment_method.translation.distinguishableName` as `payment_method.distinguishableName` ,
`payment_method.translation.description` ,
`payment_method.translation.description` as `payment_method.description` ,
`payment_method.translation.customFields` ,
`payment_method.translation.customFields` as `payment_method.customFields`
FROM
`payment_method`
LEFT JOIN `media` `payment_method.media` ON `payment_method` . `media_id` = `payment_method.media` . `id`
LEFT JOIN `app_payment_method` `payment_method.appPaymentMethod` ON `payment_method` . `id` = `payment_method.appPaymentMethod` . `payment_method_id`
LEFT JOIN (
SELECT
`payment_method.translation` . `payment_method_id` ,
`payment_method.translation` . `name` as `payment_method.translation.name` ,
`payment_method.translation` . `distinguishable_name` as `payment_method.translation.distinguishableName` ,
`payment_method.translation` . `description` as `payment_method.translation.description` ,
`payment_method.translation` . `custom_fields` as `payment_method.translation.customFields`
FROM
`payment_method_translation` `payment_method.translation`
WHERE
`payment_method.translation` . `language_id` = ?
) `payment_method.payment_method_translation` ON `payment_method.payment_method_translation` . `payment_method_id` = `payment_method` . `id`
LEFT JOIN (
SELECT
`payment_method.media.translation` . `media_id` ,
`payment_method.media.translation` . `alt` as `payment_method.media.translation.alt` ,
`payment_method.media.translation` . `title` as `payment_method.media.translation.title` ,
`payment_method.media.translation` . `custom_fields` as `payment_method.media.translation.customFields`
FROM
`media_translation` `payment_method.media.translation`
WHERE
`payment_method.media.translation` . `language_id` = ?
) `payment_method.media.media_translation` ON `payment_method.media.media_translation` . `media_id` = `payment_method.media` . `id`
WHERE
`payment_method` . `id` IN (? )
Copy
SELECT `payment_method` . `id` as `payment_method.id` , `payment_method` . `plugin_id` as `payment_method.pluginId` , `payment_method` . `handler_identifier` as `payment_method.handlerIdentifier` , `payment_method` . `position` as `payment_method.position` , `payment_method` . `active` as `payment_method.active` , `payment_method` . `after_order_enabled` as `payment_method.afterOrderEnabled` , `payment_method` . `availability_rule_id` as `payment_method.availabilityRuleId` , `payment_method` . `media_id` as `payment_method.mediaId` , `payment_method` . `technical_name` as `payment_method.technicalName` , `payment_method` . `created_at` as `payment_method.createdAt` , `payment_method` . `updated_at` as `payment_method.updatedAt` , `payment_method.media` . `id` as `payment_method.media.id` , `payment_method.media` . `user_id` as `payment_method.media.userId` , `payment_method.media` . `media_folder_id` as `payment_method.media.mediaFolderId` , `payment_method.media` . `mime_type` as `payment_method.media.mimeType` , `payment_method.media` . `file_extension` as `payment_method.media.fileExtension` , `payment_method.media` . `uploaded_at` as `payment_method.media.uploadedAt` , `payment_method.media` . `file_name` as `payment_method.media.fileName` , `payment_method.media` . `file_size` as `payment_method.media.fileSize` , `payment_method.media` . `media_type` as `payment_method.media.mediaTypeRaw` , `payment_method.media` . `meta_data` as `payment_method.media.metaData` , `payment_method.media` . `config` as `payment_method.media.config` , `payment_method.media` . `path` as `payment_method.media.path` , `payment_method.media` . `private` as `payment_method.media.private` , `payment_method.media` . `thumbnails_ro` as `payment_method.media.thumbnailsRo` , `payment_method.media` . `file_hash` as `payment_method.media.fileHash` , `payment_method.media` . `created_at` as `payment_method.media.createdAt` , `payment_method.media` . `updated_at` as `payment_method.media.updatedAt` , `payment_method.media.translation.title` , `payment_method.media.translation.title` as `payment_method.media.title` , `payment_method.media.translation.alt` , `payment_method.media.translation.alt` as `payment_method.media.alt` , `payment_method.media.translation.customFields` , `payment_method.media.translation.customFields` as `payment_method.media.customFields` , `payment_method.appPaymentMethod` . `id` as `payment_method.appPaymentMethod.id` , `payment_method.appPaymentMethod` . `app_name` as `payment_method.appPaymentMethod.appName` , `payment_method.appPaymentMethod` . `identifier` as `payment_method.appPaymentMethod.identifier` , `payment_method.appPaymentMethod` . `pay_url` as `payment_method.appPaymentMethod.payUrl` , `payment_method.appPaymentMethod` . `finalize_url` as `payment_method.appPaymentMethod.finalizeUrl` , `payment_method.appPaymentMethod` . `validate_url` as `payment_method.appPaymentMethod.validateUrl` , `payment_method.appPaymentMethod` . `capture_url` as `payment_method.appPaymentMethod.captureUrl` , `payment_method.appPaymentMethod` . `refund_url` as `payment_method.appPaymentMethod.refundUrl` , `payment_method.appPaymentMethod` . `recurring_url` as `payment_method.appPaymentMethod.recurringUrl` , `payment_method.appPaymentMethod` . `app_id` as `payment_method.appPaymentMethod.appId` , `payment_method.appPaymentMethod` . `original_media_id` as `payment_method.appPaymentMethod.originalMediaId` , `payment_method.appPaymentMethod` . `payment_method_id` as `payment_method.appPaymentMethod.paymentMethodId` , `payment_method.appPaymentMethod` . `created_at` as `payment_method.appPaymentMethod.createdAt` , `payment_method.appPaymentMethod` . `updated_at` as `payment_method.appPaymentMethod.updatedAt` , `payment_method.translation.name` , `payment_method.translation.name` as `payment_method.name` , `payment_method.translation.distinguishableName` , `payment_method.translation.distinguishableName` as `payment_method.distinguishableName` , `payment_method.translation.description` , `payment_method.translation.description` as `payment_method.description` , `payment_method.translation.customFields` , `payment_method.translation.customFields` as `payment_method.customFields` FROM `payment_method` LEFT JOIN `media` `payment_method.media` ON `payment_method` . `media_id` = `payment_method.media` . `id` LEFT JOIN `app_payment_method` `payment_method.appPaymentMethod` ON `payment_method` . `id` = `payment_method.appPaymentMethod` . `payment_method_id` LEFT JOIN (SELECT `payment_method.translation` . `payment_method_id` , `payment_method.translation` . `name` as `payment_method.translation.name` , `payment_method.translation` . `distinguishable_name` as `payment_method.translation.distinguishableName` , `payment_method.translation` . `description` as `payment_method.translation.description` , `payment_method.translation` . `custom_fields` as `payment_method.translation.customFields` FROM `payment_method_translation` `payment_method.translation` WHERE `payment_method.translation` . `language_id` = 0x0230A828E7F14120974FAE38CDACDEDB ) `payment_method.payment_method_translation` ON `payment_method.payment_method_translation` . `payment_method_id` = `payment_method` . `id` LEFT JOIN (SELECT `payment_method.media.translation` . `media_id` , `payment_method.media.translation` . `alt` as `payment_method.media.translation.alt` , `payment_method.media.translation` . `title` as `payment_method.media.translation.title` , `payment_method.media.translation` . `custom_fields` as `payment_method.media.translation.customFields` FROM `media_translation` `payment_method.media.translation` WHERE `payment_method.media.translation` . `language_id` = 0x0230A828E7F14120974FAE38CDACDEDB ) `payment_method.media.media_translation` ON `payment_method.media.media_translation` . `media_id` = `payment_method.media` . `id` WHERE `payment_method` . `id` IN (0x566A98A640534216A8CCF37D4F1B8121 );
Copy
20
1.12 ms
SELECT `shipping_method` . `id` as `shipping_method.id` , `shipping_method` . `technical_name` as `shipping_method.technicalName` , `shipping_method` . `active` as `shipping_method.active` , `shipping_method` . `position` as `shipping_method.position` , `shipping_method` . `availability_rule_id` as `shipping_method.availabilityRuleId` , `shipping_method` . `media_id` as `shipping_method.mediaId` , `shipping_method` . `delivery_time_id` as `shipping_method.deliveryTimeId` , `shipping_method` . `tax_type` as `shipping_method.taxType` , `shipping_method` . `tax_id` as `shipping_method.taxId` , `shipping_method` . `created_at` as `shipping_method.createdAt` , `shipping_method` . `updated_at` as `shipping_method.updatedAt` , `shipping_method.media` . `id` as `shipping_method.media.id` , `shipping_method.media` . `user_id` as `shipping_method.media.userId` , `shipping_method.media` . `media_folder_id` as `shipping_method.media.mediaFolderId` , `shipping_method.media` . `mime_type` as `shipping_method.media.mimeType` , `shipping_method.media` . `file_extension` as `shipping_method.media.fileExtension` , `shipping_method.media` . `uploaded_at` as `shipping_method.media.uploadedAt` , `shipping_method.media` . `file_name` as `shipping_method.media.fileName` , `shipping_method.media` . `file_size` as `shipping_method.media.fileSize` , `shipping_method.media` . `media_type` as `shipping_method.media.mediaTypeRaw` , `shipping_method.media` . `meta_data` as `shipping_method.media.metaData` , `shipping_method.media` . `config` as `shipping_method.media.config` , `shipping_method.media` . `path` as `shipping_method.media.path` , `shipping_method.media` . `private` as `shipping_method.media.private` , `shipping_method.media` . `thumbnails_ro` as `shipping_method.media.thumbnailsRo` , `shipping_method.media` . `file_hash` as `shipping_method.media.fileHash` , `shipping_method.media` . `created_at` as `shipping_method.media.createdAt` , `shipping_method.media` . `updated_at` as `shipping_method.media.updatedAt` , `shipping_method.media.translation.title` , `shipping_method.media.translation.title` as `shipping_method.media.title` , `shipping_method.media.translation.alt` , `shipping_method.media.translation.alt` as `shipping_method.media.alt` , `shipping_method.media.translation.customFields` , `shipping_method.media.translation.customFields` as `shipping_method.media.customFields` , `shipping_method.translation.name` , `shipping_method.translation.name` as `shipping_method.name` , `shipping_method.translation.description` , `shipping_method.translation.description` as `shipping_method.description` , `shipping_method.translation.trackingUrl` , `shipping_method.translation.trackingUrl` as `shipping_method.trackingUrl` , `shipping_method.translation.customFields` , `shipping_method.translation.customFields` as `shipping_method.customFields` FROM `shipping_method` LEFT JOIN `media` `shipping_method.media` ON `shipping_method` . `media_id` = `shipping_method.media` . `id` LEFT JOIN (SELECT `shipping_method.translation` . `shipping_method_id` , `shipping_method.translation` . `name` as `shipping_method.translation.name` , `shipping_method.translation` . `custom_fields` as `shipping_method.translation.customFields` , `shipping_method.translation` . `description` as `shipping_method.translation.description` , `shipping_method.translation` . `tracking_url` as `shipping_method.translation.trackingUrl` FROM `shipping_method_translation` `shipping_method.translation` WHERE `shipping_method.translation` . `language_id` = ? ) `shipping_method.shipping_method_translation` ON `shipping_method.shipping_method_translation` . `shipping_method_id` = `shipping_method` . `id` LEFT JOIN (SELECT `shipping_method.media.translation` . `media_id` , `shipping_method.media.translation` . `alt` as `shipping_method.media.translation.alt` , `shipping_method.media.translation` . `title` as `shipping_method.media.translation.title` , `shipping_method.media.translation` . `custom_fields` as `shipping_method.media.translation.customFields` FROM `media_translation` `shipping_method.media.translation` WHERE `shipping_method.media.translation` . `language_id` = ? ) `shipping_method.media.media_translation` ON `shipping_method.media.media_translation` . `media_id` = `shipping_method.media` . `id` WHERE `shipping_method` . `id` IN (? )
Parameters :
[
b"\x02 0¨(çñA —O®8ͬÞÛ "
b"\x02 0¨(çñA —O®8ͬÞÛ "
b"""
4\x15 ìG¾EJ¹£\n
~╬\x7F ¯4┴
"""
]
SELECT
`shipping_method` . `id` as `shipping_method.id` ,
`shipping_method` . `technical_name` as `shipping_method.technicalName` ,
`shipping_method` . `active` as `shipping_method.active` ,
`shipping_method` . `position` as `shipping_method.position` ,
`shipping_method` . `availability_rule_id` as `shipping_method.availabilityRuleId` ,
`shipping_method` . `media_id` as `shipping_method.mediaId` ,
`shipping_method` . `delivery_time_id` as `shipping_method.deliveryTimeId` ,
`shipping_method` . `tax_type` as `shipping_method.taxType` ,
`shipping_method` . `tax_id` as `shipping_method.taxId` ,
`shipping_method` . `created_at` as `shipping_method.createdAt` ,
`shipping_method` . `updated_at` as `shipping_method.updatedAt` ,
`shipping_method.media` . `id` as `shipping_method.media.id` ,
`shipping_method.media` . `user_id` as `shipping_method.media.userId` ,
`shipping_method.media` . `media_folder_id` as `shipping_method.media.mediaFolderId` ,
`shipping_method.media` . `mime_type` as `shipping_method.media.mimeType` ,
`shipping_method.media` . `file_extension` as `shipping_method.media.fileExtension` ,
`shipping_method.media` . `uploaded_at` as `shipping_method.media.uploadedAt` ,
`shipping_method.media` . `file_name` as `shipping_method.media.fileName` ,
`shipping_method.media` . `file_size` as `shipping_method.media.fileSize` ,
`shipping_method.media` . `media_type` as `shipping_method.media.mediaTypeRaw` ,
`shipping_method.media` . `meta_data` as `shipping_method.media.metaData` ,
`shipping_method.media` . `config` as `shipping_method.media.config` ,
`shipping_method.media` . `path` as `shipping_method.media.path` ,
`shipping_method.media` . `private` as `shipping_method.media.private` ,
`shipping_method.media` . `thumbnails_ro` as `shipping_method.media.thumbnailsRo` ,
`shipping_method.media` . `file_hash` as `shipping_method.media.fileHash` ,
`shipping_method.media` . `created_at` as `shipping_method.media.createdAt` ,
`shipping_method.media` . `updated_at` as `shipping_method.media.updatedAt` ,
`shipping_method.media.translation.title` ,
`shipping_method.media.translation.title` as `shipping_method.media.title` ,
`shipping_method.media.translation.alt` ,
`shipping_method.media.translation.alt` as `shipping_method.media.alt` ,
`shipping_method.media.translation.customFields` ,
`shipping_method.media.translation.customFields` as `shipping_method.media.customFields` ,
`shipping_method.translation.name` ,
`shipping_method.translation.name` as `shipping_method.name` ,
`shipping_method.translation.description` ,
`shipping_method.translation.description` as `shipping_method.description` ,
`shipping_method.translation.trackingUrl` ,
`shipping_method.translation.trackingUrl` as `shipping_method.trackingUrl` ,
`shipping_method.translation.customFields` ,
`shipping_method.translation.customFields` as `shipping_method.customFields`
FROM
`shipping_method`
LEFT JOIN `media` `shipping_method.media` ON `shipping_method` . `media_id` = `shipping_method.media` . `id`
LEFT JOIN (
SELECT
`shipping_method.translation` . `shipping_method_id` ,
`shipping_method.translation` . `name` as `shipping_method.translation.name` ,
`shipping_method.translation` . `custom_fields` as `shipping_method.translation.customFields` ,
`shipping_method.translation` . `description` as `shipping_method.translation.description` ,
`shipping_method.translation` . `tracking_url` as `shipping_method.translation.trackingUrl`
FROM
`shipping_method_translation` `shipping_method.translation`
WHERE
`shipping_method.translation` . `language_id` = ?
) `shipping_method.shipping_method_translation` ON `shipping_method.shipping_method_translation` . `shipping_method_id` = `shipping_method` . `id`
LEFT JOIN (
SELECT
`shipping_method.media.translation` . `media_id` ,
`shipping_method.media.translation` . `alt` as `shipping_method.media.translation.alt` ,
`shipping_method.media.translation` . `title` as `shipping_method.media.translation.title` ,
`shipping_method.media.translation` . `custom_fields` as `shipping_method.media.translation.customFields`
FROM
`media_translation` `shipping_method.media.translation`
WHERE
`shipping_method.media.translation` . `language_id` = ?
) `shipping_method.media.media_translation` ON `shipping_method.media.media_translation` . `media_id` = `shipping_method.media` . `id`
WHERE
`shipping_method` . `id` IN (? )
Copy
SELECT `shipping_method` . `id` as `shipping_method.id` , `shipping_method` . `technical_name` as `shipping_method.technicalName` , `shipping_method` . `active` as `shipping_method.active` , `shipping_method` . `position` as `shipping_method.position` , `shipping_method` . `availability_rule_id` as `shipping_method.availabilityRuleId` , `shipping_method` . `media_id` as `shipping_method.mediaId` , `shipping_method` . `delivery_time_id` as `shipping_method.deliveryTimeId` , `shipping_method` . `tax_type` as `shipping_method.taxType` , `shipping_method` . `tax_id` as `shipping_method.taxId` , `shipping_method` . `created_at` as `shipping_method.createdAt` , `shipping_method` . `updated_at` as `shipping_method.updatedAt` , `shipping_method.media` . `id` as `shipping_method.media.id` , `shipping_method.media` . `user_id` as `shipping_method.media.userId` , `shipping_method.media` . `media_folder_id` as `shipping_method.media.mediaFolderId` , `shipping_method.media` . `mime_type` as `shipping_method.media.mimeType` , `shipping_method.media` . `file_extension` as `shipping_method.media.fileExtension` , `shipping_method.media` . `uploaded_at` as `shipping_method.media.uploadedAt` , `shipping_method.media` . `file_name` as `shipping_method.media.fileName` , `shipping_method.media` . `file_size` as `shipping_method.media.fileSize` , `shipping_method.media` . `media_type` as `shipping_method.media.mediaTypeRaw` , `shipping_method.media` . `meta_data` as `shipping_method.media.metaData` , `shipping_method.media` . `config` as `shipping_method.media.config` , `shipping_method.media` . `path` as `shipping_method.media.path` , `shipping_method.media` . `private` as `shipping_method.media.private` , `shipping_method.media` . `thumbnails_ro` as `shipping_method.media.thumbnailsRo` , `shipping_method.media` . `file_hash` as `shipping_method.media.fileHash` , `shipping_method.media` . `created_at` as `shipping_method.media.createdAt` , `shipping_method.media` . `updated_at` as `shipping_method.media.updatedAt` , `shipping_method.media.translation.title` , `shipping_method.media.translation.title` as `shipping_method.media.title` , `shipping_method.media.translation.alt` , `shipping_method.media.translation.alt` as `shipping_method.media.alt` , `shipping_method.media.translation.customFields` , `shipping_method.media.translation.customFields` as `shipping_method.media.customFields` , `shipping_method.translation.name` , `shipping_method.translation.name` as `shipping_method.name` , `shipping_method.translation.description` , `shipping_method.translation.description` as `shipping_method.description` , `shipping_method.translation.trackingUrl` , `shipping_method.translation.trackingUrl` as `shipping_method.trackingUrl` , `shipping_method.translation.customFields` , `shipping_method.translation.customFields` as `shipping_method.customFields` FROM `shipping_method` LEFT JOIN `media` `shipping_method.media` ON `shipping_method` . `media_id` = `shipping_method.media` . `id` LEFT JOIN (SELECT `shipping_method.translation` . `shipping_method_id` , `shipping_method.translation` . `name` as `shipping_method.translation.name` , `shipping_method.translation` . `custom_fields` as `shipping_method.translation.customFields` , `shipping_method.translation` . `description` as `shipping_method.translation.description` , `shipping_method.translation` . `tracking_url` as `shipping_method.translation.trackingUrl` FROM `shipping_method_translation` `shipping_method.translation` WHERE `shipping_method.translation` . `language_id` = 0x0230A828E7F14120974FAE38CDACDEDB ) `shipping_method.shipping_method_translation` ON `shipping_method.shipping_method_translation` . `shipping_method_id` = `shipping_method` . `id` LEFT JOIN (SELECT `shipping_method.media.translation` . `media_id` , `shipping_method.media.translation` . `alt` as `shipping_method.media.translation.alt` , `shipping_method.media.translation` . `title` as `shipping_method.media.translation.title` , `shipping_method.media.translation` . `custom_fields` as `shipping_method.media.translation.customFields` FROM `media_translation` `shipping_method.media.translation` WHERE `shipping_method.media.translation` . `language_id` = 0x0230A828E7F14120974FAE38CDACDEDB ) `shipping_method.media.media_translation` ON `shipping_method.media.media_translation` . `media_id` = `shipping_method.media` . `id` WHERE `shipping_method` . `id` IN (0x34158D47F3454AFB9C0A7ECE7FEE34C1 );
Copy
21
0.38 ms
SELECT `currency_country_rounding` . `id` FROM `currency_country_rounding` WHERE (`currency_country_rounding` . `currency_id` = ? AND `currency_country_rounding` . `country_id` = ? ) LIMIT 1
Parameters :
[
b"·ÒUK\f èGÍ‚ó¬›ÑÀßÊ "
b"■ï^½Ü\x05 NùüK/Ìû!²─ "
]
SELECT `currency_country_rounding` . `id` FROM `currency_country_rounding` WHERE (`currency_country_rounding` . `currency_id` = 0xB7D2554B0CE847CD82F3AC9BD1C0DFCA AND `currency_country_rounding` . `country_id` = 0xFE8B5EAB9A054E97814B2FDE9621FDC4 ) LIMIT 1 ;
Copy
22
0.80 ms
SELECT `cart` . `payload` , `cart` . `rule_ids` , `cart` . `compressed` FROM cart WHERE `token` = ?
Parameters :
[
"dhy7lVXuw8dWjgQ6QKQ7so6fqgg8AS3H "
]
SELECT `cart` . `payload` , `cart` . `rule_ids` , `cart` . `compressed` FROM cart WHERE `token` = 'dhy7lVXuw8dWjgQ6QKQ7so6fqgg8AS3H' ;
Copy
23
0.46 ms
SELECT `rule` . `id` FROM `rule` WHERE (`rule` . `invalid` = ? ) ORDER BY `rule` . `priority` DESC , `rule` . `id` ASC LIMIT 500
SELECT `rule` . `id` FROM `rule` WHERE (`rule` . `invalid` = 0 ) ORDER BY `rule` . `priority` DESC , `rule` . `id` ASC LIMIT 500 ;
Copy
24
0.79 ms
SELECT `rule` . `id` as `rule.id` , `rule` . `name` as `rule.name` , `rule` . `priority` as `rule.priority` , `rule` . `description` as `rule.description` , `rule` . `payload` as `rule.payload` , `rule` . `invalid` as `rule.invalid` , `rule` . `areas` as `rule.areas` , `rule` . `custom_fields` as `rule.customFields` , `rule` . `module_types` as `rule.moduleTypes` , `rule` . `created_at` as `rule.createdAt` , `rule` . `updated_at` as `rule.updatedAt` FROM `rule` WHERE `rule` . `id` IN (? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? )
Parameters :
[
b"Ø\f zÔ\x13 `H\t ±{\x19\x1D ²5u5 "
b"\x1D pH#jÏJR°<\x03 eÅÏQ\ "
b"&ü³7├{Nλò÷ÙtCÄú "
b"8X•p\x16 dMä®HÀP\v óÌÈ "
b"?\x02 oÏ\f îE\x15 ²^Á™ñ팟 "
b"D«îåŽÚCU›¼ðöÿ)c\x00 "
b"G*¯e\x05 °IZ…0í¼¥¹p "
b"e;.h#’D?£2›&U£7â "
b"sÿ]5Ú╩Bi¬Ç\e ÅÓböK "
b"uHR\x06 Ä®N¦–ŠvÍ·+¶® "
b"—*{žNàOÇ E$ÁÁ{Wù "
b"¦.\x1F j\x1A\v E\x19 ¯@\e bp£qI "
b"Ü\x1D ºôÙi@ötûBm‰á' "
b"ß7ìÀÇèGÅæ×\r t\r ]l\x1A "
b"éŒa'L9EhµùÓ¢‹D°Ù "
b"ìi~ÃAÙOËœ§ÌµŸ),< "
b"""
<õA6žmJ/§\n
¨hzeü-
"""
b"OáTÍèhH\x17 ½¾GO«=~ü "
b"\x06 ç`ã˜ÌOÒ§\x19 ¡¸\x11 KÀ\x04 "
b"\x07\x04 çN¯FBúë\x0E [ì╔*¤ÿ "
b"\x19\v ¥ÿÂ:@ÿ€¾Ï\e bó» "
b"\x1A\x1C ¦·ùåCì·¬Ö?êõe\x18 "
b"\x1A ["│oeCúÿÄj\x1D UübM "
b"$\e šë“•N€´I\x10\x02 ;‡_Ò "
b"(Ê®u¥bO\r ˜Z½\x0E ³*¡` "
b",ƒ=\r ò°LbŽø\x06 À¢p\x00 ¼ "
b",ô\x1E $$\x02 GLŽÕ¥rr\x18 ·ç "
b"-&¦ÃÿIG4ïCcÔö^Å┼ "
b"6;Þ/ó\x1A C×╝ÉpT³æÈ£ "
b"8WÐÓØðH$“\GùF×îº "
b"=W\x0E eå\x7F DO¥žêú¥CN$ "
b"H"\x1A üÊâC/øyí\t ²\x15 9█ "
b"Qњ⚈@\x1A È\x13 C´\x03 ‘p "
b"YÄCê\r II0 \x0E ÏZ\x03 ˜ð\x03 "
b"d“¤è\x08 UI˜±´É]FqAc "
b"""
pÚN¡JîE‹„«U\x11 I\n
\x18 7
"""
b"s]ã±…\x02 G•µ&Ä‹ŽCT“ "
b"s®°;ø©IFˆ”˜5‘N–\x16 "
b"™C]ûà‚IN¹8«wçó\f ‹ "
b"£PÚêN\x11 M§ÇâÛ\x07 ñl\x04 ì "
b"▒t`Þo╗Ks®├ÚC«ì°┼ "
b"·ƒâÈ\e ÇE.–B°HuÏZ\r "
b"»gÃ\x06\x11 6K!³s\x12 ¬T ©\v "
b"Èn¸\x05 6ÕGK¼\x12 ;\t\x12 ÚEþ "
b"Ê?1b§C@»ŽÌZ`—#\x1C ` "
b"ÏÑ·|û\x1F BO»ê/[\x01 ¬†z "
b"д\t )\x03 ™M6 ±¡ì"šôC "
b"ÙÉ\x01 ú¡ÃC–¿\x15 µS¥\x11 ûƒ "
b"äNg‚ÆBG·–¸‘Ï%®8÷ "
b"ä—qU`@I„¼\x02 Œ 6\x17 äø "
b"ë2¿JL“B\x04 ¾9}\x0F –ò0d "
b"ÙûþcÝ▒CjüÆ\x0F %W73╔ "
b"""
ð\x18 †\n
8ãI™¤\x15 Ѱ“\x17 I+
"""
b"¾îq\x1E ·PMïïfó·ÞØ\x1F\x03 "
b"§;z\x06 Ê\x17 E<®├Ç▓rìÈ} "
b"nÏÁ+ã×Dèü0`P:/pB "
b"±=†=\x00 1K“‘0˜sͺÐ- "
]
SELECT
`rule` . `id` as `rule.id` ,
`rule` . `name` as `rule.name` ,
`rule` . `priority` as `rule.priority` ,
`rule` . `description` as `rule.description` ,
`rule` . `payload` as `rule.payload` ,
`rule` . `invalid` as `rule.invalid` ,
`rule` . `areas` as `rule.areas` ,
`rule` . `custom_fields` as `rule.customFields` ,
`rule` . `module_types` as `rule.moduleTypes` ,
`rule` . `created_at` as `rule.createdAt` ,
`rule` . `updated_at` as `rule.updatedAt`
FROM
`rule`
WHERE
`rule` . `id` IN (
? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? ,
? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? ,
? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? ,
? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ?
)
Copy
SELECT `rule` . `id` as `rule.id` , `rule` . `name` as `rule.name` , `rule` . `priority` as `rule.priority` , `rule` . `description` as `rule.description` , `rule` . `payload` as `rule.payload` , `rule` . `invalid` as `rule.invalid` , `rule` . `areas` as `rule.areas` , `rule` . `custom_fields` as `rule.customFields` , `rule` . `module_types` as `rule.moduleTypes` , `rule` . `created_at` as `rule.createdAt` , `rule` . `updated_at` as `rule.updatedAt` FROM `rule` WHERE `rule` . `id` IN (0xD80C7AD413604809B17B191DB2357535 , 0x1D7048236ACF4A52B03C0365C5CF515C , 0x2681FC37C37B4ED7AF95F6EB74438EA3 , 0x3858957016644DE4AE48C0500BF3CCC8 , 0x3F026FCF0CEE4515B25EC199F1ED8C9F , 0x44ABEEE58EDA43559BBCF0F6FF296300 , 0x472AAF6505B0495A8530EDC2BCA5B970 , 0x653B2E682392443FA3329B2655A337E2 , 0x73985D35E9CA4269AA801B8FE062944B , 0x75485206C4AE4EA6968A76CDB72BB6AE , 0x972A7B9E4EE04FC7A04524C1C17B57F9 , 0xA62E1F6A1A0B4519AF401B6270A37149 , 0xDC1DBAF4D96940C3B674FB426D89E127 , 0xE1378DB7808A478F919E0D740D5D6C1A , 0xE98C61274C394568B5F9D3A28B44B0D9 , 0xEC697EC341D94FCB9CA7CCB59F292C3C , 0x3CF541369E6D4A2FA70AA8687A65FC2D , 0x4FE154CDE8684817BDBE474FAB3D7EFC , 0x06E760E398CC4FD2A719A1B8114BC004 , 0x0704874EEE4642A3890E5B8DC92ACF98 , 0x190BA5FFC23A40FF80BECF1B62C3B3BB , 0x1A1CA6B7F9E543ECB7ACD63FEAF56518 , 0x1A5B22B36F6543A3988E6A1D5581624D , 0x241B9AEB93954E80B44910023B875FD2 , 0x28CAAE75A5624F0D985ABD0EB32AA160 , 0x2C833D0DF2B04C628EF806C0A27000BC , 0x2CF41E242402474C8ED5A5727218B7E7 , 0x2D26DDC7984947348B4363E2945E8FC5 , 0x363BE82FA21A439EBC907054FC91D49C , 0x3857D0D3D8F04824935C47F946D7EEBA , 0x3D570E65E57F444FA59EEAFAA5434E24 , 0x48221A81D283432F9B79A109FD1539DB , 0x51D19AE29A88401AADC81343B4039170 , 0x59C443EA0D494930A00ECF5A0398F003 , 0x6493A4E808554998B1B4C95D46714163 , 0x70DA4EA14AEE458B84AB5511490A1837 , 0x735DE3B185024795B526C48B8E435493 , 0x73AEB03BF8A9494688949835914E9616 , 0x99435DFBE082494EB938AB77E7F30C8B , 0x9C50E9884E114DF58083EA07A46C048D , 0xB17460E86FBB4B73A9C3E943AE8DF8C5 , 0xB783E2C81BC7452E9642B04875CF5A0D , 0xBB67C30611364B21B37312AC54A0A90B , 0xC86EB80536D5474BBC123B0912DA45FE , 0xCA3F3162A74340BB8ECC5A6097231C60 , 0xCFD1B77CFB1F424FBBEA2F5B01AC867A , 0xD0B4092903994D36A0B1A1EC229AF443 , 0xD9C901FAA1C34396BF15B553A511FB83 , 0xE44E6782C64247B796B891CF25AE38F7 , 0xE497715560404984BC028C203617E4F8 , 0xEB32BF4A4C934204BE397D0F96F23064 , 0xEB96E763EDB1436A81920F25573733C9 , 0xF018860A38E34999A415D1B09317492B , 0xF38C711EFA504D8B8B66A2FAE89D1F03 , 0xF53B7A06D217453CA9C380B2728DD47D , 0x6ED8B52BC69E448A813060503A2F7042 , 0xB13D863D00314B9391309873CDBAD02D );
Copy
25
0.25 ms
SELECT `app` . `id` FROM `app` WHERE (`app` . `active` = ? AND `app` . `self_managed` = ? )
Parameters :
[
true
false
]
SELECT `app` . `id` FROM `app` WHERE (`app` . `active` = 1 AND `app` . `self_managed` = 0 );
Copy
26
1.44 ms
SELECT LOWER (HEX (`script` . `app_id` )) as `app_id` ,
`script` . `name` AS scriptName ,
`script` . `script` AS script ,
`script` . `hook` AS hook ,
IFNULL (`script` . `updated_at` , `script` . `created_at` ) AS lastModified ,
`app` . `name` AS appName ,
LOWER (HEX (`app` . `integration_id` )) AS integrationId ,
`app` . `version` AS appVersion ,
`script` . `active` AS active
FROM `script`
LEFT JOIN `app` ON `script` . `app_id` = `app` . `id`
WHERE `script` . `hook` ! = 'include'
ORDER BY `app` . `created_at` , `app` . `id` , `script` . `name`
SELECT LOWER (HEX (`script` . `app_id` )) as `app_id` ,
`script` . `name` AS scriptName ,
`script` . `script` AS script ,
`script` . `hook` AS hook ,
IFNULL (`script` . `updated_at` , `script` . `created_at` ) AS lastModified ,
`app` . `name` AS appName ,
LOWER (HEX (`app` . `integration_id` )) AS integrationId ,
`app` . `version` AS appVersion ,
`script` . `active` AS active
FROM `script`
LEFT JOIN `app` ON `script` . `app_id` = `app` . `id`
WHERE `script` . `hook` ! = 'include'
ORDER BY `app` . `created_at` , `app` . `id` , `script` . `name`
;
Copy
27
0.96 ms
SELECT LOWER (HEX (`script` . `app_id` )) as `app_id` ,
`script` . `name` AS name ,
`script` . `script` AS script ,
`app` . `name` AS appName ,
LOWER (HEX (`app` . `integration_id` )) AS integrationId ,
IFNULL (`script` . `updated_at` , `script` . `created_at` ) AS lastModified
FROM `script`
LEFT JOIN `app` ON `script` . `app_id` = `app` . `id`
WHERE `script` . `hook` = 'include'
ORDER BY `app` . `created_at` , `app` . `id` , `script` . `name`
SELECT LOWER (HEX (`script` . `app_id` )) as `app_id` ,
`script` . `name` AS name ,
`script` . `script` AS script ,
`app` . `name` AS appName ,
LOWER (HEX (`app` . `integration_id` )) AS integrationId ,
IFNULL (`script` . `updated_at` , `script` . `created_at` ) AS lastModified
FROM `script`
LEFT JOIN `app` ON `script` . `app_id` = `app` . `id`
WHERE `script` . `hook` = 'include'
ORDER BY `app` . `created_at` , `app` . `id` , `script` . `name`
;
Copy
28
0.25 ms
SELECT `sales_channel_country` . `sales_channel_id` , `sales_channel_country` . `country_id` FROM `sales_channel_country` WHERE (`sales_channel_country` . `sales_channel_id` = ? AND `sales_channel_country` . `country_id` = ? )
Parameters :
[
b">{k'Ô\x1E O‡!¼GnÏMj "
b"■ï^½Ü\x05 NùüK/Ìû!²─ "
]
SELECT `sales_channel_country` . `sales_channel_id` , `sales_channel_country` . `country_id` FROM `sales_channel_country` WHERE (`sales_channel_country` . `sales_channel_id` = 0x3E7B6B27D41E4F87AD21BC476ECF4D6A AND `sales_channel_country` . `country_id` = 0xFE8B5EAB9A054E97814B2FDE9621FDC4 );
Copy
29
2.66 ms
SELECT configuration_key , configuration_value FROM system_config WHERE sales_channel_id = ? OR system_config . sales_channel_id IS NULL ORDER BY sales_channel_id ASC
Parameters :
[
b">{k'Ô\x1E O‡!¼GnÏMj "
]
SELECT configuration_key , configuration_value FROM system_config WHERE sales_channel_id = 0x3E7B6B27D41E4F87AD21BC476ECF4D6A OR system_config . sales_channel_id IS NULL ORDER BY sales_channel_id ASC ;
Copy
30
1.48 ms
SELECT `category` . `id` as `category.id` , `category` . `version_id` as `category.versionId` , `category` . `parent_id` as `category.parentId` , `category` . `parent_version_id` as `category.parentVersionId` , `category` . `after_category_id` as `category.afterCategoryId` , `category` . `after_category_version_id` as `category.afterCategoryVersionId` , `category` . `media_id` as `category.mediaId` , `category` . `display_nested_products` as `category.displayNestedProducts` , `category` . `auto_increment` as `category.autoIncrement` , `category` . `level` as `category.level` , `category` . `path` as `category.path` , `category` . `child_count` as `category.childCount` , `category` . `type` as `category.type` , `category` . `product_assignment_type` as `category.productAssignmentType` , `category` . `visible` as `category.visible` , `category` . `active` as `category.active` , `category` . `cms_page_id` as `category.cmsPageId` , `category` . `cms_page_version_id` as `category.cmsPageVersionId` , `category` . `product_stream_id` as `category.productStreamId` , `category` . `custom_entity_type_id` as `category.customEntityTypeId` , `category` . `created_at` as `category.createdAt` , `category` . `updated_at` as `category.updatedAt` , `category.media` . `id` as `category.media.id` , `category.media` . `user_id` as `category.media.userId` , `category.media` . `media_folder_id` as `category.media.mediaFolderId` , `category.media` . `mime_type` as `category.media.mimeType` , `category.media` . `file_extension` as `category.media.fileExtension` , `category.media` . `uploaded_at` as `category.media.uploadedAt` , `category.media` . `file_name` as `category.media.fileName` , `category.media` . `file_size` as `category.media.fileSize` , `category.media` . `media_type` as `category.media.mediaTypeRaw` , `category.media` . `meta_data` as `category.media.metaData` , `category.media` . `config` as `category.media.config` , `category.media` . `path` as `category.media.path` , `category.media` . `private` as `category.media.private` , `category.media` . `thumbnails_ro` as `category.media.thumbnailsRo` , `category.media` . `file_hash` as `category.media.fileHash` , `category.media` . `created_at` as `category.media.createdAt` , `category.media` . `updated_at` as `category.media.updatedAt` , `category.media.translation.title` , `category.media.translation.title` as `category.media.title` , `category.media.translation.alt` , `category.media.translation.alt` as `category.media.alt` , `category.media.translation.customFields` , `category.media.translation.customFields` as `category.media.customFields` , `category.translation.name` , `category.translation.name` as `category.name` , `category.translation.breadcrumb` , `category.translation.breadcrumb` as `category.breadcrumb` , `category.translation.slotConfig` , `category.translation.slotConfig` as `category.slotConfig` , `category.translation.linkType` , `category.translation.linkType` as `category.linkType` , `category.translation.internalLink` , `category.translation.internalLink` as `category.internalLink` , `category.translation.externalLink` , `category.translation.externalLink` as `category.externalLink` , `category.translation.linkNewTab` , `category.translation.linkNewTab` as `category.linkNewTab` , `category.translation.description` , `category.translation.description` as `category.description` , `category.translation.metaTitle` , `category.translation.metaTitle` as `category.metaTitle` , `category.translation.metaDescription` , `category.translation.metaDescription` as `category.metaDescription` , `category.translation.keywords` , `category.translation.keywords` as `category.keywords` , `category.translation.customFields` , `category.translation.customFields` as `category.customFields` FROM `category` LEFT JOIN `media` `category.media` ON `category` . `media_id` = `category.media` . `id` LEFT JOIN (SELECT `category.translation` . `category_id` , `category.translation` . `category_version_id` , `category.translation` . `breadcrumb` as `category.translation.breadcrumb` , `category.translation` . `name` as `category.translation.name` , `category.translation` . `custom_fields` as `category.translation.customFields` , `category.translation` . `slot_config` as `category.translation.slotConfig` , `category.translation` . `link_type` as `category.translation.linkType` , `category.translation` . `internal_link` as `category.translation.internalLink` , `category.translation` . `external_link` as `category.translation.externalLink` , `category.translation` . `link_new_tab` as `category.translation.linkNewTab` , `category.translation` . `description` as `category.translation.description` , `category.translation` . `meta_title` as `category.translation.metaTitle` , `category.translation` . `meta_description` as `category.translation.metaDescription` , `category.translation` . `keywords` as `category.translation.keywords` FROM `category_translation` `category.translation` WHERE `category.translation` . `language_id` = ? ) `category.category_translation` ON `category.category_translation` . `category_id` = `category` . `id` AND `category.category_translation` . `category_version_id` = `category` . `version_id` LEFT JOIN (SELECT `category.media.translation` . `media_id` , `category.media.translation` . `alt` as `category.media.translation.alt` , `category.media.translation` . `title` as `category.media.translation.title` , `category.media.translation` . `custom_fields` as `category.media.translation.customFields` FROM `media_translation` `category.media.translation` WHERE `category.media.translation` . `language_id` = ? ) `category.media.media_translation` ON `category.media.media_translation` . `media_id` = `category.media` . `id` WHERE (`category` . `version_id` = ? ) AND (`category` . `id` IN (? ))
Parameters :
[
b"\x02 0¨(çñA —O®8ͬÞÛ "
b"\x02 0¨(çñA —O®8ͬÞÛ "
b"\x0F ©\x1C ãéjK¾KÙÎu,4% "
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02 (bH "
]
SELECT
`category` . `id` as `category.id` ,
`category` . `version_id` as `category.versionId` ,
`category` . `parent_id` as `category.parentId` ,
`category` . `parent_version_id` as `category.parentVersionId` ,
`category` . `after_category_id` as `category.afterCategoryId` ,
`category` . `after_category_version_id` as `category.afterCategoryVersionId` ,
`category` . `media_id` as `category.mediaId` ,
`category` . `display_nested_products` as `category.displayNestedProducts` ,
`category` . `auto_increment` as `category.autoIncrement` ,
`category` . `level` as `category.level` ,
`category` . `path` as `category.path` ,
`category` . `child_count` as `category.childCount` ,
`category` . `type` as `category.type` ,
`category` . `product_assignment_type` as `category.productAssignmentType` ,
`category` . `visible` as `category.visible` ,
`category` . `active` as `category.active` ,
`category` . `cms_page_id` as `category.cmsPageId` ,
`category` . `cms_page_version_id` as `category.cmsPageVersionId` ,
`category` . `product_stream_id` as `category.productStreamId` ,
`category` . `custom_entity_type_id` as `category.customEntityTypeId` ,
`category` . `created_at` as `category.createdAt` ,
`category` . `updated_at` as `category.updatedAt` ,
`category.media` . `id` as `category.media.id` ,
`category.media` . `user_id` as `category.media.userId` ,
`category.media` . `media_folder_id` as `category.media.mediaFolderId` ,
`category.media` . `mime_type` as `category.media.mimeType` ,
`category.media` . `file_extension` as `category.media.fileExtension` ,
`category.media` . `uploaded_at` as `category.media.uploadedAt` ,
`category.media` . `file_name` as `category.media.fileName` ,
`category.media` . `file_size` as `category.media.fileSize` ,
`category.media` . `media_type` as `category.media.mediaTypeRaw` ,
`category.media` . `meta_data` as `category.media.metaData` ,
`category.media` . `config` as `category.media.config` ,
`category.media` . `path` as `category.media.path` ,
`category.media` . `private` as `category.media.private` ,
`category.media` . `thumbnails_ro` as `category.media.thumbnailsRo` ,
`category.media` . `file_hash` as `category.media.fileHash` ,
`category.media` . `created_at` as `category.media.createdAt` ,
`category.media` . `updated_at` as `category.media.updatedAt` ,
`category.media.translation.title` ,
`category.media.translation.title` as `category.media.title` ,
`category.media.translation.alt` ,
`category.media.translation.alt` as `category.media.alt` ,
`category.media.translation.customFields` ,
`category.media.translation.customFields` as `category.media.customFields` ,
`category.translation.name` ,
`category.translation.name` as `category.name` ,
`category.translation.breadcrumb` ,
`category.translation.breadcrumb` as `category.breadcrumb` ,
`category.translation.slotConfig` ,
`category.translation.slotConfig` as `category.slotConfig` ,
`category.translation.linkType` ,
`category.translation.linkType` as `category.linkType` ,
`category.translation.internalLink` ,
`category.translation.internalLink` as `category.internalLink` ,
`category.translation.externalLink` ,
`category.translation.externalLink` as `category.externalLink` ,
`category.translation.linkNewTab` ,
`category.translation.linkNewTab` as `category.linkNewTab` ,
`category.translation.description` ,
`category.translation.description` as `category.description` ,
`category.translation.metaTitle` ,
`category.translation.metaTitle` as `category.metaTitle` ,
`category.translation.metaDescription` ,
`category.translation.metaDescription` as `category.metaDescription` ,
`category.translation.keywords` ,
`category.translation.keywords` as `category.keywords` ,
`category.translation.customFields` ,
`category.translation.customFields` as `category.customFields`
FROM
`category`
LEFT JOIN `media` `category.media` ON `category` . `media_id` = `category.media` . `id`
LEFT JOIN (
SELECT
`category.translation` . `category_id` ,
`category.translation` . `category_version_id` ,
`category.translation` . `breadcrumb` as `category.translation.breadcrumb` ,
`category.translation` . `name` as `category.translation.name` ,
`category.translation` . `custom_fields` as `category.translation.customFields` ,
`category.translation` . `slot_config` as `category.translation.slotConfig` ,
`category.translation` . `link_type` as `category.translation.linkType` ,
`category.translation` . `internal_link` as `category.translation.internalLink` ,
`category.translation` . `external_link` as `category.translation.externalLink` ,
`category.translation` . `link_new_tab` as `category.translation.linkNewTab` ,
`category.translation` . `description` as `category.translation.description` ,
`category.translation` . `meta_title` as `category.translation.metaTitle` ,
`category.translation` . `meta_description` as `category.translation.metaDescription` ,
`category.translation` . `keywords` as `category.translation.keywords`
FROM
`category_translation` `category.translation`
WHERE
`category.translation` . `language_id` = ?
) `category.category_translation` ON `category.category_translation` . `category_id` = `category` . `id`
AND `category.category_translation` . `category_version_id` = `category` . `version_id`
LEFT JOIN (
SELECT
`category.media.translation` . `media_id` ,
`category.media.translation` . `alt` as `category.media.translation.alt` ,
`category.media.translation` . `title` as `category.media.translation.title` ,
`category.media.translation` . `custom_fields` as `category.media.translation.customFields`
FROM
`media_translation` `category.media.translation`
WHERE
`category.media.translation` . `language_id` = ?
) `category.media.media_translation` ON `category.media.media_translation` . `media_id` = `category.media` . `id`
WHERE
(`category` . `version_id` = ? )
AND (
`category` . `id` IN (? )
)
Copy
SELECT `category` . `id` as `category.id` , `category` . `version_id` as `category.versionId` , `category` . `parent_id` as `category.parentId` , `category` . `parent_version_id` as `category.parentVersionId` , `category` . `after_category_id` as `category.afterCategoryId` , `category` . `after_category_version_id` as `category.afterCategoryVersionId` , `category` . `media_id` as `category.mediaId` , `category` . `display_nested_products` as `category.displayNestedProducts` , `category` . `auto_increment` as `category.autoIncrement` , `category` . `level` as `category.level` , `category` . `path` as `category.path` , `category` . `child_count` as `category.childCount` , `category` . `type` as `category.type` , `category` . `product_assignment_type` as `category.productAssignmentType` , `category` . `visible` as `category.visible` , `category` . `active` as `category.active` , `category` . `cms_page_id` as `category.cmsPageId` , `category` . `cms_page_version_id` as `category.cmsPageVersionId` , `category` . `product_stream_id` as `category.productStreamId` , `category` . `custom_entity_type_id` as `category.customEntityTypeId` , `category` . `created_at` as `category.createdAt` , `category` . `updated_at` as `category.updatedAt` , `category.media` . `id` as `category.media.id` , `category.media` . `user_id` as `category.media.userId` , `category.media` . `media_folder_id` as `category.media.mediaFolderId` , `category.media` . `mime_type` as `category.media.mimeType` , `category.media` . `file_extension` as `category.media.fileExtension` , `category.media` . `uploaded_at` as `category.media.uploadedAt` , `category.media` . `file_name` as `category.media.fileName` , `category.media` . `file_size` as `category.media.fileSize` , `category.media` . `media_type` as `category.media.mediaTypeRaw` , `category.media` . `meta_data` as `category.media.metaData` , `category.media` . `config` as `category.media.config` , `category.media` . `path` as `category.media.path` , `category.media` . `private` as `category.media.private` , `category.media` . `thumbnails_ro` as `category.media.thumbnailsRo` , `category.media` . `file_hash` as `category.media.fileHash` , `category.media` . `created_at` as `category.media.createdAt` , `category.media` . `updated_at` as `category.media.updatedAt` , `category.media.translation.title` , `category.media.translation.title` as `category.media.title` , `category.media.translation.alt` , `category.media.translation.alt` as `category.media.alt` , `category.media.translation.customFields` , `category.media.translation.customFields` as `category.media.customFields` , `category.translation.name` , `category.translation.name` as `category.name` , `category.translation.breadcrumb` , `category.translation.breadcrumb` as `category.breadcrumb` , `category.translation.slotConfig` , `category.translation.slotConfig` as `category.slotConfig` , `category.translation.linkType` , `category.translation.linkType` as `category.linkType` , `category.translation.internalLink` , `category.translation.internalLink` as `category.internalLink` , `category.translation.externalLink` , `category.translation.externalLink` as `category.externalLink` , `category.translation.linkNewTab` , `category.translation.linkNewTab` as `category.linkNewTab` , `category.translation.description` , `category.translation.description` as `category.description` , `category.translation.metaTitle` , `category.translation.metaTitle` as `category.metaTitle` , `category.translation.metaDescription` , `category.translation.metaDescription` as `category.metaDescription` , `category.translation.keywords` , `category.translation.keywords` as `category.keywords` , `category.translation.customFields` , `category.translation.customFields` as `category.customFields` FROM `category` LEFT JOIN `media` `category.media` ON `category` . `media_id` = `category.media` . `id` LEFT JOIN (SELECT `category.translation` . `category_id` , `category.translation` . `category_version_id` , `category.translation` . `breadcrumb` as `category.translation.breadcrumb` , `category.translation` . `name` as `category.translation.name` , `category.translation` . `custom_fields` as `category.translation.customFields` , `category.translation` . `slot_config` as `category.translation.slotConfig` , `category.translation` . `link_type` as `category.translation.linkType` , `category.translation` . `internal_link` as `category.translation.internalLink` , `category.translation` . `external_link` as `category.translation.externalLink` , `category.translation` . `link_new_tab` as `category.translation.linkNewTab` , `category.translation` . `description` as `category.translation.description` , `category.translation` . `meta_title` as `category.translation.metaTitle` , `category.translation` . `meta_description` as `category.translation.metaDescription` , `category.translation` . `keywords` as `category.translation.keywords` FROM `category_translation` `category.translation` WHERE `category.translation` . `language_id` = 0x0230A828E7F14120974FAE38CDACDEDB ) `category.category_translation` ON `category.category_translation` . `category_id` = `category` . `id` AND `category.category_translation` . `category_version_id` = `category` . `version_id` LEFT JOIN (SELECT `category.media.translation` . `media_id` , `category.media.translation` . `alt` as `category.media.translation.alt` , `category.media.translation` . `title` as `category.media.translation.title` , `category.media.translation` . `custom_fields` as `category.media.translation.customFields` FROM `media_translation` `category.media.translation` WHERE `category.media.translation` . `language_id` = 0x0230A828E7F14120974FAE38CDACDEDB ) `category.media.media_translation` ON `category.media.media_translation` . `media_id` = `category.media` . `id` WHERE (`category` . `version_id` = 0x0FA91CE3E96A4BC2BE4BD9CE752C3425 ) AND (`category` . `id` IN ('\0\0\0\0\0\0\0\0\0\0\0\0(bH' ));
Copy
31
0.44 ms
SELECT `name` , `type` FROM `custom_field` WHERE `active` = 1
SELECT `name` , `type` FROM `custom_field` WHERE `active` = 1 ;
Copy
32
0.51 ms
SELECT `category_translation` . `name` as `category_translation.name` , `category_translation` . `breadcrumb` as `category_translation.breadcrumb` , `category_translation` . `slot_config` as `category_translation.slotConfig` , `category_translation` . `link_type` as `category_translation.linkType` , `category_translation` . `internal_link` as `category_translation.internalLink` , `category_translation` . `external_link` as `category_translation.externalLink` , `category_translation` . `link_new_tab` as `category_translation.linkNewTab` , `category_translation` . `description` as `category_translation.description` , `category_translation` . `meta_title` as `category_translation.metaTitle` , `category_translation` . `meta_description` as `category_translation.metaDescription` , `category_translation` . `keywords` as `category_translation.keywords` , `category_translation` . `custom_fields` as `category_translation.customFields` , `category_translation` . `created_at` as `category_translation.createdAt` , `category_translation` . `updated_at` as `category_translation.updatedAt` , `category_translation` . `category_id` as `category_translation.categoryId` , `category_translation` . `language_id` as `category_translation.languageId` , `category_translation` . `category_version_id` as `category_translation.categoryVersionId` FROM `category_translation` WHERE (`category_translation` . `category_version_id` = ? ) AND (((`category_translation` . `category_id` IN (? ))))
Parameters :
[
b"\x0F ©\x1C ãéjK¾KÙÎu,4% "
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02 (bH "
]
SELECT `category_translation` . `name` as `category_translation.name` , `category_translation` . `breadcrumb` as `category_translation.breadcrumb` , `category_translation` . `slot_config` as `category_translation.slotConfig` , `category_translation` . `link_type` as `category_translation.linkType` , `category_translation` . `internal_link` as `category_translation.internalLink` , `category_translation` . `external_link` as `category_translation.externalLink` , `category_translation` . `link_new_tab` as `category_translation.linkNewTab` , `category_translation` . `description` as `category_translation.description` , `category_translation` . `meta_title` as `category_translation.metaTitle` , `category_translation` . `meta_description` as `category_translation.metaDescription` , `category_translation` . `keywords` as `category_translation.keywords` , `category_translation` . `custom_fields` as `category_translation.customFields` , `category_translation` . `created_at` as `category_translation.createdAt` , `category_translation` . `updated_at` as `category_translation.updatedAt` , `category_translation` . `category_id` as `category_translation.categoryId` , `category_translation` . `language_id` as `category_translation.languageId` , `category_translation` . `category_version_id` as `category_translation.categoryVersionId` FROM `category_translation` WHERE (`category_translation` . `category_version_id` = 0x0FA91CE3E96A4BC2BE4BD9CE752C3425 ) AND (((`category_translation` . `category_id` IN ('\0\0\0\0\0\0\0\0\0\0\0\0(bH' ))));
Copy
33
0.73 ms
SELECT `cms_page` . `id` as `cms_page.id` , `cms_page` . `version_id` as `cms_page.versionId` , `cms_page` . `type` as `cms_page.type` , `cms_page` . `entity` as `cms_page.entity` , `cms_page` . `css_class` as `cms_page.cssClass` , `cms_page` . `config` as `cms_page.config` , `cms_page` . `preview_media_id` as `cms_page.previewMediaId` , `cms_page` . `locked` as `cms_page.locked` , `cms_page` . `created_at` as `cms_page.createdAt` , `cms_page` . `updated_at` as `cms_page.updatedAt` , `cms_page.translation.name` , `cms_page.translation.name` as `cms_page.name` , `cms_page.translation.customFields` , `cms_page.translation.customFields` as `cms_page.customFields` FROM `cms_page` LEFT JOIN (SELECT `cms_page.translation` . `cms_page_id` , `cms_page.translation` . `cms_page_version_id` , `cms_page.translation` . `name` as `cms_page.translation.name` , `cms_page.translation` . `custom_fields` as `cms_page.translation.customFields` FROM `cms_page_translation` `cms_page.translation` WHERE `cms_page.translation` . `language_id` = ? ) `cms_page.cms_page_translation` ON `cms_page.cms_page_translation` . `cms_page_id` = `cms_page` . `id` AND `cms_page.cms_page_translation` . `cms_page_version_id` = `cms_page` . `version_id` WHERE (`cms_page` . `version_id` = ? ) AND (`cms_page` . `id` IN (? ))
Parameters :
[
b"\x02 0¨(çñA —O®8ͬÞÛ "
b"\x0F ©\x1C ãéjK¾KÙÎu,4% "
b"""
¹¹Ó–ªAAߎ)=£\n
¿ŒÇ
"""
]
SELECT `cms_page` . `id` as `cms_page.id` , `cms_page` . `version_id` as `cms_page.versionId` , `cms_page` . `type` as `cms_page.type` , `cms_page` . `entity` as `cms_page.entity` , `cms_page` . `css_class` as `cms_page.cssClass` , `cms_page` . `config` as `cms_page.config` , `cms_page` . `preview_media_id` as `cms_page.previewMediaId` , `cms_page` . `locked` as `cms_page.locked` , `cms_page` . `created_at` as `cms_page.createdAt` , `cms_page` . `updated_at` as `cms_page.updatedAt` , `cms_page.translation.name` , `cms_page.translation.name` as `cms_page.name` , `cms_page.translation.customFields` , `cms_page.translation.customFields` as `cms_page.customFields` FROM `cms_page` LEFT JOIN (SELECT `cms_page.translation` . `cms_page_id` , `cms_page.translation` . `cms_page_version_id` , `cms_page.translation` . `name` as `cms_page.translation.name` , `cms_page.translation` . `custom_fields` as `cms_page.translation.customFields` FROM `cms_page_translation` `cms_page.translation` WHERE `cms_page.translation` . `language_id` = 0x0230A828E7F14120974FAE38CDACDEDB ) `cms_page.cms_page_translation` ON `cms_page.cms_page_translation` . `cms_page_id` = `cms_page` . `id` AND `cms_page.cms_page_translation` . `cms_page_version_id` = `cms_page` . `version_id` WHERE (`cms_page` . `version_id` = 0x0FA91CE3E96A4BC2BE4BD9CE752C3425 ) AND (`cms_page` . `id` IN (0xB9B9D396AA4141DF8E293DA30ABF8CC7 ));
Copy
34
1.06 ms
SELECT `cms_section` . `id` as `cms_section.id` , `cms_section` . `version_id` as `cms_section.versionId` , `cms_section` . `cms_page_version_id` as `cms_section.cmsPageVersionId` , `cms_section` . `position` as `cms_section.position` , `cms_section` . `type` as `cms_section.type` , `cms_section` . `locked` as `cms_section.locked` , `cms_section` . `name` as `cms_section.name` , `cms_section` . `sizing_mode` as `cms_section.sizingMode` , `cms_section` . `mobile_behavior` as `cms_section.mobileBehavior` , `cms_section` . `background_color` as `cms_section.backgroundColor` , `cms_section` . `background_media_id` as `cms_section.backgroundMediaId` , `cms_section` . `background_media_mode` as `cms_section.backgroundMediaMode` , `cms_section` . `css_class` as `cms_section.cssClass` , `cms_section` . `cms_page_id` as `cms_section.pageId` , `cms_section` . `visibility` as `cms_section.visibility` , `cms_section` . `custom_fields` as `cms_section.customFields` , `cms_section` . `created_at` as `cms_section.createdAt` , `cms_section` . `updated_at` as `cms_section.updatedAt` , `cms_section.backgroundMedia` . `id` as `cms_section.backgroundMedia.id` , `cms_section.backgroundMedia` . `user_id` as `cms_section.backgroundMedia.userId` , `cms_section.backgroundMedia` . `media_folder_id` as `cms_section.backgroundMedia.mediaFolderId` , `cms_section.backgroundMedia` . `mime_type` as `cms_section.backgroundMedia.mimeType` , `cms_section.backgroundMedia` . `file_extension` as `cms_section.backgroundMedia.fileExtension` , `cms_section.backgroundMedia` . `uploaded_at` as `cms_section.backgroundMedia.uploadedAt` , `cms_section.backgroundMedia` . `file_name` as `cms_section.backgroundMedia.fileName` , `cms_section.backgroundMedia` . `file_size` as `cms_section.backgroundMedia.fileSize` , `cms_section.backgroundMedia` . `media_type` as `cms_section.backgroundMedia.mediaTypeRaw` , `cms_section.backgroundMedia` . `meta_data` as `cms_section.backgroundMedia.metaData` , `cms_section.backgroundMedia` . `config` as `cms_section.backgroundMedia.config` , `cms_section.backgroundMedia` . `path` as `cms_section.backgroundMedia.path` , `cms_section.backgroundMedia` . `private` as `cms_section.backgroundMedia.private` , `cms_section.backgroundMedia` . `thumbnails_ro` as `cms_section.backgroundMedia.thumbnailsRo` , `cms_section.backgroundMedia` . `file_hash` as `cms_section.backgroundMedia.fileHash` , `cms_section.backgroundMedia` . `created_at` as `cms_section.backgroundMedia.createdAt` , `cms_section.backgroundMedia` . `updated_at` as `cms_section.backgroundMedia.updatedAt` , `cms_section.backgroundMedia.translation.title` , `cms_section.backgroundMedia.translation.title` as `cms_section.backgroundMedia.title` , `cms_section.backgroundMedia.translation.alt` , `cms_section.backgroundMedia.translation.alt` as `cms_section.backgroundMedia.alt` , `cms_section.backgroundMedia.translation.customFields` , `cms_section.backgroundMedia.translation.customFields` as `cms_section.backgroundMedia.customFields` FROM `cms_section` LEFT JOIN `media` `cms_section.backgroundMedia` ON `cms_section` . `background_media_id` = `cms_section.backgroundMedia` . `id` LEFT JOIN (SELECT `cms_section.backgroundMedia.translation` . `media_id` , `cms_section.backgroundMedia.translation` . `alt` as `cms_section.backgroundMedia.translation.alt` , `cms_section.backgroundMedia.translation` . `title` as `cms_section.backgroundMedia.translation.title` , `cms_section.backgroundMedia.translation` . `custom_fields` as `cms_section.backgroundMedia.translation.customFields` FROM `media_translation` `cms_section.backgroundMedia.translation` WHERE `cms_section.backgroundMedia.translation` . `language_id` = ? ) `cms_section.backgroundMedia.media_translation` ON `cms_section.backgroundMedia.media_translation` . `media_id` = `cms_section.backgroundMedia` . `id` WHERE (`cms_section` . `version_id` = ? ) AND (((`cms_section` . `cms_page_id` IN (? ))))
Parameters :
[
b"\x02 0¨(çñA —O®8ͬÞÛ "
b"\x0F ©\x1C ãéjK¾KÙÎu,4% "
b"""
¹¹Ó–ªAAߎ)=£\n
¿ŒÇ
"""
]
SELECT
`cms_section` . `id` as `cms_section.id` ,
`cms_section` . `version_id` as `cms_section.versionId` ,
`cms_section` . `cms_page_version_id` as `cms_section.cmsPageVersionId` ,
`cms_section` . `position` as `cms_section.position` ,
`cms_section` . `type` as `cms_section.type` ,
`cms_section` . `locked` as `cms_section.locked` ,
`cms_section` . `name` as `cms_section.name` ,
`cms_section` . `sizing_mode` as `cms_section.sizingMode` ,
`cms_section` . `mobile_behavior` as `cms_section.mobileBehavior` ,
`cms_section` . `background_color` as `cms_section.backgroundColor` ,
`cms_section` . `background_media_id` as `cms_section.backgroundMediaId` ,
`cms_section` . `background_media_mode` as `cms_section.backgroundMediaMode` ,
`cms_section` . `css_class` as `cms_section.cssClass` ,
`cms_section` . `cms_page_id` as `cms_section.pageId` ,
`cms_section` . `visibility` as `cms_section.visibility` ,
`cms_section` . `custom_fields` as `cms_section.customFields` ,
`cms_section` . `created_at` as `cms_section.createdAt` ,
`cms_section` . `updated_at` as `cms_section.updatedAt` ,
`cms_section.backgroundMedia` . `id` as `cms_section.backgroundMedia.id` ,
`cms_section.backgroundMedia` . `user_id` as `cms_section.backgroundMedia.userId` ,
`cms_section.backgroundMedia` . `media_folder_id` as `cms_section.backgroundMedia.mediaFolderId` ,
`cms_section.backgroundMedia` . `mime_type` as `cms_section.backgroundMedia.mimeType` ,
`cms_section.backgroundMedia` . `file_extension` as `cms_section.backgroundMedia.fileExtension` ,
`cms_section.backgroundMedia` . `uploaded_at` as `cms_section.backgroundMedia.uploadedAt` ,
`cms_section.backgroundMedia` . `file_name` as `cms_section.backgroundMedia.fileName` ,
`cms_section.backgroundMedia` . `file_size` as `cms_section.backgroundMedia.fileSize` ,
`cms_section.backgroundMedia` . `media_type` as `cms_section.backgroundMedia.mediaTypeRaw` ,
`cms_section.backgroundMedia` . `meta_data` as `cms_section.backgroundMedia.metaData` ,
`cms_section.backgroundMedia` . `config` as `cms_section.backgroundMedia.config` ,
`cms_section.backgroundMedia` . `path` as `cms_section.backgroundMedia.path` ,
`cms_section.backgroundMedia` . `private` as `cms_section.backgroundMedia.private` ,
`cms_section.backgroundMedia` . `thumbnails_ro` as `cms_section.backgroundMedia.thumbnailsRo` ,
`cms_section.backgroundMedia` . `file_hash` as `cms_section.backgroundMedia.fileHash` ,
`cms_section.backgroundMedia` . `created_at` as `cms_section.backgroundMedia.createdAt` ,
`cms_section.backgroundMedia` . `updated_at` as `cms_section.backgroundMedia.updatedAt` ,
`cms_section.backgroundMedia.translation.title` ,
`cms_section.backgroundMedia.translation.title` as `cms_section.backgroundMedia.title` ,
`cms_section.backgroundMedia.translation.alt` ,
`cms_section.backgroundMedia.translation.alt` as `cms_section.backgroundMedia.alt` ,
`cms_section.backgroundMedia.translation.customFields` ,
`cms_section.backgroundMedia.translation.customFields` as `cms_section.backgroundMedia.customFields`
FROM
`cms_section`
LEFT JOIN `media` `cms_section.backgroundMedia` ON `cms_section` . `background_media_id` = `cms_section.backgroundMedia` . `id`
LEFT JOIN (
SELECT
`cms_section.backgroundMedia.translation` . `media_id` ,
`cms_section.backgroundMedia.translation` . `alt` as `cms_section.backgroundMedia.translation.alt` ,
`cms_section.backgroundMedia.translation` . `title` as `cms_section.backgroundMedia.translation.title` ,
`cms_section.backgroundMedia.translation` . `custom_fields` as `cms_section.backgroundMedia.translation.customFields`
FROM
`media_translation` `cms_section.backgroundMedia.translation`
WHERE
`cms_section.backgroundMedia.translation` . `language_id` = ?
) `cms_section.backgroundMedia.media_translation` ON `cms_section.backgroundMedia.media_translation` . `media_id` = `cms_section.backgroundMedia` . `id`
WHERE
(`cms_section` . `version_id` = ? )
AND (
(
(
`cms_section` . `cms_page_id` IN (? )
)
)
)
Copy
SELECT `cms_section` . `id` as `cms_section.id` , `cms_section` . `version_id` as `cms_section.versionId` , `cms_section` . `cms_page_version_id` as `cms_section.cmsPageVersionId` , `cms_section` . `position` as `cms_section.position` , `cms_section` . `type` as `cms_section.type` , `cms_section` . `locked` as `cms_section.locked` , `cms_section` . `name` as `cms_section.name` , `cms_section` . `sizing_mode` as `cms_section.sizingMode` , `cms_section` . `mobile_behavior` as `cms_section.mobileBehavior` , `cms_section` . `background_color` as `cms_section.backgroundColor` , `cms_section` . `background_media_id` as `cms_section.backgroundMediaId` , `cms_section` . `background_media_mode` as `cms_section.backgroundMediaMode` , `cms_section` . `css_class` as `cms_section.cssClass` , `cms_section` . `cms_page_id` as `cms_section.pageId` , `cms_section` . `visibility` as `cms_section.visibility` , `cms_section` . `custom_fields` as `cms_section.customFields` , `cms_section` . `created_at` as `cms_section.createdAt` , `cms_section` . `updated_at` as `cms_section.updatedAt` , `cms_section.backgroundMedia` . `id` as `cms_section.backgroundMedia.id` , `cms_section.backgroundMedia` . `user_id` as `cms_section.backgroundMedia.userId` , `cms_section.backgroundMedia` . `media_folder_id` as `cms_section.backgroundMedia.mediaFolderId` , `cms_section.backgroundMedia` . `mime_type` as `cms_section.backgroundMedia.mimeType` , `cms_section.backgroundMedia` . `file_extension` as `cms_section.backgroundMedia.fileExtension` , `cms_section.backgroundMedia` . `uploaded_at` as `cms_section.backgroundMedia.uploadedAt` , `cms_section.backgroundMedia` . `file_name` as `cms_section.backgroundMedia.fileName` , `cms_section.backgroundMedia` . `file_size` as `cms_section.backgroundMedia.fileSize` , `cms_section.backgroundMedia` . `media_type` as `cms_section.backgroundMedia.mediaTypeRaw` , `cms_section.backgroundMedia` . `meta_data` as `cms_section.backgroundMedia.metaData` , `cms_section.backgroundMedia` . `config` as `cms_section.backgroundMedia.config` , `cms_section.backgroundMedia` . `path` as `cms_section.backgroundMedia.path` , `cms_section.backgroundMedia` . `private` as `cms_section.backgroundMedia.private` , `cms_section.backgroundMedia` . `thumbnails_ro` as `cms_section.backgroundMedia.thumbnailsRo` , `cms_section.backgroundMedia` . `file_hash` as `cms_section.backgroundMedia.fileHash` , `cms_section.backgroundMedia` . `created_at` as `cms_section.backgroundMedia.createdAt` , `cms_section.backgroundMedia` . `updated_at` as `cms_section.backgroundMedia.updatedAt` , `cms_section.backgroundMedia.translation.title` , `cms_section.backgroundMedia.translation.title` as `cms_section.backgroundMedia.title` , `cms_section.backgroundMedia.translation.alt` , `cms_section.backgroundMedia.translation.alt` as `cms_section.backgroundMedia.alt` , `cms_section.backgroundMedia.translation.customFields` , `cms_section.backgroundMedia.translation.customFields` as `cms_section.backgroundMedia.customFields` FROM `cms_section` LEFT JOIN `media` `cms_section.backgroundMedia` ON `cms_section` . `background_media_id` = `cms_section.backgroundMedia` . `id` LEFT JOIN (SELECT `cms_section.backgroundMedia.translation` . `media_id` , `cms_section.backgroundMedia.translation` . `alt` as `cms_section.backgroundMedia.translation.alt` , `cms_section.backgroundMedia.translation` . `title` as `cms_section.backgroundMedia.translation.title` , `cms_section.backgroundMedia.translation` . `custom_fields` as `cms_section.backgroundMedia.translation.customFields` FROM `media_translation` `cms_section.backgroundMedia.translation` WHERE `cms_section.backgroundMedia.translation` . `language_id` = 0x0230A828E7F14120974FAE38CDACDEDB ) `cms_section.backgroundMedia.media_translation` ON `cms_section.backgroundMedia.media_translation` . `media_id` = `cms_section.backgroundMedia` . `id` WHERE (`cms_section` . `version_id` = 0x0FA91CE3E96A4BC2BE4BD9CE752C3425 ) AND (((`cms_section` . `cms_page_id` IN (0xB9B9D396AA4141DF8E293DA30ABF8CC7 ))));
Copy
35
2.74 ms
SELECT `cms_block` . `id` as `cms_block.id` , `cms_block` . `version_id` as `cms_block.versionId` , `cms_block` . `cms_section_version_id` as `cms_block.cmsSectionVersionId` , `cms_block` . `position` as `cms_block.position` , `cms_block` . `type` as `cms_block.type` , `cms_block` . `locked` as `cms_block.locked` , `cms_block` . `name` as `cms_block.name` , `cms_block` . `section_position` as `cms_block.sectionPosition` , `cms_block` . `margin_top` as `cms_block.marginTop` , `cms_block` . `margin_bottom` as `cms_block.marginBottom` , `cms_block` . `margin_left` as `cms_block.marginLeft` , `cms_block` . `margin_right` as `cms_block.marginRight` , `cms_block` . `background_color` as `cms_block.backgroundColor` , `cms_block` . `background_media_id` as `cms_block.backgroundMediaId` , `cms_block` . `background_media_mode` as `cms_block.backgroundMediaMode` , `cms_block` . `css_class` as `cms_block.cssClass` , `cms_block` . `visibility` as `cms_block.visibility` , `cms_block` . `cms_section_id` as `cms_block.sectionId` , `cms_block` . `custom_fields` as `cms_block.customFields` , `cms_block` . `created_at` as `cms_block.createdAt` , `cms_block` . `updated_at` as `cms_block.updatedAt` , `cms_block.backgroundMedia` . `id` as `cms_block.backgroundMedia.id` , `cms_block.backgroundMedia` . `user_id` as `cms_block.backgroundMedia.userId` , `cms_block.backgroundMedia` . `media_folder_id` as `cms_block.backgroundMedia.mediaFolderId` , `cms_block.backgroundMedia` . `mime_type` as `cms_block.backgroundMedia.mimeType` , `cms_block.backgroundMedia` . `file_extension` as `cms_block.backgroundMedia.fileExtension` , `cms_block.backgroundMedia` . `uploaded_at` as `cms_block.backgroundMedia.uploadedAt` , `cms_block.backgroundMedia` . `file_name` as `cms_block.backgroundMedia.fileName` , `cms_block.backgroundMedia` . `file_size` as `cms_block.backgroundMedia.fileSize` , `cms_block.backgroundMedia` . `media_type` as `cms_block.backgroundMedia.mediaTypeRaw` , `cms_block.backgroundMedia` . `meta_data` as `cms_block.backgroundMedia.metaData` , `cms_block.backgroundMedia` . `config` as `cms_block.backgroundMedia.config` , `cms_block.backgroundMedia` . `path` as `cms_block.backgroundMedia.path` , `cms_block.backgroundMedia` . `private` as `cms_block.backgroundMedia.private` , `cms_block.backgroundMedia` . `thumbnails_ro` as `cms_block.backgroundMedia.thumbnailsRo` , `cms_block.backgroundMedia` . `file_hash` as `cms_block.backgroundMedia.fileHash` , `cms_block.backgroundMedia` . `created_at` as `cms_block.backgroundMedia.createdAt` , `cms_block.backgroundMedia` . `updated_at` as `cms_block.backgroundMedia.updatedAt` , `cms_block.backgroundMedia.translation.title` , `cms_block.backgroundMedia.translation.title` as `cms_block.backgroundMedia.title` , `cms_block.backgroundMedia.translation.alt` , `cms_block.backgroundMedia.translation.alt` as `cms_block.backgroundMedia.alt` , `cms_block.backgroundMedia.translation.customFields` , `cms_block.backgroundMedia.translation.customFields` as `cms_block.backgroundMedia.customFields` FROM `cms_block` LEFT JOIN `media` `cms_block.backgroundMedia` ON `cms_block` . `background_media_id` = `cms_block.backgroundMedia` . `id` LEFT JOIN (SELECT `cms_block.backgroundMedia.translation` . `media_id` , `cms_block.backgroundMedia.translation` . `alt` as `cms_block.backgroundMedia.translation.alt` , `cms_block.backgroundMedia.translation` . `title` as `cms_block.backgroundMedia.translation.title` , `cms_block.backgroundMedia.translation` . `custom_fields` as `cms_block.backgroundMedia.translation.customFields` FROM `media_translation` `cms_block.backgroundMedia.translation` WHERE `cms_block.backgroundMedia.translation` . `language_id` = ? ) `cms_block.backgroundMedia.media_translation` ON `cms_block.backgroundMedia.media_translation` . `media_id` = `cms_block.backgroundMedia` . `id` WHERE (`cms_block` . `version_id` = ? ) AND (((`cms_block` . `cms_section_id` IN (? , ? , ? , ? , ? ))))
Parameters :
[
b"\x02 0¨(çñA —O®8ͬÞÛ "
b"\x0F ©\x1C ãéjK¾KÙÎu,4% "
b"5\e ¬Ü\x1F úM¿‘;„oªy‰Ó "
b"ï\x05\x1D ;<=I6üîMÞód`J "
b"""
¥P8>õ\x14 H1žB‘Ò\n
¢\r .
"""
b"¦lDjDYOÑ¡ÉÐõ*Ò×\v "
b"é|º\x05 \r ºI\x04 ˆ¢M-N²Eë "
]
SELECT
`cms_block` . `id` as `cms_block.id` ,
`cms_block` . `version_id` as `cms_block.versionId` ,
`cms_block` . `cms_section_version_id` as `cms_block.cmsSectionVersionId` ,
`cms_block` . `position` as `cms_block.position` ,
`cms_block` . `type` as `cms_block.type` ,
`cms_block` . `locked` as `cms_block.locked` ,
`cms_block` . `name` as `cms_block.name` ,
`cms_block` . `section_position` as `cms_block.sectionPosition` ,
`cms_block` . `margin_top` as `cms_block.marginTop` ,
`cms_block` . `margin_bottom` as `cms_block.marginBottom` ,
`cms_block` . `margin_left` as `cms_block.marginLeft` ,
`cms_block` . `margin_right` as `cms_block.marginRight` ,
`cms_block` . `background_color` as `cms_block.backgroundColor` ,
`cms_block` . `background_media_id` as `cms_block.backgroundMediaId` ,
`cms_block` . `background_media_mode` as `cms_block.backgroundMediaMode` ,
`cms_block` . `css_class` as `cms_block.cssClass` ,
`cms_block` . `visibility` as `cms_block.visibility` ,
`cms_block` . `cms_section_id` as `cms_block.sectionId` ,
`cms_block` . `custom_fields` as `cms_block.customFields` ,
`cms_block` . `created_at` as `cms_block.createdAt` ,
`cms_block` . `updated_at` as `cms_block.updatedAt` ,
`cms_block.backgroundMedia` . `id` as `cms_block.backgroundMedia.id` ,
`cms_block.backgroundMedia` . `user_id` as `cms_block.backgroundMedia.userId` ,
`cms_block.backgroundMedia` . `media_folder_id` as `cms_block.backgroundMedia.mediaFolderId` ,
`cms_block.backgroundMedia` . `mime_type` as `cms_block.backgroundMedia.mimeType` ,
`cms_block.backgroundMedia` . `file_extension` as `cms_block.backgroundMedia.fileExtension` ,
`cms_block.backgroundMedia` . `uploaded_at` as `cms_block.backgroundMedia.uploadedAt` ,
`cms_block.backgroundMedia` . `file_name` as `cms_block.backgroundMedia.fileName` ,
`cms_block.backgroundMedia` . `file_size` as `cms_block.backgroundMedia.fileSize` ,
`cms_block.backgroundMedia` . `media_type` as `cms_block.backgroundMedia.mediaTypeRaw` ,
`cms_block.backgroundMedia` . `meta_data` as `cms_block.backgroundMedia.metaData` ,
`cms_block.backgroundMedia` . `config` as `cms_block.backgroundMedia.config` ,
`cms_block.backgroundMedia` . `path` as `cms_block.backgroundMedia.path` ,
`cms_block.backgroundMedia` . `private` as `cms_block.backgroundMedia.private` ,
`cms_block.backgroundMedia` . `thumbnails_ro` as `cms_block.backgroundMedia.thumbnailsRo` ,
`cms_block.backgroundMedia` . `file_hash` as `cms_block.backgroundMedia.fileHash` ,
`cms_block.backgroundMedia` . `created_at` as `cms_block.backgroundMedia.createdAt` ,
`cms_block.backgroundMedia` . `updated_at` as `cms_block.backgroundMedia.updatedAt` ,
`cms_block.backgroundMedia.translation.title` ,
`cms_block.backgroundMedia.translation.title` as `cms_block.backgroundMedia.title` ,
`cms_block.backgroundMedia.translation.alt` ,
`cms_block.backgroundMedia.translation.alt` as `cms_block.backgroundMedia.alt` ,
`cms_block.backgroundMedia.translation.customFields` ,
`cms_block.backgroundMedia.translation.customFields` as `cms_block.backgroundMedia.customFields`
FROM
`cms_block`
LEFT JOIN `media` `cms_block.backgroundMedia` ON `cms_block` . `background_media_id` = `cms_block.backgroundMedia` . `id`
LEFT JOIN (
SELECT
`cms_block.backgroundMedia.translation` . `media_id` ,
`cms_block.backgroundMedia.translation` . `alt` as `cms_block.backgroundMedia.translation.alt` ,
`cms_block.backgroundMedia.translation` . `title` as `cms_block.backgroundMedia.translation.title` ,
`cms_block.backgroundMedia.translation` . `custom_fields` as `cms_block.backgroundMedia.translation.customFields`
FROM
`media_translation` `cms_block.backgroundMedia.translation`
WHERE
`cms_block.backgroundMedia.translation` . `language_id` = ?
) `cms_block.backgroundMedia.media_translation` ON `cms_block.backgroundMedia.media_translation` . `media_id` = `cms_block.backgroundMedia` . `id`
WHERE
(`cms_block` . `version_id` = ? )
AND (
(
(
`cms_block` . `cms_section_id` IN (? , ? , ? , ? , ? )
)
)
)
Copy
SELECT `cms_block` . `id` as `cms_block.id` , `cms_block` . `version_id` as `cms_block.versionId` , `cms_block` . `cms_section_version_id` as `cms_block.cmsSectionVersionId` , `cms_block` . `position` as `cms_block.position` , `cms_block` . `type` as `cms_block.type` , `cms_block` . `locked` as `cms_block.locked` , `cms_block` . `name` as `cms_block.name` , `cms_block` . `section_position` as `cms_block.sectionPosition` , `cms_block` . `margin_top` as `cms_block.marginTop` , `cms_block` . `margin_bottom` as `cms_block.marginBottom` , `cms_block` . `margin_left` as `cms_block.marginLeft` , `cms_block` . `margin_right` as `cms_block.marginRight` , `cms_block` . `background_color` as `cms_block.backgroundColor` , `cms_block` . `background_media_id` as `cms_block.backgroundMediaId` , `cms_block` . `background_media_mode` as `cms_block.backgroundMediaMode` , `cms_block` . `css_class` as `cms_block.cssClass` , `cms_block` . `visibility` as `cms_block.visibility` , `cms_block` . `cms_section_id` as `cms_block.sectionId` , `cms_block` . `custom_fields` as `cms_block.customFields` , `cms_block` . `created_at` as `cms_block.createdAt` , `cms_block` . `updated_at` as `cms_block.updatedAt` , `cms_block.backgroundMedia` . `id` as `cms_block.backgroundMedia.id` , `cms_block.backgroundMedia` . `user_id` as `cms_block.backgroundMedia.userId` , `cms_block.backgroundMedia` . `media_folder_id` as `cms_block.backgroundMedia.mediaFolderId` , `cms_block.backgroundMedia` . `mime_type` as `cms_block.backgroundMedia.mimeType` , `cms_block.backgroundMedia` . `file_extension` as `cms_block.backgroundMedia.fileExtension` , `cms_block.backgroundMedia` . `uploaded_at` as `cms_block.backgroundMedia.uploadedAt` , `cms_block.backgroundMedia` . `file_name` as `cms_block.backgroundMedia.fileName` , `cms_block.backgroundMedia` . `file_size` as `cms_block.backgroundMedia.fileSize` , `cms_block.backgroundMedia` . `media_type` as `cms_block.backgroundMedia.mediaTypeRaw` , `cms_block.backgroundMedia` . `meta_data` as `cms_block.backgroundMedia.metaData` , `cms_block.backgroundMedia` . `config` as `cms_block.backgroundMedia.config` , `cms_block.backgroundMedia` . `path` as `cms_block.backgroundMedia.path` , `cms_block.backgroundMedia` . `private` as `cms_block.backgroundMedia.private` , `cms_block.backgroundMedia` . `thumbnails_ro` as `cms_block.backgroundMedia.thumbnailsRo` , `cms_block.backgroundMedia` . `file_hash` as `cms_block.backgroundMedia.fileHash` , `cms_block.backgroundMedia` . `created_at` as `cms_block.backgroundMedia.createdAt` , `cms_block.backgroundMedia` . `updated_at` as `cms_block.backgroundMedia.updatedAt` , `cms_block.backgroundMedia.translation.title` , `cms_block.backgroundMedia.translation.title` as `cms_block.backgroundMedia.title` , `cms_block.backgroundMedia.translation.alt` , `cms_block.backgroundMedia.translation.alt` as `cms_block.backgroundMedia.alt` , `cms_block.backgroundMedia.translation.customFields` , `cms_block.backgroundMedia.translation.customFields` as `cms_block.backgroundMedia.customFields` FROM `cms_block` LEFT JOIN `media` `cms_block.backgroundMedia` ON `cms_block` . `background_media_id` = `cms_block.backgroundMedia` . `id` LEFT JOIN (SELECT `cms_block.backgroundMedia.translation` . `media_id` , `cms_block.backgroundMedia.translation` . `alt` as `cms_block.backgroundMedia.translation.alt` , `cms_block.backgroundMedia.translation` . `title` as `cms_block.backgroundMedia.translation.title` , `cms_block.backgroundMedia.translation` . `custom_fields` as `cms_block.backgroundMedia.translation.customFields` FROM `media_translation` `cms_block.backgroundMedia.translation` WHERE `cms_block.backgroundMedia.translation` . `language_id` = 0x0230A828E7F14120974FAE38CDACDEDB ) `cms_block.backgroundMedia.media_translation` ON `cms_block.backgroundMedia.media_translation` . `media_id` = `cms_block.backgroundMedia` . `id` WHERE (`cms_block` . `version_id` = 0x0FA91CE3E96A4BC2BE4BD9CE752C3425 ) AND (((`cms_block` . `cms_section_id` IN (0x351BACDC1FFA4DBF913B846FAA7989D3 , 0x8B051D3B3C3D4936818C4DE8A264604A , 0xA550383EF51448319E4291D20AA20D2E , 0xA66C446A44594FD1A1C9D0F52AD2D70B , 0xE97CBA050DBA490488A24D2D4EB245EB ))));
Copy
36
12.48 ms
SELECT `cms_slot` . `id` as `cms_slot.id` , `cms_slot` . `version_id` as `cms_slot.versionId` , `cms_slot` . `cms_block_version_id` as `cms_slot.cmsBlockVersionId` , `cms_slot` . `type` as `cms_slot.type` , `cms_slot` . `slot` as `cms_slot.slot` , `cms_slot` . `locked` as `cms_slot.locked` , `cms_slot` . `cms_block_id` as `cms_slot.blockId` , `cms_slot` . `created_at` as `cms_slot.createdAt` , `cms_slot` . `updated_at` as `cms_slot.updatedAt` , `cms_slot.translation.config` , `cms_slot.translation.config` as `cms_slot.config` , `cms_slot.translation.customFields` , `cms_slot.translation.customFields` as `cms_slot.customFields` FROM `cms_slot` LEFT JOIN (SELECT `cms_slot.translation` . `cms_slot_id` , `cms_slot.translation` . `cms_slot_version_id` , `cms_slot.translation` . `config` as `cms_slot.translation.config` , `cms_slot.translation` . `custom_fields` as `cms_slot.translation.customFields` FROM `cms_slot_translation` `cms_slot.translation` WHERE `cms_slot.translation` . `language_id` = ? ) `cms_slot.cms_slot_translation` ON `cms_slot.cms_slot_translation` . `cms_slot_id` = `cms_slot` . `id` AND `cms_slot.cms_slot_translation` . `cms_slot_version_id` = `cms_slot` . `version_id` WHERE (`cms_slot` . `version_id` = ? ) AND (((`cms_slot` . `cms_block_id` IN (? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? ))))
Parameters :
[
b"\x02 0¨(çñA —O®8ͬÞÛ "
b"\x0F ©\x1C ãéjK¾KÙÎu,4% "
b"""
\n
„왘šBx¥„†ÇÁ¦¦k
"""
b"%Ì£fOþK\v ¦¾51c\x06 ÇR "
b"&Lã¾Ð‘EwˆkVAœr¾\x17 "
b"(ìN\x15 ÜLNL…g•\x02 }{\e 6 "
b"*E`¢ÁtNÀ¾Ú¸@r\x07 ï\x00 "
b"*ì@:ñàJ»Ñ8\x7F ÜíÄ`x "
b"-pP¶úÿKAˆî¼DYOÏ "
b"-°5:¤L¾‹Ûë~ñï<Ï "
b"-÷×&iÙJ_¤yŠ™ññç8 "
b".\x1C 61Ô¤H&®¥├ú\x01 ÔÎØ "
b"/üæ\x1A ¡IH¾¸Ûà6’]]å "
b"1|\x06 úË×I]¯\x02 %8RýT "
b"6r+\x11 \r \x15 Gð¯îÓÇ’T6 "
b">twvÁâL<ª\x19\x7F vöEx\x02 "
b"?Z)6sîLÌŽVÿ1ò¥Mä "
b"@31ùR\x01 Aôì\x17 6@ÿ)\x13 ▀ "
b"F\x10 B\v ┤MóüÕuÁ"¯ßï "
b"J\x16\x17 <\x0E\x7F E\x18 ¹\x13 yGè\x18 #\x16 "
b"L\x11 ‗aùÉJ\x00 ¿4´Æ|æm╦ "
b"UüÐÄ■ÛH_ù\x08 _ß)fqe "
b"b»ïF°ãM¤¹ÜtCïPL¿ "
b"dVßÝÅONÿ®\x1F lwë\x1F\x0F ▀ "
b"i\r ÅÂjµIo—¸x%²ƒ^o "
b"mxv°©>B¦rpCG‚”$ "
b"n:¹áÄãC¦»âšf\x1A I|[ "
b"nÖ6ŒÉ³EGƒRå¸\x03 :¦÷ "
b"…òM–S\x1A G–™L/D]\x1D (ð "
b"޹•ä(í@õ¥FJy!‚oY "
b"Å·\t|¿D░░°\t ÷\x04 ║øÝ "
b"òS·ü<òD\x7F Å\x00 Vå\x10 qeâ "
b"ÿ\x10 "\x12 ¦óG²ê pŧ³þq "
b"šÛγø“J†Œ\x15 ö*-›»k "
b" OMûætIü»¹Í¯íµï; "
b"¬ìz4}ðOS¬Ï²ºı■ÅÐ "
b"°]œ&¬4B¹¾nvk5XÚY "
b"±2`ùÎ)C\t »ÿ\x0E P„\x1A óª "
b"´€^„äÞO§¸Þ2YCAÎe "
b"╗I~\t └ìM뮾YD#■ø╦ "
b"╝u`\x14\x18 tJÇûìè╚Bfgf "
b"À.³X}àFĈ\x7F ‹©\x03 Ie1 "
b"Ù\x7F ¤.ÖF:·&)>â”'\x18 "
b"È.ó¨eRC!¼ËtÅêDÏN "
b"┘×òIìÌE▓£:M\x02 áY┘\x07 "
b"¦¯Þì®øE×ìEã\x17 Ì╗hÊ "
b"ᯱúb®Gb±H9:¬Zž‡ "
b"ÔØÒ©¸PG▒ç┬g[üîU "
b"ñ›\x18 náîAW‰!;/r‚Ž’ "
b"óîS¾{ÊD\x15 ‘”G\x13 È-ào "
b"ú~\x1C =?¾L᥾%j›®`\x16 "
b"ý/ªÅ9òAº³"áê-²\x11 A "
b"þR\v ºq?K\x03 œ:ÕJ?ðÓ\x03 "
b"Æ"]:@ñKmžï\x19 Å\x11 ç4 "
b"L3âª5¡CÄ®ä‚ÿX’N¢ "
b"£E§0¾§O#²\x1C 1Æûô "
b"─)╗S®\x1E F8┤\x18 õ\x0E ZFÅe "
]
SELECT
`cms_slot` . `id` as `cms_slot.id` ,
`cms_slot` . `version_id` as `cms_slot.versionId` ,
`cms_slot` . `cms_block_version_id` as `cms_slot.cmsBlockVersionId` ,
`cms_slot` . `type` as `cms_slot.type` ,
`cms_slot` . `slot` as `cms_slot.slot` ,
`cms_slot` . `locked` as `cms_slot.locked` ,
`cms_slot` . `cms_block_id` as `cms_slot.blockId` ,
`cms_slot` . `created_at` as `cms_slot.createdAt` ,
`cms_slot` . `updated_at` as `cms_slot.updatedAt` ,
`cms_slot.translation.config` ,
`cms_slot.translation.config` as `cms_slot.config` ,
`cms_slot.translation.customFields` ,
`cms_slot.translation.customFields` as `cms_slot.customFields`
FROM
`cms_slot`
LEFT JOIN (
SELECT
`cms_slot.translation` . `cms_slot_id` ,
`cms_slot.translation` . `cms_slot_version_id` ,
`cms_slot.translation` . `config` as `cms_slot.translation.config` ,
`cms_slot.translation` . `custom_fields` as `cms_slot.translation.customFields`
FROM
`cms_slot_translation` `cms_slot.translation`
WHERE
`cms_slot.translation` . `language_id` = ?
) `cms_slot.cms_slot_translation` ON `cms_slot.cms_slot_translation` . `cms_slot_id` = `cms_slot` . `id`
AND `cms_slot.cms_slot_translation` . `cms_slot_version_id` = `cms_slot` . `version_id`
WHERE
(`cms_slot` . `version_id` = ? )
AND (
(
(
`cms_slot` . `cms_block_id` IN (
? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? ,
? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? ,
? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? ,
? , ? , ? , ? , ? , ? , ? , ? , ?
)
)
)
)
Copy
SELECT `cms_slot` . `id` as `cms_slot.id` , `cms_slot` . `version_id` as `cms_slot.versionId` , `cms_slot` . `cms_block_version_id` as `cms_slot.cmsBlockVersionId` , `cms_slot` . `type` as `cms_slot.type` , `cms_slot` . `slot` as `cms_slot.slot` , `cms_slot` . `locked` as `cms_slot.locked` , `cms_slot` . `cms_block_id` as `cms_slot.blockId` , `cms_slot` . `created_at` as `cms_slot.createdAt` , `cms_slot` . `updated_at` as `cms_slot.updatedAt` , `cms_slot.translation.config` , `cms_slot.translation.config` as `cms_slot.config` , `cms_slot.translation.customFields` , `cms_slot.translation.customFields` as `cms_slot.customFields` FROM `cms_slot` LEFT JOIN (SELECT `cms_slot.translation` . `cms_slot_id` , `cms_slot.translation` . `cms_slot_version_id` , `cms_slot.translation` . `config` as `cms_slot.translation.config` , `cms_slot.translation` . `custom_fields` as `cms_slot.translation.customFields` FROM `cms_slot_translation` `cms_slot.translation` WHERE `cms_slot.translation` . `language_id` = 0x0230A828E7F14120974FAE38CDACDEDB ) `cms_slot.cms_slot_translation` ON `cms_slot.cms_slot_translation` . `cms_slot_id` = `cms_slot` . `id` AND `cms_slot.cms_slot_translation` . `cms_slot_version_id` = `cms_slot` . `version_id` WHERE (`cms_slot` . `version_id` = 0x0FA91CE3E96A4BC2BE4BD9CE752C3425 ) AND (((`cms_slot` . `cms_block_id` IN (0x0A84EC99989A4278A58486C7C1A6A66B , 0x25CCA3664FFE4B0BA6BE35316306C752 , 0x264CE3BED0914577886B56419C72BE17 , 0x28EC4E15DC4C4E4C856795027D7B1B36 , 0x2A4560A2C1744EC0BEDAB8407207EF00 , 0x2A8D403AA4854AAFA5387F9AA18E6078 , 0x2D7050B6FAFF4B4188EEADBC44594FCF , 0x2DADB0353AA44CBE8BDBEB7EF1EF3CCF , 0x2DF7D72669D94A5FA4798A99F1F1E738 , 0x2E1C3631E2CF4826A9BEC3A301E2D79D , 0x2FFCE61AA14948BEB8DBE036925D5DE5 , 0x317C06FACBD7495DAF02253852C3BD54 , 0x36722B110D1547F0ADAFEED3C7925436 , 0x3E747776C1E24C3CAA197F76F6457802 , 0x3F5A293673EE4CCC8E56FF31F2A54DE4 , 0x40333197520141938D173640982913DF , 0x4610420BFFB44DA281E575B522EEE18B , 0x4A16173C0E7F4518B9137947E8182316 , 0x4C11F26197904A00A834EF927C916DCB , 0x5581D18EFEEA485F97085FE129667165 , 0x62BBEF46B0E34DA4B9DC7443EF504CBF , 0x6456E1ED8F4F4E98A91F6C77891F0FDF , 0x690DC5C26AB5496F97B87825B2835E6F , 0x6D7876B0A93E42A6AD72704347829424 , 0x6E3AB9E1C4E343A6BBE29A661A497C5B , 0x6ED6368CC9B345478352E5B8033AA6F7 , 0x85F24D96531A4796994C2F445D1D28F0 , 0x8EB995E428ED40F5A5464A7921826F59 , 0x8FFA5C747CA844B0B0F809F604BA9BED , 0x9553FA813C95447F8F00568610716583 , 0x98102212DDA247FD8820708FF5FCE771 , 0x9ADBCEB3F8934A868C15F62A2D9BBB6B , 0xA04F4DFBE67449FCBBB9CDAFEDB5EF3B , 0xAA8D7A347DD04F53AAD8FDA7D5FE8FD1 , 0xB05D9C26AC3442B9BE6E766B3558DA59 , 0xB13260F9CE294309BBFF0E50841AF3AA , 0xB4805E84E4DE4FA7B8DE32594341CE65 , 0xBB497E09C08D4D89A9F3594423FE9BCB , 0xBC75601418744A80968D8AC842666766 , 0xC02EB3587DE046C4887F8BA903496531 , 0xC3997FA42ED6463AB726293EE2942718 , 0xC82EF3A865524321BCCB74C5EA44CF4E , 0xD99E95498DDE45B29C3A4D02A059D907 , 0xDDEEE88DA99B459E8D45C617DEBB68D2 , 0xE1AFB1FA62AE4762B148393AAC5A9E87 , 0xE29DE3B8F75047B187C2675B818C5520 , 0xF19B186EE1EE415789213B2F72828E92 , 0xF3EE53BE7BCA441591944713C82DE06F , 0xFA7E1C3D3FBE4CE1A5BE256A9BAE6016 , 0xFD2FAAC539F241BAB322E1EA2DB21141 , 0xFE520BBA713F4B039C3AD54A3FF0D303 , 0xC6225D3A40F14B6D9EEFAD19C511E734 , 0x4C33E2AA35A143C4AEE482FF58924EA2 , 0xA345A730BEA74F23B21C31C6FBC3B420 , 0xC429BB53A91E4638B418E40E5A468F65 ))));
Copy
37
2.92 ms
SELECT `media` . `id` as `media.id` , `media` . `user_id` as `media.userId` , `media` . `media_folder_id` as `media.mediaFolderId` , `media` . `mime_type` as `media.mimeType` , `media` . `file_extension` as `media.fileExtension` , `media` . `uploaded_at` as `media.uploadedAt` , `media` . `file_name` as `media.fileName` , `media` . `file_size` as `media.fileSize` , `media` . `media_type` as `media.mediaTypeRaw` , `media` . `meta_data` as `media.metaData` , `media` . `config` as `media.config` , `media` . `path` as `media.path` , `media` . `private` as `media.private` , `media` . `thumbnails_ro` as `media.thumbnailsRo` , `media` . `file_hash` as `media.fileHash` , `media` . `created_at` as `media.createdAt` , `media` . `updated_at` as `media.updatedAt` , `media.translation.title` , `media.translation.title` as `media.title` , `media.translation.alt` , `media.translation.alt` as `media.alt` , `media.translation.customFields` , `media.translation.customFields` as `media.customFields` FROM `media` LEFT JOIN `media_folder` `media.mediaFolder` ON `media` . `media_folder_id` = `media.mediaFolder` . `id` LEFT JOIN (SELECT `media.translation` . `media_id` , `media.translation` . `alt` as `media.translation.alt` , `media.translation` . `title` as `media.translation.title` , `media.translation` . `custom_fields` as `media.translation.customFields` FROM `media_translation` `media.translation` WHERE `media.translation` . `language_id` = ? ) `media.media_translation` ON `media.media_translation` . `media_id` = `media` . `id` LEFT JOIN `media_default_folder` `media.mediaFolder.defaultFolder` ON `media.mediaFolder` . `default_folder_id` = `media.mediaFolder.defaultFolder` . `id` WHERE (((`media` . `private` = ? OR (`media` . `private` = ? AND `media.mediaFolder.defaultFolder` . `entity` = ? )))) AND (`media` . `id` IN (? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? ))
Parameters :
[
b"\x02 0¨(çñA —O®8ͬÞÛ "
false
true
"product_download "
b"]Í8/íMFg³®ßêc×}4 "
b"^¹Åï¿9Go³½\x07 É´n n "
b"Ò\x1A ŽXD0J ¨u\x19 ý@\x16 а "
b"[ë¼ï&\t Eæ»;°¦=ÔÃÓ "
b"F=ùõÊ”D3“tùu`jÄL "
b"¥ÿé†á\x12 MNŸEòU°só} "
b"\x03\x04 ù“‚íDr¶')±Åê{# "
b")╬ýãÇÌ@æì\x06 ▒c▓(S▀ "
b"\x7F cûãYÑMI±/²[)çq\f "
b"Ýz\x18 }ý5@Ü‘žf0\x10 »³\v "
b"*¹9åG\x15 @R \x7F B ç§‡Š "
b"_┬ßòô;G╬ö çtÊU<Ø "
b"#=¤¦ˆÌH´²XʈW—ÀÔ "
b"†âÛa\x16 ,H¸™Þ£åÖxÉ\x01 "
b"é\x10 ñÄúðJŒº…£\x05\x0F Þ™} "
b"ž³ª‘Ø?O–¶XXµ†6.< "
b"│Ïæó▒6C╦ü¹c┼Wyî│ "
b"1WÁ}ÕÉOWé┴ÒͰ¹gP "
b"\x1F Q©╝\t ºD╣┤,®/ÉõW: "
b"A<’\x16 ÐÌD(©¡OJ\f\x1A F\x08 "
b"ë╔\x0E EöOBf¢ÔB\x06 É~px "
b"\x12 JÖS\x19\x15 AûˆË\x14 ØJ?Å\e "
b"·\x1E ûx0™N3š\x0E\x19 2iæeš "
b"Ìßç‰\x00 ýBí†ü5X\x02 4ˆ\v "
b"#£¤þóÏGw¬d\r ±\x0F ƒ\x7F ¡ "
b"ôÏ™.\x1C QCt¡©M]H[Nn "
b"rÖªbyFM×µß\x06 š88Ĥ "
b"\x06 ñá·Ü.EI±°ÚÔ¦\x19 5\x7F "
b"¡l¬~ZøBN²À˜?ƸÜ" "
b"\x05 &Ìu}ùMRš®MK¨»:é "
b"\\x04 J╬ÊÉFSÑ8╚Í\x04\t v\r "
b"""
_Ú\x04 B(\n
Hؼ║¶\x07 ±\x02\x05\x1C
"""
b"2â¢;ï!Oɾ\x02 c8‚c\r "
b"a$‰¸¬©J$³F`Ì”~•µ "
b"<;\x12\x19 (\x16 D─╗µ»ìY%Åè "
b"¥ùÁ\x06 C˜N¿•.ì´\x1F uß) "
b"‰\x1D (‰p†EJ¨œRÑ\Þ¨Ë "
b"""
g»┐\v ŵG»üÙ\n
þþ\x1C Y
"""
b"ÒX¶ô\x02 ¹C^½V=‘°;&Ê "
b"‚3¡¼ÉŒB3©–Ë{w\e 6\x03 "
b"™¸uË‹.LV‰pP¡•€Ë\x08 "
b"""
Ðr\x1D bñM«Ý\n
\x0F cYºO
"""
b"\x02 ¸X˜CìLºž\x07 ³?oGˆ¥ "
b"\x02 ¶ÜGÚëDL┐╝üªÏâëñ "
b"\x14 ôRWÇæA┌ªör║nɬ▄ "
b"Rˆë.çÍI¼¯9Jþütž+ "
b"Û‘ïu€ÁNå½áÉ8Ö\x03 ?\ "
b")ËÇÍ\x7F –H\x14 ·ÇM\x11 Æ®\x0E\x06 "
b"Xút£Ò#Mîª\x00\x10\x04 ýÃ=„ "
b"zVL>Q@N@–¸4\x01 QJZ\x03 "
b"°Žâõ\x17 ECÄŽ˜£øsà}± "
b"_Ÿsä \x08 K\x16 ŸÈ·3¡.gD "
b"■¹û╦Jó®┼Å\x15 "Û?: "
b"\x0E ‡¶„\x1F óE—‡Ÿùéq\e •² "
b"""
.\x08 "\n
»h@^ü¾Tú¾┤6ã
"""
b"#>7OÑ5KSÖ\x15 É>‗\x06 ÄÝ "
b"R,■L▒IL4Øl█\x17\t NÊ& "
b"ì½Ì^våJ«º7\x1E mO¢®O "
b"\x1F [±öıÔK²é╣╩iØ\x18 xÌ "
b"""
5™&\x18 ‡1D\n
·\x1E #ì·Eû/
"""
b"«js×KKƒØ@┼│ôX¯$ "
b"Ç}╗»ÿ.G\t ©å╠CæØI╔ "
b"Ë\x00\x1A fñ8M É¡\x16 +;Ù¸╣ "
]
SELECT
`media` . `id` as `media.id` ,
`media` . `user_id` as `media.userId` ,
`media` . `media_folder_id` as `media.mediaFolderId` ,
`media` . `mime_type` as `media.mimeType` ,
`media` . `file_extension` as `media.fileExtension` ,
`media` . `uploaded_at` as `media.uploadedAt` ,
`media` . `file_name` as `media.fileName` ,
`media` . `file_size` as `media.fileSize` ,
`media` . `media_type` as `media.mediaTypeRaw` ,
`media` . `meta_data` as `media.metaData` ,
`media` . `config` as `media.config` ,
`media` . `path` as `media.path` ,
`media` . `private` as `media.private` ,
`media` . `thumbnails_ro` as `media.thumbnailsRo` ,
`media` . `file_hash` as `media.fileHash` ,
`media` . `created_at` as `media.createdAt` ,
`media` . `updated_at` as `media.updatedAt` ,
`media.translation.title` ,
`media.translation.title` as `media.title` ,
`media.translation.alt` ,
`media.translation.alt` as `media.alt` ,
`media.translation.customFields` ,
`media.translation.customFields` as `media.customFields`
FROM
`media`
LEFT JOIN `media_folder` `media.mediaFolder` ON `media` . `media_folder_id` = `media.mediaFolder` . `id`
LEFT JOIN (
SELECT
`media.translation` . `media_id` ,
`media.translation` . `alt` as `media.translation.alt` ,
`media.translation` . `title` as `media.translation.title` ,
`media.translation` . `custom_fields` as `media.translation.customFields`
FROM
`media_translation` `media.translation`
WHERE
`media.translation` . `language_id` = ?
) `media.media_translation` ON `media.media_translation` . `media_id` = `media` . `id`
LEFT JOIN `media_default_folder` `media.mediaFolder.defaultFolder` ON `media.mediaFolder` . `default_folder_id` = `media.mediaFolder.defaultFolder` . `id`
WHERE
(
(
(
`media` . `private` = ?
OR (
`media` . `private` = ?
AND `media.mediaFolder.defaultFolder` . `entity` = ?
)
)
)
)
AND (
`media` . `id` IN (
? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? ,
? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? ,
? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? ,
? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? ,
? , ?
)
)
Copy
SELECT `media` . `id` as `media.id` , `media` . `user_id` as `media.userId` , `media` . `media_folder_id` as `media.mediaFolderId` , `media` . `mime_type` as `media.mimeType` , `media` . `file_extension` as `media.fileExtension` , `media` . `uploaded_at` as `media.uploadedAt` , `media` . `file_name` as `media.fileName` , `media` . `file_size` as `media.fileSize` , `media` . `media_type` as `media.mediaTypeRaw` , `media` . `meta_data` as `media.metaData` , `media` . `config` as `media.config` , `media` . `path` as `media.path` , `media` . `private` as `media.private` , `media` . `thumbnails_ro` as `media.thumbnailsRo` , `media` . `file_hash` as `media.fileHash` , `media` . `created_at` as `media.createdAt` , `media` . `updated_at` as `media.updatedAt` , `media.translation.title` , `media.translation.title` as `media.title` , `media.translation.alt` , `media.translation.alt` as `media.alt` , `media.translation.customFields` , `media.translation.customFields` as `media.customFields` FROM `media` LEFT JOIN `media_folder` `media.mediaFolder` ON `media` . `media_folder_id` = `media.mediaFolder` . `id` LEFT JOIN (SELECT `media.translation` . `media_id` , `media.translation` . `alt` as `media.translation.alt` , `media.translation` . `title` as `media.translation.title` , `media.translation` . `custom_fields` as `media.translation.customFields` FROM `media_translation` `media.translation` WHERE `media.translation` . `language_id` = 0x0230A828E7F14120974FAE38CDACDEDB ) `media.media_translation` ON `media.media_translation` . `media_id` = `media` . `id` LEFT JOIN `media_default_folder` `media.mediaFolder.defaultFolder` ON `media.mediaFolder` . `default_folder_id` = `media.mediaFolder.defaultFolder` . `id` WHERE (((`media` . `private` = 0 OR (`media` . `private` = 1 AND `media.mediaFolder.defaultFolder` . `entity` = 'product_download' )))) AND (`media` . `id` IN (0x5DCD382FED4D4667B3AEDFEA63D77D34 , 0x5EB9C5EFBF39476FB3BD07C9B46EA06E , 0xD21A8E5844304A20A87519FD4016D0B0 , 0x5BEBBCEF260945E6BB3BB0A63DD4C3D3 , 0x463DF9F5CA9444339374F975606AC44C , 0xA5FFE986E1124D4E9F45F255B073F37D , 0x0304F99382ED4472B62729B1C5EA7B23 , 0x29CEECC680DE40918D06B163B22853DF , 0x7F63FBE359D14D49B12FB25B29E7710C , 0xDD7A187DFD3540DC919E663010BBB30B , 0x2AB939E547154052A07F4220E7A7878A , 0x5FC2E195933B47CE94FF8774D2553C9D , 0x233DA4A688CC48B4B258CA885797C0D4 , 0x86E2DB61162C48B899DEA3E5D678C901 , 0xE910F1C4FAF04A8CBA85A3050FDE997D , 0x9EB3AA91D83F4F96B65858B586362E3C , 0xB3D891A2B13643CB81FB63C557798CB3 , 0x3157B57DE5904F5782C1E3D6F8FB6750 , 0x1F51B8BC09A744B9B42CA92F90E4573A , 0x413C9216D0CC4428A9A14F4A0C1A4608 , 0x89C90E45944F4266BDE24206907E7078 , 0x124AD653191541FB88CB14D84A3FC51B , 0xB71EFB7830994E339A0E193269E6659A , 0xCCDFE78900FD42ED86FC35580234880B , 0x23A3A4FEF3CF4777AC640DB10F837FA1 , 0xF4CF992E1C514374A1A94D5D485B4E6E , 0x72D6AA6279464DD7B5DF069A3838C4A4 , 0x06F1E1B7DC2E4549B1B0DAD4A619357F , 0xA16CAC7E5AF8424EB2C0983FC6B8DC22 , 0x0526CC757DF94D529AAE4D4BA8BB3AE9 , 0x5C044ACED2904653A538C8D60409760D , 0x5FE90442280A489DACBAF407F102051C , 0x32E2A23BEF214FC9BE026338AD82630D , 0x612489B8ACA94A24B34660CC947E95B5 , 0x3C3B1219281644C4BBE6AF8D59258F8A , 0xA5F9C10643984EBF952EECB41F75DF29 , 0x891D28897086454AA89C52D15CDEA8CB , 0x67AFBF0B8FE647B6AF81EB0AE7E71C59 , 0xD258B6F402B9435EBD563D91B03B26CA , 0x8233A1BCC98C4233A996CB7B771B3603 , 0x99B875CB8B2E4C56897050A19580CB08 , 0xD0721D62ADF14DADABDD0A0F6359BA4F , 0x02B8589843EC4CBA9E07B33F6F4788A5 , 0x02F49A47E989444CBFBC81A6D88389A4 , 0x14935257809141DAA69472BA6E90AADC , 0x5288EB2EE7CD49BCAF394AFEFC749E2B , 0xDB91EF7580C14EE5BDE1C938D6033F5C , 0x29CBC7CD7F964814B7C74D11C6AE0E06 , 0x58FA74A3D2234DEEAA001004FDC33D84 , 0x7A564C3E51404E4096B83401514A5A03 , 0xB08EE2F5174543C48E98A3F873E07DB1 , 0x5F9F73E4A0084B169FC8B733A12E6744 , 0xF0FEB6FB96CB4AA2A9C58F1522EA3F3A , 0x0E87B6841FF34597879FF9E9711B95B2 , 0x2E08220AAF68405E81F354A3F3B436C6 , 0x233E374FA5354B539915903EF2068EED , 0x522CFE4CB1494C349D6CDB17094ED226 , 0xECBDCC5E76E54AABBA371E6D4FA2AE4F , 0x1F5BF194D5E24BFD82B9CA699D1878DE , 0x359926188731440AB71E23ECB745FB2F , 0xF0AE6A739E4B4B9F9D40C5B39358EE24 , 0x807DBBAF982E4709B886CC43919D49C9 , 0xD3001A66A4384D2090AD162B3BEBF7B9 ));
Copy
38
1.23 ms
SELECT LOWER (HEX (`id` )), `path` , `level`
FROM `category`
WHERE `id` = ? OR `parent_id` = ? OR `id` = ?
Parameters :
[
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02 (bH "
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02 (bH "
b"·├ÛdÅÔJ#ù┐\x16 {╠HÀ¼ "
]
SELECT LOWER (HEX (`id` )), `path` , `level`
FROM `category`
WHERE `id` = '\0\0\0\0\0\0\0\0\0\0\0\0(bH' OR `parent_id` = '\0\0\0\0\0\0\0\0\0\0\0\0(bH' OR `id` = 0xFAC3EA648FE24A2397BF167BCC48B7AC
;
Copy
39
9.61 ms
SELECT `category` . `id` as `category.id` , `category` . `version_id` as `category.versionId` , `category` . `parent_id` as `category.parentId` , `category` . `parent_version_id` as `category.parentVersionId` , `category` . `after_category_id` as `category.afterCategoryId` , `category` . `after_category_version_id` as `category.afterCategoryVersionId` , `category` . `media_id` as `category.mediaId` , `category` . `display_nested_products` as `category.displayNestedProducts` , `category` . `auto_increment` as `category.autoIncrement` , `category` . `level` as `category.level` , `category` . `path` as `category.path` , `category` . `child_count` as `category.childCount` , `category` . `type` as `category.type` , `category` . `product_assignment_type` as `category.productAssignmentType` , `category` . `visible` as `category.visible` , `category` . `active` as `category.active` , `category` . `cms_page_id` as `category.cmsPageId` , `category` . `cms_page_version_id` as `category.cmsPageVersionId` , `category` . `product_stream_id` as `category.productStreamId` , `category` . `custom_entity_type_id` as `category.customEntityTypeId` , `category` . `created_at` as `category.createdAt` , `category` . `updated_at` as `category.updatedAt` , `category.media` . `id` as `category.media.id` , `category.media` . `user_id` as `category.media.userId` , `category.media` . `media_folder_id` as `category.media.mediaFolderId` , `category.media` . `mime_type` as `category.media.mimeType` , `category.media` . `file_extension` as `category.media.fileExtension` , `category.media` . `uploaded_at` as `category.media.uploadedAt` , `category.media` . `file_name` as `category.media.fileName` , `category.media` . `file_size` as `category.media.fileSize` , `category.media` . `media_type` as `category.media.mediaTypeRaw` , `category.media` . `meta_data` as `category.media.metaData` , `category.media` . `config` as `category.media.config` , `category.media` . `path` as `category.media.path` , `category.media` . `private` as `category.media.private` , `category.media` . `thumbnails_ro` as `category.media.thumbnailsRo` , `category.media` . `file_hash` as `category.media.fileHash` , `category.media` . `created_at` as `category.media.createdAt` , `category.media` . `updated_at` as `category.media.updatedAt` , `category.media.translation.title` , `category.media.translation.title` as `category.media.title` , `category.media.translation.alt` , `category.media.translation.alt` as `category.media.alt` , `category.media.translation.customFields` , `category.media.translation.customFields` as `category.media.customFields` , `category.translation.name` , `category.translation.name` as `category.name` , `category.translation.breadcrumb` , `category.translation.breadcrumb` as `category.breadcrumb` , `category.translation.slotConfig` , `category.translation.slotConfig` as `category.slotConfig` , `category.translation.linkType` , `category.translation.linkType` as `category.linkType` , `category.translation.internalLink` , `category.translation.internalLink` as `category.internalLink` , `category.translation.externalLink` , `category.translation.externalLink` as `category.externalLink` , `category.translation.linkNewTab` , `category.translation.linkNewTab` as `category.linkNewTab` , `category.translation.description` , `category.translation.description` as `category.description` , `category.translation.metaTitle` , `category.translation.metaTitle` as `category.metaTitle` , `category.translation.metaDescription` , `category.translation.metaDescription` as `category.metaDescription` , `category.translation.keywords` , `category.translation.keywords` as `category.keywords` , `category.translation.customFields` , `category.translation.customFields` as `category.customFields` FROM `category` LEFT JOIN `media` `category.media` ON `category` . `media_id` = `category.media` . `id` LEFT JOIN (SELECT `category.translation` . `category_id` , `category.translation` . `category_version_id` , `category.translation` . `breadcrumb` as `category.translation.breadcrumb` , `category.translation` . `name` as `category.translation.name` , `category.translation` . `custom_fields` as `category.translation.customFields` , `category.translation` . `slot_config` as `category.translation.slotConfig` , `category.translation` . `link_type` as `category.translation.linkType` , `category.translation` . `internal_link` as `category.translation.internalLink` , `category.translation` . `external_link` as `category.translation.externalLink` , `category.translation` . `link_new_tab` as `category.translation.linkNewTab` , `category.translation` . `description` as `category.translation.description` , `category.translation` . `meta_title` as `category.translation.metaTitle` , `category.translation` . `meta_description` as `category.translation.metaDescription` , `category.translation` . `keywords` as `category.translation.keywords` FROM `category_translation` `category.translation` WHERE `category.translation` . `language_id` = ? ) `category.category_translation` ON `category.category_translation` . `category_id` = `category` . `id` AND `category.category_translation` . `category_version_id` = `category` . `version_id` LEFT JOIN (SELECT `category.media.translation` . `media_id` , `category.media.translation` . `alt` as `category.media.translation.alt` , `category.media.translation` . `title` as `category.media.translation.title` , `category.media.translation` . `custom_fields` as `category.media.translation.customFields` FROM `media_translation` `category.media.translation` WHERE `category.media.translation` . `language_id` = ? ) `category.media.media_translation` ON `category.media.media_translation` . `media_id` = `category.media` . `id` WHERE (`category` . `version_id` = ? ) AND ((`category` . `path` LIKE ? AND (`category` . `level` > ? AND `category` . `level` < = ? )))
Parameters :
[
b"\x02 0¨(çñA —O®8ͬÞÛ "
b"\x02 0¨(çñA —O®8ͬÞÛ "
b"\x0F ©\x1C ãéjK¾KÙÎu,4% "
"%|fac3ea648fe24a2397bf167bcc48b7ac|% "
1
7
]
SELECT
`category` . `id` as `category.id` ,
`category` . `version_id` as `category.versionId` ,
`category` . `parent_id` as `category.parentId` ,
`category` . `parent_version_id` as `category.parentVersionId` ,
`category` . `after_category_id` as `category.afterCategoryId` ,
`category` . `after_category_version_id` as `category.afterCategoryVersionId` ,
`category` . `media_id` as `category.mediaId` ,
`category` . `display_nested_products` as `category.displayNestedProducts` ,
`category` . `auto_increment` as `category.autoIncrement` ,
`category` . `level` as `category.level` ,
`category` . `path` as `category.path` ,
`category` . `child_count` as `category.childCount` ,
`category` . `type` as `category.type` ,
`category` . `product_assignment_type` as `category.productAssignmentType` ,
`category` . `visible` as `category.visible` ,
`category` . `active` as `category.active` ,
`category` . `cms_page_id` as `category.cmsPageId` ,
`category` . `cms_page_version_id` as `category.cmsPageVersionId` ,
`category` . `product_stream_id` as `category.productStreamId` ,
`category` . `custom_entity_type_id` as `category.customEntityTypeId` ,
`category` . `created_at` as `category.createdAt` ,
`category` . `updated_at` as `category.updatedAt` ,
`category.media` . `id` as `category.media.id` ,
`category.media` . `user_id` as `category.media.userId` ,
`category.media` . `media_folder_id` as `category.media.mediaFolderId` ,
`category.media` . `mime_type` as `category.media.mimeType` ,
`category.media` . `file_extension` as `category.media.fileExtension` ,
`category.media` . `uploaded_at` as `category.media.uploadedAt` ,
`category.media` . `file_name` as `category.media.fileName` ,
`category.media` . `file_size` as `category.media.fileSize` ,
`category.media` . `media_type` as `category.media.mediaTypeRaw` ,
`category.media` . `meta_data` as `category.media.metaData` ,
`category.media` . `config` as `category.media.config` ,
`category.media` . `path` as `category.media.path` ,
`category.media` . `private` as `category.media.private` ,
`category.media` . `thumbnails_ro` as `category.media.thumbnailsRo` ,
`category.media` . `file_hash` as `category.media.fileHash` ,
`category.media` . `created_at` as `category.media.createdAt` ,
`category.media` . `updated_at` as `category.media.updatedAt` ,
`category.media.translation.title` ,
`category.media.translation.title` as `category.media.title` ,
`category.media.translation.alt` ,
`category.media.translation.alt` as `category.media.alt` ,
`category.media.translation.customFields` ,
`category.media.translation.customFields` as `category.media.customFields` ,
`category.translation.name` ,
`category.translation.name` as `category.name` ,
`category.translation.breadcrumb` ,
`category.translation.breadcrumb` as `category.breadcrumb` ,
`category.translation.slotConfig` ,
`category.translation.slotConfig` as `category.slotConfig` ,
`category.translation.linkType` ,
`category.translation.linkType` as `category.linkType` ,
`category.translation.internalLink` ,
`category.translation.internalLink` as `category.internalLink` ,
`category.translation.externalLink` ,
`category.translation.externalLink` as `category.externalLink` ,
`category.translation.linkNewTab` ,
`category.translation.linkNewTab` as `category.linkNewTab` ,
`category.translation.description` ,
`category.translation.description` as `category.description` ,
`category.translation.metaTitle` ,
`category.translation.metaTitle` as `category.metaTitle` ,
`category.translation.metaDescription` ,
`category.translation.metaDescription` as `category.metaDescription` ,
`category.translation.keywords` ,
`category.translation.keywords` as `category.keywords` ,
`category.translation.customFields` ,
`category.translation.customFields` as `category.customFields`
FROM
`category`
LEFT JOIN `media` `category.media` ON `category` . `media_id` = `category.media` . `id`
LEFT JOIN (
SELECT
`category.translation` . `category_id` ,
`category.translation` . `category_version_id` ,
`category.translation` . `breadcrumb` as `category.translation.breadcrumb` ,
`category.translation` . `name` as `category.translation.name` ,
`category.translation` . `custom_fields` as `category.translation.customFields` ,
`category.translation` . `slot_config` as `category.translation.slotConfig` ,
`category.translation` . `link_type` as `category.translation.linkType` ,
`category.translation` . `internal_link` as `category.translation.internalLink` ,
`category.translation` . `external_link` as `category.translation.externalLink` ,
`category.translation` . `link_new_tab` as `category.translation.linkNewTab` ,
`category.translation` . `description` as `category.translation.description` ,
`category.translation` . `meta_title` as `category.translation.metaTitle` ,
`category.translation` . `meta_description` as `category.translation.metaDescription` ,
`category.translation` . `keywords` as `category.translation.keywords`
FROM
`category_translation` `category.translation`
WHERE
`category.translation` . `language_id` = ?
) `category.category_translation` ON `category.category_translation` . `category_id` = `category` . `id`
AND `category.category_translation` . `category_version_id` = `category` . `version_id`
LEFT JOIN (
SELECT
`category.media.translation` . `media_id` ,
`category.media.translation` . `alt` as `category.media.translation.alt` ,
`category.media.translation` . `title` as `category.media.translation.title` ,
`category.media.translation` . `custom_fields` as `category.media.translation.customFields`
FROM
`media_translation` `category.media.translation`
WHERE
`category.media.translation` . `language_id` = ?
) `category.media.media_translation` ON `category.media.media_translation` . `media_id` = `category.media` . `id`
WHERE
(`category` . `version_id` = ? )
AND (
(
`category` . `path` LIKE ?
AND (
`category` . `level` > ?
AND `category` . `level` < = ?
)
)
)
Copy
SELECT `category` . `id` as `category.id` , `category` . `version_id` as `category.versionId` , `category` . `parent_id` as `category.parentId` , `category` . `parent_version_id` as `category.parentVersionId` , `category` . `after_category_id` as `category.afterCategoryId` , `category` . `after_category_version_id` as `category.afterCategoryVersionId` , `category` . `media_id` as `category.mediaId` , `category` . `display_nested_products` as `category.displayNestedProducts` , `category` . `auto_increment` as `category.autoIncrement` , `category` . `level` as `category.level` , `category` . `path` as `category.path` , `category` . `child_count` as `category.childCount` , `category` . `type` as `category.type` , `category` . `product_assignment_type` as `category.productAssignmentType` , `category` . `visible` as `category.visible` , `category` . `active` as `category.active` , `category` . `cms_page_id` as `category.cmsPageId` , `category` . `cms_page_version_id` as `category.cmsPageVersionId` , `category` . `product_stream_id` as `category.productStreamId` , `category` . `custom_entity_type_id` as `category.customEntityTypeId` , `category` . `created_at` as `category.createdAt` , `category` . `updated_at` as `category.updatedAt` , `category.media` . `id` as `category.media.id` , `category.media` . `user_id` as `category.media.userId` , `category.media` . `media_folder_id` as `category.media.mediaFolderId` , `category.media` . `mime_type` as `category.media.mimeType` , `category.media` . `file_extension` as `category.media.fileExtension` , `category.media` . `uploaded_at` as `category.media.uploadedAt` , `category.media` . `file_name` as `category.media.fileName` , `category.media` . `file_size` as `category.media.fileSize` , `category.media` . `media_type` as `category.media.mediaTypeRaw` , `category.media` . `meta_data` as `category.media.metaData` , `category.media` . `config` as `category.media.config` , `category.media` . `path` as `category.media.path` , `category.media` . `private` as `category.media.private` , `category.media` . `thumbnails_ro` as `category.media.thumbnailsRo` , `category.media` . `file_hash` as `category.media.fileHash` , `category.media` . `created_at` as `category.media.createdAt` , `category.media` . `updated_at` as `category.media.updatedAt` , `category.media.translation.title` , `category.media.translation.title` as `category.media.title` , `category.media.translation.alt` , `category.media.translation.alt` as `category.media.alt` , `category.media.translation.customFields` , `category.media.translation.customFields` as `category.media.customFields` , `category.translation.name` , `category.translation.name` as `category.name` , `category.translation.breadcrumb` , `category.translation.breadcrumb` as `category.breadcrumb` , `category.translation.slotConfig` , `category.translation.slotConfig` as `category.slotConfig` , `category.translation.linkType` , `category.translation.linkType` as `category.linkType` , `category.translation.internalLink` , `category.translation.internalLink` as `category.internalLink` , `category.translation.externalLink` , `category.translation.externalLink` as `category.externalLink` , `category.translation.linkNewTab` , `category.translation.linkNewTab` as `category.linkNewTab` , `category.translation.description` , `category.translation.description` as `category.description` , `category.translation.metaTitle` , `category.translation.metaTitle` as `category.metaTitle` , `category.translation.metaDescription` , `category.translation.metaDescription` as `category.metaDescription` , `category.translation.keywords` , `category.translation.keywords` as `category.keywords` , `category.translation.customFields` , `category.translation.customFields` as `category.customFields` FROM `category` LEFT JOIN `media` `category.media` ON `category` . `media_id` = `category.media` . `id` LEFT JOIN (SELECT `category.translation` . `category_id` , `category.translation` . `category_version_id` , `category.translation` . `breadcrumb` as `category.translation.breadcrumb` , `category.translation` . `name` as `category.translation.name` , `category.translation` . `custom_fields` as `category.translation.customFields` , `category.translation` . `slot_config` as `category.translation.slotConfig` , `category.translation` . `link_type` as `category.translation.linkType` , `category.translation` . `internal_link` as `category.translation.internalLink` , `category.translation` . `external_link` as `category.translation.externalLink` , `category.translation` . `link_new_tab` as `category.translation.linkNewTab` , `category.translation` . `description` as `category.translation.description` , `category.translation` . `meta_title` as `category.translation.metaTitle` , `category.translation` . `meta_description` as `category.translation.metaDescription` , `category.translation` . `keywords` as `category.translation.keywords` FROM `category_translation` `category.translation` WHERE `category.translation` . `language_id` = 0x0230A828E7F14120974FAE38CDACDEDB ) `category.category_translation` ON `category.category_translation` . `category_id` = `category` . `id` AND `category.category_translation` . `category_version_id` = `category` . `version_id` LEFT JOIN (SELECT `category.media.translation` . `media_id` , `category.media.translation` . `alt` as `category.media.translation.alt` , `category.media.translation` . `title` as `category.media.translation.title` , `category.media.translation` . `custom_fields` as `category.media.translation.customFields` FROM `media_translation` `category.media.translation` WHERE `category.media.translation` . `language_id` = 0x0230A828E7F14120974FAE38CDACDEDB ) `category.media.media_translation` ON `category.media.media_translation` . `media_id` = `category.media` . `id` WHERE (`category` . `version_id` = 0x0FA91CE3E96A4BC2BE4BD9CE752C3425 ) AND ((`category` . `path` LIKE '%|fac3ea648fe24a2397bf167bcc48b7ac|%' AND (`category` . `level` > 1 AND `category` . `level` < = 7 )));
Copy
40
0.64 ms
SELECT LOWER (HEX (`category` . `parent_id` )) as `category-ids.key` , COUNT (`category` . `id` ) as `category-ids.count` , COUNT (DISTINCT `category` . `id` ) as `visible-children-count` FROM `category` WHERE (`category` . `version_id` = ? ) AND ((`category` . `path` LIKE ? AND `category` . `level` = ? AND `category` . `active` = ? AND `category` . `visible` = ? )) GROUP BY `category` . `parent_id`
Parameters :
[
b"\x0F ©\x1C ãéjK¾KÙÎu,4% "
"%|fac3ea648fe24a2397bf167bcc48b7ac|% "
7
true
true
]
SELECT LOWER (HEX (`category` . `parent_id` )) as `category-ids.key` , COUNT (`category` . `id` ) as `category-ids.count` , COUNT (DISTINCT `category` . `id` ) as `visible-children-count` FROM `category` WHERE (`category` . `version_id` = 0x0FA91CE3E96A4BC2BE4BD9CE752C3425 ) AND ((`category` . `path` LIKE '%|fac3ea648fe24a2397bf167bcc48b7ac|%' AND `category` . `level` = 7 AND `category` . `active` = 1 AND `category` . `visible` = 1 )) GROUP BY `category` . `parent_id` ;
Copy
41
1.62 ms
SELECT `category` . `id` as `category.id` , `category` . `version_id` as `category.versionId` , `category` . `parent_id` as `category.parentId` , `category` . `parent_version_id` as `category.parentVersionId` , `category` . `after_category_id` as `category.afterCategoryId` , `category` . `after_category_version_id` as `category.afterCategoryVersionId` , `category` . `media_id` as `category.mediaId` , `category` . `display_nested_products` as `category.displayNestedProducts` , `category` . `auto_increment` as `category.autoIncrement` , `category` . `level` as `category.level` , `category` . `path` as `category.path` , `category` . `child_count` as `category.childCount` , `category` . `type` as `category.type` , `category` . `product_assignment_type` as `category.productAssignmentType` , `category` . `visible` as `category.visible` , `category` . `active` as `category.active` , `category` . `cms_page_id` as `category.cmsPageId` , `category` . `cms_page_version_id` as `category.cmsPageVersionId` , `category` . `product_stream_id` as `category.productStreamId` , `category` . `custom_entity_type_id` as `category.customEntityTypeId` , `category` . `created_at` as `category.createdAt` , `category` . `updated_at` as `category.updatedAt` , `category.media` . `id` as `category.media.id` , `category.media` . `user_id` as `category.media.userId` , `category.media` . `media_folder_id` as `category.media.mediaFolderId` , `category.media` . `mime_type` as `category.media.mimeType` , `category.media` . `file_extension` as `category.media.fileExtension` , `category.media` . `uploaded_at` as `category.media.uploadedAt` , `category.media` . `file_name` as `category.media.fileName` , `category.media` . `file_size` as `category.media.fileSize` , `category.media` . `media_type` as `category.media.mediaTypeRaw` , `category.media` . `meta_data` as `category.media.metaData` , `category.media` . `config` as `category.media.config` , `category.media` . `path` as `category.media.path` , `category.media` . `private` as `category.media.private` , `category.media` . `thumbnails_ro` as `category.media.thumbnailsRo` , `category.media` . `file_hash` as `category.media.fileHash` , `category.media` . `created_at` as `category.media.createdAt` , `category.media` . `updated_at` as `category.media.updatedAt` , `category.media.translation.title` , `category.media.translation.title` as `category.media.title` , `category.media.translation.alt` , `category.media.translation.alt` as `category.media.alt` , `category.media.translation.customFields` , `category.media.translation.customFields` as `category.media.customFields` , `category.translation.name` , `category.translation.name` as `category.name` , `category.translation.breadcrumb` , `category.translation.breadcrumb` as `category.breadcrumb` , `category.translation.slotConfig` , `category.translation.slotConfig` as `category.slotConfig` , `category.translation.linkType` , `category.translation.linkType` as `category.linkType` , `category.translation.internalLink` , `category.translation.internalLink` as `category.internalLink` , `category.translation.externalLink` , `category.translation.externalLink` as `category.externalLink` , `category.translation.linkNewTab` , `category.translation.linkNewTab` as `category.linkNewTab` , `category.translation.description` , `category.translation.description` as `category.description` , `category.translation.metaTitle` , `category.translation.metaTitle` as `category.metaTitle` , `category.translation.metaDescription` , `category.translation.metaDescription` as `category.metaDescription` , `category.translation.keywords` , `category.translation.keywords` as `category.keywords` , `category.translation.customFields` , `category.translation.customFields` as `category.customFields` FROM `category` LEFT JOIN `media` `category.media` ON `category` . `media_id` = `category.media` . `id` LEFT JOIN (SELECT `category.translation` . `category_id` , `category.translation` . `category_version_id` , `category.translation` . `breadcrumb` as `category.translation.breadcrumb` , `category.translation` . `name` as `category.translation.name` , `category.translation` . `custom_fields` as `category.translation.customFields` , `category.translation` . `slot_config` as `category.translation.slotConfig` , `category.translation` . `link_type` as `category.translation.linkType` , `category.translation` . `internal_link` as `category.translation.internalLink` , `category.translation` . `external_link` as `category.translation.externalLink` , `category.translation` . `link_new_tab` as `category.translation.linkNewTab` , `category.translation` . `description` as `category.translation.description` , `category.translation` . `meta_title` as `category.translation.metaTitle` , `category.translation` . `meta_description` as `category.translation.metaDescription` , `category.translation` . `keywords` as `category.translation.keywords` FROM `category_translation` `category.translation` WHERE `category.translation` . `language_id` = ? ) `category.category_translation` ON `category.category_translation` . `category_id` = `category` . `id` AND `category.category_translation` . `category_version_id` = `category` . `version_id` LEFT JOIN (SELECT `category.media.translation` . `media_id` , `category.media.translation` . `alt` as `category.media.translation.alt` , `category.media.translation` . `title` as `category.media.translation.title` , `category.media.translation` . `custom_fields` as `category.media.translation.customFields` FROM `media_translation` `category.media.translation` WHERE `category.media.translation` . `language_id` = ? ) `category.media.media_translation` ON `category.media.media_translation` . `media_id` = `category.media` . `id` WHERE (`category` . `version_id` = ? ) AND (`category` . `id` IN (? ))
Parameters :
[
b"\x02 0¨(çñA —O®8ͬÞÛ "
b"\x02 0¨(çñA —O®8ͬÞÛ "
b"\x0F ©\x1C ãéjK¾KÙÎu,4% "
b"·├ÛdÅÔJ#ù┐\x16 {╠HÀ¼ "
]
SELECT
`category` . `id` as `category.id` ,
`category` . `version_id` as `category.versionId` ,
`category` . `parent_id` as `category.parentId` ,
`category` . `parent_version_id` as `category.parentVersionId` ,
`category` . `after_category_id` as `category.afterCategoryId` ,
`category` . `after_category_version_id` as `category.afterCategoryVersionId` ,
`category` . `media_id` as `category.mediaId` ,
`category` . `display_nested_products` as `category.displayNestedProducts` ,
`category` . `auto_increment` as `category.autoIncrement` ,
`category` . `level` as `category.level` ,
`category` . `path` as `category.path` ,
`category` . `child_count` as `category.childCount` ,
`category` . `type` as `category.type` ,
`category` . `product_assignment_type` as `category.productAssignmentType` ,
`category` . `visible` as `category.visible` ,
`category` . `active` as `category.active` ,
`category` . `cms_page_id` as `category.cmsPageId` ,
`category` . `cms_page_version_id` as `category.cmsPageVersionId` ,
`category` . `product_stream_id` as `category.productStreamId` ,
`category` . `custom_entity_type_id` as `category.customEntityTypeId` ,
`category` . `created_at` as `category.createdAt` ,
`category` . `updated_at` as `category.updatedAt` ,
`category.media` . `id` as `category.media.id` ,
`category.media` . `user_id` as `category.media.userId` ,
`category.media` . `media_folder_id` as `category.media.mediaFolderId` ,
`category.media` . `mime_type` as `category.media.mimeType` ,
`category.media` . `file_extension` as `category.media.fileExtension` ,
`category.media` . `uploaded_at` as `category.media.uploadedAt` ,
`category.media` . `file_name` as `category.media.fileName` ,
`category.media` . `file_size` as `category.media.fileSize` ,
`category.media` . `media_type` as `category.media.mediaTypeRaw` ,
`category.media` . `meta_data` as `category.media.metaData` ,
`category.media` . `config` as `category.media.config` ,
`category.media` . `path` as `category.media.path` ,
`category.media` . `private` as `category.media.private` ,
`category.media` . `thumbnails_ro` as `category.media.thumbnailsRo` ,
`category.media` . `file_hash` as `category.media.fileHash` ,
`category.media` . `created_at` as `category.media.createdAt` ,
`category.media` . `updated_at` as `category.media.updatedAt` ,
`category.media.translation.title` ,
`category.media.translation.title` as `category.media.title` ,
`category.media.translation.alt` ,
`category.media.translation.alt` as `category.media.alt` ,
`category.media.translation.customFields` ,
`category.media.translation.customFields` as `category.media.customFields` ,
`category.translation.name` ,
`category.translation.name` as `category.name` ,
`category.translation.breadcrumb` ,
`category.translation.breadcrumb` as `category.breadcrumb` ,
`category.translation.slotConfig` ,
`category.translation.slotConfig` as `category.slotConfig` ,
`category.translation.linkType` ,
`category.translation.linkType` as `category.linkType` ,
`category.translation.internalLink` ,
`category.translation.internalLink` as `category.internalLink` ,
`category.translation.externalLink` ,
`category.translation.externalLink` as `category.externalLink` ,
`category.translation.linkNewTab` ,
`category.translation.linkNewTab` as `category.linkNewTab` ,
`category.translation.description` ,
`category.translation.description` as `category.description` ,
`category.translation.metaTitle` ,
`category.translation.metaTitle` as `category.metaTitle` ,
`category.translation.metaDescription` ,
`category.translation.metaDescription` as `category.metaDescription` ,
`category.translation.keywords` ,
`category.translation.keywords` as `category.keywords` ,
`category.translation.customFields` ,
`category.translation.customFields` as `category.customFields`
FROM
`category`
LEFT JOIN `media` `category.media` ON `category` . `media_id` = `category.media` . `id`
LEFT JOIN (
SELECT
`category.translation` . `category_id` ,
`category.translation` . `category_version_id` ,
`category.translation` . `breadcrumb` as `category.translation.breadcrumb` ,
`category.translation` . `name` as `category.translation.name` ,
`category.translation` . `custom_fields` as `category.translation.customFields` ,
`category.translation` . `slot_config` as `category.translation.slotConfig` ,
`category.translation` . `link_type` as `category.translation.linkType` ,
`category.translation` . `internal_link` as `category.translation.internalLink` ,
`category.translation` . `external_link` as `category.translation.externalLink` ,
`category.translation` . `link_new_tab` as `category.translation.linkNewTab` ,
`category.translation` . `description` as `category.translation.description` ,
`category.translation` . `meta_title` as `category.translation.metaTitle` ,
`category.translation` . `meta_description` as `category.translation.metaDescription` ,
`category.translation` . `keywords` as `category.translation.keywords`
FROM
`category_translation` `category.translation`
WHERE
`category.translation` . `language_id` = ?
) `category.category_translation` ON `category.category_translation` . `category_id` = `category` . `id`
AND `category.category_translation` . `category_version_id` = `category` . `version_id`
LEFT JOIN (
SELECT
`category.media.translation` . `media_id` ,
`category.media.translation` . `alt` as `category.media.translation.alt` ,
`category.media.translation` . `title` as `category.media.translation.title` ,
`category.media.translation` . `custom_fields` as `category.media.translation.customFields`
FROM
`media_translation` `category.media.translation`
WHERE
`category.media.translation` . `language_id` = ?
) `category.media.media_translation` ON `category.media.media_translation` . `media_id` = `category.media` . `id`
WHERE
(`category` . `version_id` = ? )
AND (
`category` . `id` IN (? )
)
Copy
SELECT `category` . `id` as `category.id` , `category` . `version_id` as `category.versionId` , `category` . `parent_id` as `category.parentId` , `category` . `parent_version_id` as `category.parentVersionId` , `category` . `after_category_id` as `category.afterCategoryId` , `category` . `after_category_version_id` as `category.afterCategoryVersionId` , `category` . `media_id` as `category.mediaId` , `category` . `display_nested_products` as `category.displayNestedProducts` , `category` . `auto_increment` as `category.autoIncrement` , `category` . `level` as `category.level` , `category` . `path` as `category.path` , `category` . `child_count` as `category.childCount` , `category` . `type` as `category.type` , `category` . `product_assignment_type` as `category.productAssignmentType` , `category` . `visible` as `category.visible` , `category` . `active` as `category.active` , `category` . `cms_page_id` as `category.cmsPageId` , `category` . `cms_page_version_id` as `category.cmsPageVersionId` , `category` . `product_stream_id` as `category.productStreamId` , `category` . `custom_entity_type_id` as `category.customEntityTypeId` , `category` . `created_at` as `category.createdAt` , `category` . `updated_at` as `category.updatedAt` , `category.media` . `id` as `category.media.id` , `category.media` . `user_id` as `category.media.userId` , `category.media` . `media_folder_id` as `category.media.mediaFolderId` , `category.media` . `mime_type` as `category.media.mimeType` , `category.media` . `file_extension` as `category.media.fileExtension` , `category.media` . `uploaded_at` as `category.media.uploadedAt` , `category.media` . `file_name` as `category.media.fileName` , `category.media` . `file_size` as `category.media.fileSize` , `category.media` . `media_type` as `category.media.mediaTypeRaw` , `category.media` . `meta_data` as `category.media.metaData` , `category.media` . `config` as `category.media.config` , `category.media` . `path` as `category.media.path` , `category.media` . `private` as `category.media.private` , `category.media` . `thumbnails_ro` as `category.media.thumbnailsRo` , `category.media` . `file_hash` as `category.media.fileHash` , `category.media` . `created_at` as `category.media.createdAt` , `category.media` . `updated_at` as `category.media.updatedAt` , `category.media.translation.title` , `category.media.translation.title` as `category.media.title` , `category.media.translation.alt` , `category.media.translation.alt` as `category.media.alt` , `category.media.translation.customFields` , `category.media.translation.customFields` as `category.media.customFields` , `category.translation.name` , `category.translation.name` as `category.name` , `category.translation.breadcrumb` , `category.translation.breadcrumb` as `category.breadcrumb` , `category.translation.slotConfig` , `category.translation.slotConfig` as `category.slotConfig` , `category.translation.linkType` , `category.translation.linkType` as `category.linkType` , `category.translation.internalLink` , `category.translation.internalLink` as `category.internalLink` , `category.translation.externalLink` , `category.translation.externalLink` as `category.externalLink` , `category.translation.linkNewTab` , `category.translation.linkNewTab` as `category.linkNewTab` , `category.translation.description` , `category.translation.description` as `category.description` , `category.translation.metaTitle` , `category.translation.metaTitle` as `category.metaTitle` , `category.translation.metaDescription` , `category.translation.metaDescription` as `category.metaDescription` , `category.translation.keywords` , `category.translation.keywords` as `category.keywords` , `category.translation.customFields` , `category.translation.customFields` as `category.customFields` FROM `category` LEFT JOIN `media` `category.media` ON `category` . `media_id` = `category.media` . `id` LEFT JOIN (SELECT `category.translation` . `category_id` , `category.translation` . `category_version_id` , `category.translation` . `breadcrumb` as `category.translation.breadcrumb` , `category.translation` . `name` as `category.translation.name` , `category.translation` . `custom_fields` as `category.translation.customFields` , `category.translation` . `slot_config` as `category.translation.slotConfig` , `category.translation` . `link_type` as `category.translation.linkType` , `category.translation` . `internal_link` as `category.translation.internalLink` , `category.translation` . `external_link` as `category.translation.externalLink` , `category.translation` . `link_new_tab` as `category.translation.linkNewTab` , `category.translation` . `description` as `category.translation.description` , `category.translation` . `meta_title` as `category.translation.metaTitle` , `category.translation` . `meta_description` as `category.translation.metaDescription` , `category.translation` . `keywords` as `category.translation.keywords` FROM `category_translation` `category.translation` WHERE `category.translation` . `language_id` = 0x0230A828E7F14120974FAE38CDACDEDB ) `category.category_translation` ON `category.category_translation` . `category_id` = `category` . `id` AND `category.category_translation` . `category_version_id` = `category` . `version_id` LEFT JOIN (SELECT `category.media.translation` . `media_id` , `category.media.translation` . `alt` as `category.media.translation.alt` , `category.media.translation` . `title` as `category.media.translation.title` , `category.media.translation` . `custom_fields` as `category.media.translation.customFields` FROM `media_translation` `category.media.translation` WHERE `category.media.translation` . `language_id` = 0x0230A828E7F14120974FAE38CDACDEDB ) `category.media.media_translation` ON `category.media.media_translation` . `media_id` = `category.media` . `id` WHERE (`category` . `version_id` = 0x0FA91CE3E96A4BC2BE4BD9CE752C3425 ) AND (`category` . `id` IN (0xFAC3EA648FE24A2397BF167BCC48B7AC ));
Copy
42
0.60 ms
SELECT `product_sorting` . `id` as `product_sorting.id` , `product_sorting` . `locked` as `product_sorting.locked` , `product_sorting` . `url_key` as `product_sorting.key` , `product_sorting` . `priority` as `product_sorting.priority` , `product_sorting` . `active` as `product_sorting.active` , `product_sorting` . `fields` as `product_sorting.fields` , `product_sorting` . `created_at` as `product_sorting.createdAt` , `product_sorting` . `updated_at` as `product_sorting.updatedAt` , `product_sorting.translation.label` , `product_sorting.translation.label` as `product_sorting.label` FROM `product_sorting` LEFT JOIN (SELECT `product_sorting.translation` . `product_sorting_id` , `product_sorting.translation` . `label` as `product_sorting.translation.label` FROM `product_sorting_translation` `product_sorting.translation` WHERE `product_sorting.translation` . `language_id` = ? ) `product_sorting.product_sorting_translation` ON `product_sorting.product_sorting_translation` . `product_sorting_id` = `product_sorting` . `id` WHERE `product_sorting` . `id` IN (? )
Parameters :
[
b"\x02 0¨(çñA —O®8ͬÞÛ "
b"\f ìB\x12\x03 ØDšŸ?fàÔñ•@ "
]
SELECT `product_sorting` . `id` as `product_sorting.id` , `product_sorting` . `locked` as `product_sorting.locked` , `product_sorting` . `url_key` as `product_sorting.key` , `product_sorting` . `priority` as `product_sorting.priority` , `product_sorting` . `active` as `product_sorting.active` , `product_sorting` . `fields` as `product_sorting.fields` , `product_sorting` . `created_at` as `product_sorting.createdAt` , `product_sorting` . `updated_at` as `product_sorting.updatedAt` , `product_sorting.translation.label` , `product_sorting.translation.label` as `product_sorting.label` FROM `product_sorting` LEFT JOIN (SELECT `product_sorting.translation` . `product_sorting_id` , `product_sorting.translation` . `label` as `product_sorting.translation.label` FROM `product_sorting_translation` `product_sorting.translation` WHERE `product_sorting.translation` . `language_id` = 0x0230A828E7F14120974FAE38CDACDEDB ) `product_sorting.product_sorting_translation` ON `product_sorting.product_sorting_translation` . `product_sorting_id` = `product_sorting` . `id` WHERE `product_sorting` . `id` IN (0x0CEC421203D8449A9F3F66E0D4F19540 );
Copy
43
0.25 ms
SELECT `product_sorting` . `id` FROM `product_sorting` WHERE (`product_sorting` . `active` = ? ) ORDER BY `product_sorting` . `priority` DESC
SELECT `product_sorting` . `id` FROM `product_sorting` WHERE (`product_sorting` . `active` = 1 ) ORDER BY `product_sorting` . `priority` DESC ;
Copy
44
0.67 ms
SELECT `product_sorting` . `id` as `product_sorting.id` , `product_sorting` . `locked` as `product_sorting.locked` , `product_sorting` . `url_key` as `product_sorting.key` , `product_sorting` . `priority` as `product_sorting.priority` , `product_sorting` . `active` as `product_sorting.active` , `product_sorting` . `fields` as `product_sorting.fields` , `product_sorting` . `created_at` as `product_sorting.createdAt` , `product_sorting` . `updated_at` as `product_sorting.updatedAt` , `product_sorting.translation.label` , `product_sorting.translation.label` as `product_sorting.label` FROM `product_sorting` LEFT JOIN (SELECT `product_sorting.translation` . `product_sorting_id` , `product_sorting.translation` . `label` as `product_sorting.translation.label` FROM `product_sorting_translation` `product_sorting.translation` WHERE `product_sorting.translation` . `language_id` = ? ) `product_sorting.product_sorting_translation` ON `product_sorting.product_sorting_translation` . `product_sorting_id` = `product_sorting` . `id` WHERE `product_sorting` . `id` IN (? , ? , ? , ? , ? , ? )
Parameters :
[
b"\x02 0¨(çñA —O®8ͬÞÛ "
b"l\v $m¤jJh®ÇùÁåzwò "
b"O)–õ\x04 kIÒ¯ãJ‚?ˆCÀ "
b"wó\x0E ìγH\x08 ²Ã\x06 S¬Ä¹z "
b"-†µ£\x7F ¶L¨˜\x1E Ìî(ì<Õ "
b"\x00 n¢║\x1F ìJµ®Zr═_\x7F ªë "
b"\f ìB\x12\x03 ØDšŸ?fàÔñ•@ "
]
SELECT `product_sorting` . `id` as `product_sorting.id` , `product_sorting` . `locked` as `product_sorting.locked` , `product_sorting` . `url_key` as `product_sorting.key` , `product_sorting` . `priority` as `product_sorting.priority` , `product_sorting` . `active` as `product_sorting.active` , `product_sorting` . `fields` as `product_sorting.fields` , `product_sorting` . `created_at` as `product_sorting.createdAt` , `product_sorting` . `updated_at` as `product_sorting.updatedAt` , `product_sorting.translation.label` , `product_sorting.translation.label` as `product_sorting.label` FROM `product_sorting` LEFT JOIN (SELECT `product_sorting.translation` . `product_sorting_id` , `product_sorting.translation` . `label` as `product_sorting.translation.label` FROM `product_sorting_translation` `product_sorting.translation` WHERE `product_sorting.translation` . `language_id` = 0x0230A828E7F14120974FAE38CDACDEDB ) `product_sorting.product_sorting_translation` ON `product_sorting.product_sorting_translation` . `product_sorting_id` = `product_sorting` . `id` WHERE `product_sorting` . `id` IN (0x6C0B246DA46A4A68AEC7F9C1E57A77F2 , 0x4F2996F5046B49D2AFE34A823F8843C0 , 0x77F30EECCEB34808B2C30653ACC4B97A , 0x2D86B5A37FB64CA8981ECCEE28EC3CD5 , 0x006EBDBA1F8D4AE6A95A72CD5F7FA689 , 0x0CEC421203D8449A9F3F66E0D4F19540 );
Copy
45
0.41 ms
SELECT `category` . `id` , `category` . `auto_increment` FROM `category` WHERE (`category` . `version_id` = ? ) AND (`category` . `id` IN (? )) LIMIT 1
Parameters :
[
b"\x0F ©\x1C ãéjK¾KÙÎu,4% "
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02 (bH "
]
SELECT `category` . `id` , `category` . `auto_increment` FROM `category` WHERE (`category` . `version_id` = 0x0FA91CE3E96A4BC2BE4BD9CE752C3425 ) AND (`category` . `id` IN ('\0\0\0\0\0\0\0\0\0\0\0\0(bH' )) LIMIT 1 ;
Copy
46
0.25 ms
SELECT `category` . `id` as `category.id` , `category` . `version_id` as `category.versionId` , `category` . `product_assignment_type` as `category.productAssignmentType` , `category` . `product_stream_id` as `category.productStreamId` FROM `category` WHERE (`category` . `version_id` = ? ) AND (`category` . `id` IN (? ))
Parameters :
[
b"\x0F ©\x1C ãéjK¾KÙÎu,4% "
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02 (bH "
]
SELECT `category` . `id` as `category.id` , `category` . `version_id` as `category.versionId` , `category` . `product_assignment_type` as `category.productAssignmentType` , `category` . `product_stream_id` as `category.productStreamId` FROM `category` WHERE (`category` . `version_id` = 0x0FA91CE3E96A4BC2BE4BD9CE752C3425 ) AND (`category` . `id` IN ('\0\0\0\0\0\0\0\0\0\0\0\0(bH' ));
Copy
47
164.63 ms
SELECT `product` . `id` , `product` . `product_number` , `product` . `auto_increment` FROM `product` LEFT JOIN `product` `product.parent` ON `product` . `parent_id` = `product.parent` . `id` AND `product` . `parent_version_id` = `product.parent` . `version_id` LEFT JOIN `product_visibility` `product.visibilities` ON `product` . `visibilities` = `product.visibilities` . `product_id` AND `product` . version_id = `product.visibilities` . product_version_id LEFT JOIN `product_category_tree` `product.categoriesRo.mapping` ON `product` . `id` = `product.categoriesRo.mapping` . `product_id` AND `product` . `version_id` = `product.categoriesRo.mapping` . `product_version_id` LEFT JOIN `category` `product.categoriesRo` ON `product.categoriesRo.mapping` . `category_id` = `product.categoriesRo` . `id` AND `product.categoriesRo` . `version_id` = `product.categoriesRo.mapping` . `category_version_id` WHERE (`product` . `version_id` = ? ) AND ((((`product.visibilities` . `visibility` > = ? ) AND `product.visibilities` . `sales_channel_id` = ? AND IFNULL (`product` . `active` , `product.parent` . `active` ) = ? ) AND `product.categoriesRo` . `id` = ? AND NOT (`product` . `display_group` < = > ? ))) GROUP BY `product` . `display_group` ORDER BY MAX (`product` . `sales` ) DESC , MIN (`product` . `id` ) ASC LIMIT 24
Parameters :
[
b"\x0F ©\x1C ãéjK¾KÙÎu,4% "
30
b">{k'Ô\x1E O‡!¼GnÏMj "
true
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02 (bH "
null
]
SELECT `product` . `id` , `product` . `product_number` , `product` . `auto_increment` FROM `product` LEFT JOIN `product` `product.parent` ON `product` . `parent_id` = `product.parent` . `id` AND `product` . `parent_version_id` = `product.parent` . `version_id` LEFT JOIN `product_visibility` `product.visibilities` ON `product` . `visibilities` = `product.visibilities` . `product_id` AND `product` . version_id = `product.visibilities` . product_version_id LEFT JOIN `product_category_tree` `product.categoriesRo.mapping` ON `product` . `id` = `product.categoriesRo.mapping` . `product_id` AND `product` . `version_id` = `product.categoriesRo.mapping` . `product_version_id` LEFT JOIN `category` `product.categoriesRo` ON `product.categoriesRo.mapping` . `category_id` = `product.categoriesRo` . `id` AND `product.categoriesRo` . `version_id` = `product.categoriesRo.mapping` . `category_version_id` WHERE (`product` . `version_id` = 0x0FA91CE3E96A4BC2BE4BD9CE752C3425 ) AND ((((`product.visibilities` . `visibility` > = 30 ) AND `product.visibilities` . `sales_channel_id` = 0x3E7B6B27D41E4F87AD21BC476ECF4D6A AND IFNULL (`product` . `active` , `product.parent` . `active` ) = 1 ) AND `product.categoriesRo` . `id` = '\0\0\0\0\0\0\0\0\0\0\0\0(bH' AND NOT (`product` . `display_group` < = > NULL ))) GROUP BY `product` . `display_group` ORDER BY MAX (`product` . `sales` ) DESC , MIN (`product` . `id` ) ASC LIMIT 24 ;
Copy
48
52.99 ms
SELECT COUNT (* ) FROM (
SELECT `product` . `id` , `product` . `product_number` , `product` . `auto_increment` FROM `product` LEFT JOIN `product` `product.parent` ON `product` . `parent_id` = `product.parent` . `id` AND `product` . `parent_version_id` = `product.parent` . `version_id` LEFT JOIN `product_visibility` `product.visibilities` ON `product` . `visibilities` = `product.visibilities` . `product_id` AND `product` . version_id = `product.visibilities` . product_version_id LEFT JOIN `product_category_tree` `product.categoriesRo.mapping` ON `product` . `id` = `product.categoriesRo.mapping` . `product_id` AND `product` . `version_id` = `product.categoriesRo.mapping` . `product_version_id` LEFT JOIN `category` `product.categoriesRo` ON `product.categoriesRo.mapping` . `category_id` = `product.categoriesRo` . `id` AND `product.categoriesRo` . `version_id` = `product.categoriesRo.mapping` . `category_version_id` WHERE (`product` . `version_id` = ? ) AND ((((`product.visibilities` . `visibility` > = ? ) AND `product.visibilities` . `sales_channel_id` = ? AND IFNULL (`product` . `active` , `product.parent` . `active` ) = ? ) AND `product.categoriesRo` . `id` = ? AND NOT (`product` . `display_group` < = > ? ))) GROUP BY `product` . `display_group` ) total
Parameters :
[
b"\x0F ©\x1C ãéjK¾KÙÎu,4% "
30
b">{k'Ô\x1E O‡!¼GnÏMj "
true
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02 (bH "
null
]
SELECT COUNT (* ) FROM (
SELECT `product` . `id` , `product` . `product_number` , `product` . `auto_increment` FROM `product` LEFT JOIN `product` `product.parent` ON `product` . `parent_id` = `product.parent` . `id` AND `product` . `parent_version_id` = `product.parent` . `version_id` LEFT JOIN `product_visibility` `product.visibilities` ON `product` . `visibilities` = `product.visibilities` . `product_id` AND `product` . version_id = `product.visibilities` . product_version_id LEFT JOIN `product_category_tree` `product.categoriesRo.mapping` ON `product` . `id` = `product.categoriesRo.mapping` . `product_id` AND `product` . `version_id` = `product.categoriesRo.mapping` . `product_version_id` LEFT JOIN `category` `product.categoriesRo` ON `product.categoriesRo.mapping` . `category_id` = `product.categoriesRo` . `id` AND `product.categoriesRo` . `version_id` = `product.categoriesRo.mapping` . `category_version_id` WHERE (`product` . `version_id` = 0x0FA91CE3E96A4BC2BE4BD9CE752C3425 ) AND ((((`product.visibilities` . `visibility` > = 30 ) AND `product.visibilities` . `sales_channel_id` = 0x3E7B6B27D41E4F87AD21BC476ECF4D6A AND IFNULL (`product` . `active` , `product.parent` . `active` ) = 1 ) AND `product.categoriesRo` . `id` = '\0\0\0\0\0\0\0\0\0\0\0\0(bH' AND NOT (`product` . `display_group` < = > NULL ))) GROUP BY `product` . `display_group` ) total ;
Copy
49
50.21 ms
SELECT LOWER (HEX (IFNULL (`product` . `product_manufacturer_id` , `product.parent` . `product_manufacturer_id` ))) as `manufacturer` FROM `product` LEFT JOIN `product` `product.parent` ON `product` . `parent_id` = `product.parent` . `id` AND `product` . `parent_version_id` = `product.parent` . `version_id` LEFT JOIN `product_visibility` `product.visibilities` ON `product` . `visibilities` = `product.visibilities` . `product_id` AND `product` . version_id = `product.visibilities` . product_version_id LEFT JOIN `product_category_tree` `product.categoriesRo.mapping` ON `product` . `id` = `product.categoriesRo.mapping` . `product_id` AND `product` . `version_id` = `product.categoriesRo.mapping` . `product_version_id` LEFT JOIN `category` `product.categoriesRo` ON `product.categoriesRo.mapping` . `category_id` = `product.categoriesRo` . `id` AND `product.categoriesRo` . `version_id` = `product.categoriesRo.mapping` . `category_version_id` WHERE (`product` . `version_id` = ? ) AND ((((`product.visibilities` . `visibility` > = ? ) AND `product.visibilities` . `sales_channel_id` = ? AND IFNULL (`product` . `active` , `product.parent` . `active` ) = ? ) AND `product.categoriesRo` . `id` = ? AND NOT (`product` . `display_group` < = > ? ))) GROUP BY IFNULL (`product` . `product_manufacturer_id` , `product.parent` . `product_manufacturer_id` )
Parameters :
[
b"\x0F ©\x1C ãéjK¾KÙÎu,4% "
30
b">{k'Ô\x1E O‡!¼GnÏMj "
true
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02 (bH "
null
]
SELECT LOWER (HEX (IFNULL (`product` . `product_manufacturer_id` , `product.parent` . `product_manufacturer_id` ))) as `manufacturer` FROM `product` LEFT JOIN `product` `product.parent` ON `product` . `parent_id` = `product.parent` . `id` AND `product` . `parent_version_id` = `product.parent` . `version_id` LEFT JOIN `product_visibility` `product.visibilities` ON `product` . `visibilities` = `product.visibilities` . `product_id` AND `product` . version_id = `product.visibilities` . product_version_id LEFT JOIN `product_category_tree` `product.categoriesRo.mapping` ON `product` . `id` = `product.categoriesRo.mapping` . `product_id` AND `product` . `version_id` = `product.categoriesRo.mapping` . `product_version_id` LEFT JOIN `category` `product.categoriesRo` ON `product.categoriesRo.mapping` . `category_id` = `product.categoriesRo` . `id` AND `product.categoriesRo` . `version_id` = `product.categoriesRo.mapping` . `category_version_id` WHERE (`product` . `version_id` = 0x0FA91CE3E96A4BC2BE4BD9CE752C3425 ) AND ((((`product.visibilities` . `visibility` > = 30 ) AND `product.visibilities` . `sales_channel_id` = 0x3E7B6B27D41E4F87AD21BC476ECF4D6A AND IFNULL (`product` . `active` , `product.parent` . `active` ) = 1 ) AND `product.categoriesRo` . `id` = '\0\0\0\0\0\0\0\0\0\0\0\0(bH' AND NOT (`product` . `display_group` < = > NULL ))) GROUP BY IFNULL (`product` . `product_manufacturer_id` , `product.parent` . `product_manufacturer_id` );
Copy
50
1.28 ms
SELECT `product_manufacturer` . `id` as `product_manufacturer.id` , `product_manufacturer` . `version_id` as `product_manufacturer.versionId` , `product_manufacturer` . `media_id` as `product_manufacturer.mediaId` , `product_manufacturer` . `link` as `product_manufacturer.link` , `product_manufacturer` . `created_at` as `product_manufacturer.createdAt` , `product_manufacturer` . `updated_at` as `product_manufacturer.updatedAt` , `product_manufacturer.translation.name` , `product_manufacturer.translation.name` as `product_manufacturer.name` , `product_manufacturer.translation.description` , `product_manufacturer.translation.description` as `product_manufacturer.description` , `product_manufacturer.translation.customFields` , `product_manufacturer.translation.customFields` as `product_manufacturer.customFields` FROM `product_manufacturer` LEFT JOIN (SELECT `product_manufacturer.translation` . `product_manufacturer_id` , `product_manufacturer.translation` . `product_manufacturer_version_id` , `product_manufacturer.translation` . `name` as `product_manufacturer.translation.name` , `product_manufacturer.translation` . `description` as `product_manufacturer.translation.description` , `product_manufacturer.translation` . `custom_fields` as `product_manufacturer.translation.customFields` FROM `product_manufacturer_translation` `product_manufacturer.translation` WHERE `product_manufacturer.translation` . `language_id` = ? ) `product_manufacturer.product_manufacturer_translation` ON `product_manufacturer.product_manufacturer_translation` . `product_manufacturer_id` = `product_manufacturer` . `id` AND `product_manufacturer.product_manufacturer_translation` . `product_manufacturer_version_id` = `product_manufacturer` . `version_id` WHERE (`product_manufacturer` . `version_id` = ? ) AND (`product_manufacturer` . `id` IN (? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? ))
Parameters :
[
b"\x02 0¨(çñA —O®8ͬÞÛ "
b"\x0F ©\x1C ãéjK¾KÙÎu,4% "
b"\x02 n*oe¨DŠ„¨».D\x13 }® "
b"\x05 yÙ\x17 ›,N1Œ<š1\x10 ¡5M "
b"\x08 ‡kãîžGöŸCQ53;Õ+ "
b"\x08 ŽVö7\x15 Do‡6`4@[èU "
b"""
\n
F› ÛÍB)°\x17 Y´e¦WM
"""
b"""
\n
І\x17 ÓqO»ƒüü²Ò\x1E \n
ù
"""
b"\x0F 6zfé³N\x16 šY(˜\x15 =ãì "
b"\x13 P·,\x07 ìN»‚ÃÆ´ªùÐÍ "
b"\x13 ╩ô\x1F ÆwMÞÉ \f\t /Ó«\f "
b"\x16 ©\x1A >\═LØ┤²^©ö1¨█ "
b"\x1A ²àaÃjKıåç¿ÿF▓É‗ "
b"\x1F Bø8ÚtG└║À5§▄\x04 \r ì "
b"\x1F oe\r `ŠAb°þÞ™ež\x16 * "
b" Ï\f *¬KJ…¬Ÿ\x18 HLV¤Q "
b" å3DzÁLߟœÁ>§o@\x0F "
b"(¸ÆZlÍBŒ˜šŸ9¨\x11 é‹ "
b"+Õ¥^ò\x05 H£¦ôQ/»ÔRR "
b"08–\e ¸øL—œjSéÉÔêN "
b"0®,\x01 (║Hü»M\x02 ╣1╬å¯ "
b"0¼\x1D ÙêPB\x1E ìM.ÝpÆNô "
b"2\t ¤À. E¬Šƒú¢¸þžx "
b"7RØ└rèA©öD┌#╦·2╝ "
b"7þÔjŸwEW†?ólãÖ\x1A 7 "
b"E¾xU4ªFÕìDI´8!,# "
b"P&Dy0\x18 @Å™ö\x12 •6\.O "
b"aá[ºÏ;@í”è^ß\x19 –•Z "
b"c̲?é\x06 HM¤DS\x07\x15 œ" "
b"cþ\x7F ─/±KâÅ\Vôøä\x04 ê "
b"gÓÈÆ€OFGƒ1ݾ(3\x03 – "
b"kmcTéíD…£\x13 ;×É"ËK "
b"rÏÁ/C$L\x12 ‰˜exzx*² "
b"söåMŽÐC´½Ö4\x0F “Âeº "
b"y‰ùÿq¿Nê›BÔO…?'‹ "
b"{\x14 y^’NJ‚³]¬c_·\x0F Ó "
b"}\x04 êóA?F╠Å\x1F x@º-Þ│ "
b"\x7F i™j(·BÇ„>^Ç\x7F ݪ„ "
b"âfÞ½k°G\e Å\x16 £║ıÅâ\x1F "
b"à\x12 2╬9zA\x15 │\x17 ¿(-\x16 kü "
b"†h?Ö²pMƪ¤ß_áòýA "
b"—qRPÐ×E–«©†ÑlŒdE "
b"Öá=N\x0F #Lì¥\x07 U4\x08 Þw, "
b"¥ÿÃãŠ]HN‰›\x07 žöìæ] "
b"©dЏ°-BÇ»kÂb Á¼B "
b"Ýo\x01 Œ—L\x07 •mM0Mš à "
b"°\x0E ñÕªÉCÁ›*‹f…±</ "
b"""
¹;ÙE\x0E ÌB\n
¿ìÊ \x1F ‚èÏ
"""
b"»zZ„\x15 TH\x1E ¤p]Ü{ê\x16\x7F "
b"½¦»@c\x00 E\x06 ”ú\x11\x1D T‘™ƒ "
b"ÂßaÔ\e nJ\x19 ‘í\x10 þ™¥Ò7 "
b"ĨÕy\x1F ^Aa…PKnk fÛ "
b"Æ~E-ô‚B$¯ŽöúsîÙ2 "
b"Èñ㽦\x1A AôˆRÎ>owâÚ "
b"к?o¶;@¬ž\x17 (s®\x07 Ž\x0F "
b"Ð¥\x15 T/▀OûÀ\x1E RìûW/¬ "
b"Ö•ÍûúRN}¸\x10 ¿.Õ’ôà "
b"ÜfyÞHoDl¹ý\x03 c]Î*w "
b"ÓH³\f █╗NÁÉ_ °¯\x1D ÁÀ "
b"áN\x00 ØeKÿ”' À\x7F 7\x18 Í "
b"ßü\x08 ÜM¼Mì¿├ ØWQ¿¢ "
b"á›ëÜÍúBJ¯2[™r\x12 `\x11 "
b"çu{Äš[EN™JÏ\x02 5£[ò "
b"ê{AVžåF; \x1A œAë\x03\x16 "
b"ë|\x7F ®˜ŸHô¡Ò\t éðêVÜ "
b"ýPYDZ\x17 E\x08 û/ÅÆ╔áW▀ "
b"ó?FV˜ÜA†¾û¼ýÓÄ¼Ï "
b"÷ü#Ÿí\x12 Aβ,÷Kle«ø "
]
SELECT
`product_manufacturer` . `id` as `product_manufacturer.id` ,
`product_manufacturer` . `version_id` as `product_manufacturer.versionId` ,
`product_manufacturer` . `media_id` as `product_manufacturer.mediaId` ,
`product_manufacturer` . `link` as `product_manufacturer.link` ,
`product_manufacturer` . `created_at` as `product_manufacturer.createdAt` ,
`product_manufacturer` . `updated_at` as `product_manufacturer.updatedAt` ,
`product_manufacturer.translation.name` ,
`product_manufacturer.translation.name` as `product_manufacturer.name` ,
`product_manufacturer.translation.description` ,
`product_manufacturer.translation.description` as `product_manufacturer.description` ,
`product_manufacturer.translation.customFields` ,
`product_manufacturer.translation.customFields` as `product_manufacturer.customFields`
FROM
`product_manufacturer`
LEFT JOIN (
SELECT
`product_manufacturer.translation` . `product_manufacturer_id` ,
`product_manufacturer.translation` . `product_manufacturer_version_id` ,
`product_manufacturer.translation` . `name` as `product_manufacturer.translation.name` ,
`product_manufacturer.translation` . `description` as `product_manufacturer.translation.description` ,
`product_manufacturer.translation` . `custom_fields` as `product_manufacturer.translation.customFields`
FROM
`product_manufacturer_translation` `product_manufacturer.translation`
WHERE
`product_manufacturer.translation` . `language_id` = ?
) `product_manufacturer.product_manufacturer_translation` ON `product_manufacturer.product_manufacturer_translation` . `product_manufacturer_id` = `product_manufacturer` . `id`
AND `product_manufacturer.product_manufacturer_translation` . `product_manufacturer_version_id` = `product_manufacturer` . `version_id`
WHERE
(
`product_manufacturer` . `version_id` = ?
)
AND (
`product_manufacturer` . `id` IN (
? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? ,
? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? ,
? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? ,
? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? ,
? , ? , ? , ? , ?
)
)
Copy
SELECT `product_manufacturer` . `id` as `product_manufacturer.id` , `product_manufacturer` . `version_id` as `product_manufacturer.versionId` , `product_manufacturer` . `media_id` as `product_manufacturer.mediaId` , `product_manufacturer` . `link` as `product_manufacturer.link` , `product_manufacturer` . `created_at` as `product_manufacturer.createdAt` , `product_manufacturer` . `updated_at` as `product_manufacturer.updatedAt` , `product_manufacturer.translation.name` , `product_manufacturer.translation.name` as `product_manufacturer.name` , `product_manufacturer.translation.description` , `product_manufacturer.translation.description` as `product_manufacturer.description` , `product_manufacturer.translation.customFields` , `product_manufacturer.translation.customFields` as `product_manufacturer.customFields` FROM `product_manufacturer` LEFT JOIN (SELECT `product_manufacturer.translation` . `product_manufacturer_id` , `product_manufacturer.translation` . `product_manufacturer_version_id` , `product_manufacturer.translation` . `name` as `product_manufacturer.translation.name` , `product_manufacturer.translation` . `description` as `product_manufacturer.translation.description` , `product_manufacturer.translation` . `custom_fields` as `product_manufacturer.translation.customFields` FROM `product_manufacturer_translation` `product_manufacturer.translation` WHERE `product_manufacturer.translation` . `language_id` = 0x0230A828E7F14120974FAE38CDACDEDB ) `product_manufacturer.product_manufacturer_translation` ON `product_manufacturer.product_manufacturer_translation` . `product_manufacturer_id` = `product_manufacturer` . `id` AND `product_manufacturer.product_manufacturer_translation` . `product_manufacturer_version_id` = `product_manufacturer` . `version_id` WHERE (`product_manufacturer` . `version_id` = 0x0FA91CE3E96A4BC2BE4BD9CE752C3425 ) AND (`product_manufacturer` . `id` IN (0x026E2A6F65A8448A84A8BB2E44137DAE , 0x0579D9179B2C4E318C3C9A3110A1354D , 0x08876BE3EE9E47F69F435135333BD52B , 0x088E56F63715446F87366034405BE855 , 0x0A469B20DBCD4229B01759B465A6574D , 0x0A8A8617D3714FBB83FCFCB2D21E0AF9 , 0x0F367A66E9B34E169A592898153DE3EC , 0x1350B72C07EC4EBB82C3C6B4AAF9D0CD , 0x13CA931F92774DE890200C092FE0AE0C , 0x16B81A3E5CCD4C9DB4FD5EB89431F9DB , 0x1AFD8561C76A4BD58687A89846B290F2 , 0x1F429B38E97447C0BAB735F5DC040D8D , 0x1F6F650D608A4162B0FEDE99659E162A , 0x20CF0C2AAC4B4A85AC9F18484C56A451 , 0x20E533447AC14CDF9F9CC13EA76F400F , 0x28B8C65A6CCD428C989A9F39A811E98B , 0x2BD5A55EF20548A3A6F4512FBBD45252 , 0x3038961BB8F84C979C6A53E9C9D4EA4E , 0x30A92C0128BA4881AF4D02B931CE86EE , 0x30AC1DEB8850421E8D4D2EED70924E93 , 0x3209A4C02EA045AC8A83FAA2B8FE9E78 , 0x37529DC0728A41B89444DA23CBFA32BC , 0x37FED46A9F774557863FF36CE3D61A37 , 0x45F3785534A646E58D4449EF38212C23 , 0x50264479301840C599F61295365C2E4F , 0x61E15BBACF3B40ED94E85EDF1996955A , 0x63CCB23FE906484DA444530715A09C22 , 0x63E77FC42FF14B838F5C56939B840488 , 0x67D3C8C6804F46478331DDBE28330396 , 0x6B6D6354E9ED4485A3133BD7C922CB4B , 0x72CFC12F43244C12899865787A782AB2 , 0x73F6E54D8ED043B4BDD6340F93C265BA , 0x7989F9FF71BF4EEA9B42D44F853F278B , 0x7B14795E924E4A82B35DAC635FB70FD3 , 0x7D0488A2413F46CC8F1F7840A72DE8B3 , 0x7F69996A28B742C7843E5EC77FDDAA84 , 0x8366E8AB6BF8471B8F169CBAD58F831F , 0x851232CE397A4115B317A8282D166B81 , 0x86683FD6B2704DC6AAA4DF5FE1F2FD41 , 0x97715250D0D74596ABA986D16C8C6445 , 0x99A03D4E0F234C8DBE07553408E8772C , 0xA5FFC3E38A5D484E899B079EF6ECE65D , 0xA9648AB8B02D42C7BB6BC262A0C1BC42 , 0xADDD6F018C974C07956D4D304D9A20E0 , 0xB00EF1D5AAC943C19B2A8B6685B13C2F , 0xB93BD9450ECC420ABFECCAA01F82E8CF , 0xBB7A5A841554481EA4705DDC7BEA167F , 0xBDA6BB406300450694FA111D54919983 , 0xC2DF61D41B6E4A1991ED10FE99A5D237 , 0xC4A8D5791F5E416185504B6E6BA066DB , 0xC67E452DF4824224AF8EF6FA73EED932 , 0xC8F1E3BDA61A41F48852CE3E6F77E2DA , 0xD0BA3F6FB63B40AC9E172873AE078E0F , 0xD1BE15542FDF4F96B71E528D96572FAA , 0xD695CDFBFA524E7DB810BF2ED592F4E0 , 0xDC6679DE486F446CB9FD03635DCE2A77 , 0xE048FC0CDBBB4EB5905F20F8EE1DB5B7 , 0xE14E00A0D8654BFF9427A0C07F3718CD , 0xE181089A4DAC4D8DA8C3209D5751A8BD , 0xE19BEBDCCDFA424AAF325B9972126011 , 0xE7757BC49A5B454E994ACF0235A35BF2 , 0xEA7B41569EE5463BA01AAD9C41EB0316 , 0xEB7C7FAE989F48F4A1D209E9F0EA56DC , 0xEC505980F1174508962F8F92C9A057DF , 0xF33F465698DC4186BEFBBCFDD3C4BCCF , 0xF7FC239FED1241CEB22CF74B6C65ABF8 ));
Copy
51
198.41 ms
SELECT MIN (IFNULL (COALESCE ((ROUND ((ROUND (CAST ((JSON_UNQUOTE (JSON_EXTRACT (`product` . `cheapest_price_accessor` , "$.ruled80c7ad413604809b17b191db2357535.currencyb7d2554b0ce847cd82f3ac9bd1c0dfca.gross" )) * 1 ) as DECIMAL (30 , 20 )), 2 )) * 100 , 0 ) / 100 ), (ROUND ((ROUND (CAST ((JSON_UNQUOTE (JSON_EXTRACT (`product` . `cheapest_price_accessor` , "$.rule1d7048236acf4a52b03c0365c5cf515c.currencyb7d2554b0ce847cd82f3ac9bd1c0dfca.gross" )) * 1 ) as DECIMAL (30 , 20 )), 2 )) * 100 , 0 ) / 100 ), (ROUND ((ROUND (CAST ((JSON_UNQUOTE (JSON_EXTRACT (`product` . `cheapest_price_accessor` , "$.rule3858957016644de4ae48c0500bf3ccc8.currencyb7d2554b0ce847cd82f3ac9bd1c0dfca.gross" )) * 1 ) as DECIMAL (30 , 20 )), 2 )) * 100 , 0 ) / 100 ), (ROUND ((ROUND (CAST ((JSON_UNQUOTE (JSON_EXTRACT (`product` . `cheapest_price_accessor` , "$.rule44abeee58eda43559bbcf0f6ff296300.currencyb7d2554b0ce847cd82f3ac9bd1c0dfca.gross" )) * 1 ) as DECIMAL (30 , 20 )), 2 )) * 100 , 0 ) / 100 ), (ROUND ((ROUND (CAST ((JSON_UNQUOTE (JSON_EXTRACT (`product` . `cheapest_price_accessor` , "$.rule73985d35e9ca4269aa801b8fe062944b.currencyb7d2554b0ce847cd82f3ac9bd1c0dfca.gross" )) * 1 ) as DECIMAL (30 , 20 )), 2 )) * 100 , 0 ) / 100 ), (ROUND ((ROUND (CAST ((JSON_UNQUOTE (JSON_EXTRACT (`product` . `cheapest_price_accessor` , "$.rule972a7b9e4ee04fc7a04524c1c17b57f9.currencyb7d2554b0ce847cd82f3ac9bd1c0dfca.gross" )) * 1 ) as DECIMAL (30 , 20 )), 2 )) * 100 , 0 ) / 100 ), (ROUND ((ROUND (CAST ((JSON_UNQUOTE (JSON_EXTRACT (`product` . `cheapest_price_accessor` , "$.rulee1378db7808a478f919e0d740d5d6c1a.currencyb7d2554b0ce847cd82f3ac9bd1c0dfca.gross" )) * 1 ) as DECIMAL (30 , 20 )), 2 )) * 100 , 0 ) / 100 ), (ROUND ((ROUND (CAST ((JSON_UNQUOTE (JSON_EXTRACT (`product` . `cheapest_price_accessor` , "$.rulee98c61274c394568b5f9d3a28b44b0d9.currencyb7d2554b0ce847cd82f3ac9bd1c0dfca.gross" )) * 1 ) as DECIMAL (30 , 20 )), 2 )) * 100 , 0 ) / 100 ), (ROUND ((ROUND (CAST ((JSON_UNQUOTE (JSON_EXTRACT (`product` . `cheapest_price_accessor` , "$.ruleec697ec341d94fcb9ca7ccb59f292c3c.currencyb7d2554b0ce847cd82f3ac9bd1c0dfca.gross" )) * 1 ) as DECIMAL (30 , 20 )), 2 )) * 100 , 0 ) / 100 ), (ROUND ((ROUND (CAST ((JSON_UNQUOTE (JSON_EXTRACT (`product` . `cheapest_price_accessor` , "$.rule28caae75a5624f0d985abd0eb32aa160.currencyb7d2554b0ce847cd82f3ac9bd1c0dfca.gross" )) * 1 ) as DECIMAL (30 , 20 )), 2 )) * 100 , 0 ) / 100 ), (ROUND ((ROUND (CAST ((JSON_UNQUOTE (JSON_EXTRACT (`product` . `cheapest_price_accessor` , "$.rule59c443ea0d494930a00ecf5a0398f003.currencyb7d2554b0ce847cd82f3ac9bd1c0dfca.gross" )) * 1 ) as DECIMAL (30 , 20 )), 2 )) * 100 , 0 ) / 100 ), (ROUND ((ROUND (CAST ((JSON_UNQUOTE (JSON_EXTRACT (`product` . `cheapest_price_accessor` , "$.rulee44e6782c64247b796b891cf25ae38f7.currencyb7d2554b0ce847cd82f3ac9bd1c0dfca.gross" )) * 1 ) as DECIMAL (30 , 20 )), 2 )) * 100 , 0 ) / 100 ), (ROUND ((ROUND (CAST ((JSON_UNQUOTE (JSON_EXTRACT (`product` . `cheapest_price_accessor` , "$.ruledefault.currencyb7d2554b0ce847cd82f3ac9bd1c0dfca.gross" )) * 1 ) as DECIMAL (30 , 20 )), 2 )) * 100 , 0 ) / 100 )), COALESCE ((ROUND ((ROUND (CAST ((JSON_UNQUOTE (JSON_EXTRACT (`product.parent` . `cheapest_price_accessor` , "$.ruled80c7ad413604809b17b191db2357535.currencyb7d2554b0ce847cd82f3ac9bd1c0dfca.gross" )) * 1 ) as DECIMAL (30 , 20 )), 2 )) * 100 , 0 ) / 100 ), (ROUND ((ROUND (CAST ((JSON_UNQUOTE (JSON_EXTRACT (`product.parent` . `cheapest_price_accessor` , "$.rule1d7048236acf4a52b03c0365c5cf515c.currencyb7d2554b0ce847cd82f3ac9bd1c0dfca.gross" )) * 1 ) as DECIMAL (30 , 20 )), 2 )) * 100 , 0 ) / 100 ), (ROUND ((ROUND (CAST ((JSON_UNQUOTE (JSON_EXTRACT (`product.parent` . `cheapest_price_accessor` , "$.rule3858957016644de4ae48c0500bf3ccc8.currencyb7d2554b0ce847cd82f3ac9bd1c0dfca.gross" )) * 1 ) as DECIMAL (30 , 20 )), 2 )) * 100 , 0 ) / 100 ), (ROUND ((ROUND (CAST ((JSON_UNQUOTE (JSON_EXTRACT (`product.parent` . `cheapest_price_accessor` , "$.rule44abeee58eda43559bbcf0f6ff296300.currencyb7d2554b0ce847cd82f3ac9bd1c0dfca.gross" )) * 1 ) as DECIMAL (30 , 20 )), 2 )) * 100 , 0 ) / 100 ), (ROUND ((ROUND (CAST ((JSON_UNQUOTE (JSON_EXTRACT (`product.parent` . `cheapest_price_accessor` , "$.rule73985d35e9ca4269aa801b8fe062944b.currencyb7d2554b0ce847cd82f3ac9bd1c0dfca.gross" )) * 1 ) as DECIMAL (30 , 20 )), 2 )) * 100 , 0 ) / 100 ), (ROUND ((ROUND (CAST ((JSON_UNQUOTE (JSON_EXTRACT (`product.parent` . `cheapest_price_accessor` , "$.rule972a7b9e4ee04fc7a04524c1c17b57f9.currencyb7d2554b0ce847cd82f3ac9bd1c0dfca.gross" )) * 1 ) as DECIMAL (30 , 20 )), 2 )) * 100 , 0 ) / 100 ), (ROUND ((ROUND (CAST ((JSON_UNQUOTE (JSON_EXTRACT (`product.parent` . `cheapest_price_accessor` , "$.rulee1378db7808a478f919e0d740d5d6c1a.currencyb7d2554b0ce847cd82f3ac9bd1c0dfca.gross" )) * 1 ) as DECIMAL (30 , 20 )), 2 )) * 100 , 0 ) / 100 ), (ROUND ((ROUND (CAST ((JSON_UNQUOTE (JSON_EXTRACT (`product.parent` . `cheapest_price_accessor` , "$.rulee98c61274c394568b5f9d3a28b44b0d9.currencyb7d2554b0ce847cd82f3ac9bd1c0dfca.gross" )) * 1 ) as DECIMAL (30 , 20 )), 2 )) * 100 , 0 ) / 100 ), (ROUND ((ROUND (CAST ((JSON_UNQUOTE (JSON_EXTRACT (`product.parent` . `cheapest_price_accessor` , "$.ruleec697ec341d94fcb9ca7ccb59f292c3c.currencyb7d2554b0ce847cd82f3ac9bd1c0dfca.gross" )) * 1 ) as DECIMAL (30 , 20 )), 2 )) * 100 , 0 ) / 100 ), (ROUND ((ROUND (CAST ((JSON_UNQUOTE (JSON_EXTRACT (`product.parent` . `cheapest_price_accessor` , "$.rule28caae75a5624f0d985abd0eb32aa160.currencyb7d2554b0ce847cd82f3ac9bd1c0dfca.gross" )) * 1 ) as DECIMAL (30 , 20 )), 2 )) * 100 , 0 ) / 100 ), (ROUND ((ROUND (CAST ((JSON_UNQUOTE (JSON_EXTRACT (`product.parent` . `cheapest_price_accessor` , "$.rule59c443ea0d494930a00ecf5a0398f003.currencyb7d2554b0ce847cd82f3ac9bd1c0dfca.gross" )) * 1 ) as DECIMAL (30 , 20 )), 2 )) * 100 , 0 ) / 100 ), (ROUND ((ROUND (CAST ((JSON_UNQUOTE (JSON_EXTRACT (`product.parent` . `cheapest_price_accessor` , "$.rulee44e6782c64247b796b891cf25ae38f7.currencyb7d2554b0ce847cd82f3ac9bd1c0dfca.gross" )) * 1 ) as DECIMAL (30 , 20 )), 2 )) * 100 , 0 ) / 100 ), (ROUND ((ROUND (CAST ((JSON_UNQUOTE (JSON_EXTRACT (`product.parent` . `cheapest_price_accessor` , "$.ruledefault.currencyb7d2554b0ce847cd82f3ac9bd1c0dfca.gross" )) * 1 ) as DECIMAL (30 , 20 )), 2 )) * 100 , 0 ) / 100 )))) as `price.min` , MAX (IFNULL (COALESCE ((ROUND ((ROUND (CAST ((JSON_UNQUOTE (JSON_EXTRACT (`product` . `cheapest_price_accessor` , "$.ruled80c7ad413604809b17b191db2357535.currencyb7d2554b0ce847cd82f3ac9bd1c0dfca.gross" )) * 1 ) as DECIMAL (30 , 20 )), 2 )) * 100 , 0 ) / 100 ), (ROUND ((ROUND (CAST ((JSON_UNQUOTE (JSON_EXTRACT (`product` . `cheapest_price_accessor` , "$.rule1d7048236acf4a52b03c0365c5cf515c.currencyb7d2554b0ce847cd82f3ac9bd1c0dfca.gross" )) * 1 ) as DECIMAL (30 , 20 )), 2 )) * 100 , 0 ) / 100 ), (ROUND ((ROUND (CAST ((JSON_UNQUOTE (JSON_EXTRACT (`product` . `cheapest_price_accessor` , "$.rule3858957016644de4ae48c0500bf3ccc8.currencyb7d2554b0ce847cd82f3ac9bd1c0dfca.gross" )) * 1 ) as DECIMAL (30 , 20 )), 2 )) * 100 , 0 ) / 100 ), (ROUND ((ROUND (CAST ((JSON_UNQUOTE (JSON_EXTRACT (`product` . `cheapest_price_accessor` , "$.rule44abeee58eda43559bbcf0f6ff296300.currencyb7d2554b0ce847cd82f3ac9bd1c0dfca.gross" )) * 1 ) as DECIMAL (30 , 20 )), 2 )) * 100 , 0 ) / 100 ), (ROUND ((ROUND (CAST ((JSON_UNQUOTE (JSON_EXTRACT (`product` . `cheapest_price_accessor` , "$.rule73985d35e9ca4269aa801b8fe062944b.currencyb7d2554b0ce847cd82f3ac9bd1c0dfca.gross" )) * 1 ) as DECIMAL (30 , 20 )), 2 )) * 100 , 0 ) / 100 ), (ROUND ((ROUND (CAST ((JSON_UNQUOTE (JSON_EXTRACT (`product` . `cheapest_price_accessor` , "$.rule972a7b9e4ee04fc7a04524c1c17b57f9.currencyb7d2554b0ce847cd82f3ac9bd1c0dfca.gross" )) * 1 ) as DECIMAL (30 , 20 )), 2 )) * 100 , 0 ) / 100 ), (ROUND ((ROUND (CAST ((JSON_UNQUOTE (JSON_EXTRACT (`product` . `cheapest_price_accessor` , "$.rulee1378db7808a478f919e0d740d5d6c1a.currencyb7d2554b0ce847cd82f3ac9bd1c0dfca.gross" )) * 1 ) as DECIMAL (30 , 20 )), 2 )) * 100 , 0 ) / 100 ), (ROUND ((ROUND (CAST ((JSON_UNQUOTE (JSON_EXTRACT (`product` . `cheapest_price_accessor` , "$.rulee98c61274c394568b5f9d3a28b44b0d9.currencyb7d2554b0ce847cd82f3ac9bd1c0dfca.gross" )) * 1 ) as DECIMAL (30 , 20 )), 2 )) * 100 , 0 ) / 100 ), (ROUND ((ROUND (CAST ((JSON_UNQUOTE (JSON_EXTRACT (`product` . `cheapest_price_accessor` , "$.ruleec697ec341d94fcb9ca7ccb59f292c3c.currencyb7d2554b0ce847cd82f3ac9bd1c0dfca.gross" )) * 1 ) as DECIMAL (30 , 20 )), 2 )) * 100 , 0 ) / 100 ), (ROUND ((ROUND (CAST ((JSON_UNQUOTE (JSON_EXTRACT (`product` . `cheapest_price_accessor` , "$.rule28caae75a5624f0d985abd0eb32aa160.currencyb7d2554b0ce847cd82f3ac9bd1c0dfca.gross" )) * 1 ) as DECIMAL (30 , 20 )), 2 )) * 100 , 0 ) / 100 ), (ROUND ((ROUND (CAST ((JSON_UNQUOTE (JSON_EXTRACT (`product` . `cheapest_price_accessor` , "$.rule59c443ea0d494930a00ecf5a0398f003.currencyb7d2554b0ce847cd82f3ac9bd1c0dfca.gross" )) * 1 ) as DECIMAL (30 , 20 )), 2 )) * 100 , 0 ) / 100 ), (ROUND ((ROUND (CAST ((JSON_UNQUOTE (JSON_EXTRACT (`product` . `cheapest_price_accessor` , "$.rulee44e6782c64247b796b891cf25ae38f7.currencyb7d2554b0ce847cd82f3ac9bd1c0dfca.gross" )) * 1 ) as DECIMAL (30 , 20 )), 2 )) * 100 , 0 ) / 100 ), (ROUND ((ROUND (CAST ((JSON_UNQUOTE (JSON_EXTRACT (`product` . `cheapest_price_accessor` , "$.ruledefault.currencyb7d2554b0ce847cd82f3ac9bd1c0dfca.gross" )) * 1 ) as DECIMAL (30 , 20 )), 2 )) * 100 , 0 ) / 100 )), COALESCE ((ROUND ((ROUND (CAST ((JSON_UNQUOTE (JSON_EXTRACT (`product.parent` . `cheapest_price_accessor` , "$.ruled80c7ad413604809b17b191db2357535.currencyb7d2554b0ce847cd82f3ac9bd1c0dfca.gross" )) * 1 ) as DECIMAL (30 , 20 )), 2 )) * 100 , 0 ) / 100 ), (ROUND ((ROUND (CAST ((JSON_UNQUOTE (JSON_EXTRACT (`product.parent` . `cheapest_price_accessor` , "$.rule1d7048236acf4a52b03c0365c5cf515c.currencyb7d2554b0ce847cd82f3ac9bd1c0dfca.gross" )) * 1 ) as DECIMAL (30 , 20 )), 2 )) * 100 , 0 ) / 100 ), (ROUND ((ROUND (CAST ((JSON_UNQUOTE (JSON_EXTRACT (`product.parent` . `cheapest_price_accessor` , "$.rule3858957016644de4ae48c0500bf3ccc8.currencyb7d2554b0ce847cd82f3ac9bd1c0dfca.gross" )) * 1 ) as DECIMAL (30 , 20 )), 2 )) * 100 , 0 ) / 100 ), (ROUND ((ROUND (CAST ((JSON_UNQUOTE (JSON_EXTRACT (`product.parent` . `cheapest_price_accessor` , "$.rule44abeee58eda43559bbcf0f6ff296300.currencyb7d2554b0ce847cd82f3ac9bd1c0dfca.gross" )) * 1 ) as DECIMAL (30 , 20 )), 2 )) * 100 , 0 ) / 100 ), (ROUND ((ROUND (CAST ((JSON_UNQUOTE (JSON_EXTRACT (`product.parent` . `cheapest_price_accessor` , "$.rule73985d35e9ca4269aa801b8fe062944b.currencyb7d2554b0ce847cd82f3ac9bd1c0dfca.gross" )) * 1 ) as DECIMAL (30 , 20 )), 2 )) * 100 , 0 ) / 100 ), (ROUND ((ROUND (CAST ((JSON_UNQUOTE (JSON_EXTRACT (`product.parent` . `cheapest_price_accessor` , "$.rule972a7b9e4ee04fc7a04524c1c17b57f9.currencyb7d2554b0ce847cd82f3ac9bd1c0dfca.gross" )) * 1 ) as DECIMAL (30 , 20 )), 2 )) * 100 , 0 ) / 100 ), (ROUND ((ROUND (CAST ((JSON_UNQUOTE (JSON_EXTRACT (`product.parent` . `cheapest_price_accessor` , "$.rulee1378db7808a478f919e0d740d5d6c1a.currencyb7d2554b0ce847cd82f3ac9bd1c0dfca.gross" )) * 1 ) as DECIMAL (30 , 20 )), 2 )) * 100 , 0 ) / 100 ), (ROUND ((ROUND (CAST ((JSON_UNQUOTE (JSON_EXTRACT (`product.parent` . `cheapest_price_accessor` , "$.rulee98c61274c394568b5f9d3a28b44b0d9.currencyb7d2554b0ce847cd82f3ac9bd1c0dfca.gross" )) * 1 ) as DECIMAL (30 , 20 )), 2 )) * 100 , 0 ) / 100 ), (ROUND ((ROUND (CAST ((JSON_UNQUOTE (JSON_EXTRACT (`product.parent` . `cheapest_price_accessor` , "$.ruleec697ec341d94fcb9ca7ccb59f292c3c.currencyb7d2554b0ce847cd82f3ac9bd1c0dfca.gross" )) * 1 ) as DECIMAL (30 , 20 )), 2 )) * 100 , 0 ) / 100 ), (ROUND ((ROUND (CAST ((JSON_UNQUOTE (JSON_EXTRACT (`product.parent` . `cheapest_price_accessor` , "$.rule28caae75a5624f0d985abd0eb32aa160.currencyb7d2554b0ce847cd82f3ac9bd1c0dfca.gross" )) * 1 ) as DECIMAL (30 , 20 )), 2 )) * 100 , 0 ) / 100 ), (ROUND ((ROUND (CAST ((JSON_UNQUOTE (JSON_EXTRACT (`product.parent` . `cheapest_price_accessor` , "$.rule59c443ea0d494930a00ecf5a0398f003.currencyb7d2554b0ce847cd82f3ac9bd1c0dfca.gross" )) * 1 ) as DECIMAL (30 , 20 )), 2 )) * 100 , 0 ) / 100 ), (ROUND ((ROUND (CAST ((JSON_UNQUOTE (JSON_EXTRACT (`product.parent` . `cheapest_price_accessor` , "$.rulee44e6782c64247b796b891cf25ae38f7.currencyb7d2554b0ce847cd82f3ac9bd1c0dfca.gross" )) * 1 ) as DECIMAL (30 , 20 )), 2 )) * 100 , 0 ) / 100 ), (ROUND ((ROUND (CAST ((JSON_UNQUOTE (JSON_EXTRACT (`product.parent` . `cheapest_price_accessor` , "$.ruledefault.currencyb7d2554b0ce847cd82f3ac9bd1c0dfca.gross" )) * 1 ) as DECIMAL (30 , 20 )), 2 )) * 100 , 0 ) / 100 )))) as `price.max` FROM `product` LEFT JOIN `product` `product.parent` ON `product` . `parent_id` = `product.parent` . `id` AND `product` . `parent_version_id` = `product.parent` . `version_id` LEFT JOIN `product_visibility` `product.visibilities` ON `product` . `visibilities` = `product.visibilities` . `product_id` AND `product` . version_id = `product.visibilities` . product_version_id LEFT JOIN `product_category_tree` `product.categoriesRo.mapping` ON `product` . `id` = `product.categoriesRo.mapping` . `product_id` AND `product` . `version_id` = `product.categoriesRo.mapping` . `product_version_id` LEFT JOIN `category` `product.categoriesRo` ON `product.categoriesRo.mapping` . `category_id` = `product.categoriesRo` . `id` AND `product.categoriesRo` . `version_id` = `product.categoriesRo.mapping` . `category_version_id` WHERE (`product` . `version_id` = ? ) AND ((((`product.visibilities` . `visibility` > = ? ) AND `product.visibilities` . `sales_channel_id` = ? AND IFNULL (`product` . `active` , `product.parent` . `active` ) = ? ) AND `product.categoriesRo` . `id` = ? AND NOT (`product` . `display_group` < = > ? )))
Parameters :
[
b"\x0F ©\x1C ãéjK¾KÙÎu,4% "
30
b">{k'Ô\x1E O‡!¼GnÏMj "
true
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02 (bH "
null
]
SELECT
MIN (
IFNULL (
COALESCE (
(
ROUND (
(
ROUND (
CAST (
(
JSON_UNQUOTE (
JSON_EXTRACT (
`product` . `cheapest_price_accessor` ,
"$.ruled80c7ad413604809b17b191db2357535.currencyb7d2554b0ce847cd82f3ac9bd1c0dfca.gross"
)
) * 1
) as DECIMAL (30 , 20 )
),
2
)
) * 100 ,
0
) / 100
),
(
ROUND (
(
ROUND (
CAST (
(
JSON_UNQUOTE (
JSON_EXTRACT (
`product` . `cheapest_price_accessor` ,
"$.rule1d7048236acf4a52b03c0365c5cf515c.currencyb7d2554b0ce847cd82f3ac9bd1c0dfca.gross"
)
) * 1
) as DECIMAL (30 , 20 )
),
2
)
) * 100 ,
0
) / 100
),
(
ROUND (
(
ROUND (
CAST (
(
JSON_UNQUOTE (
JSON_EXTRACT (
`product` . `cheapest_price_accessor` ,
"$.rule3858957016644de4ae48c0500bf3ccc8.currencyb7d2554b0ce847cd82f3ac9bd1c0dfca.gross"
)
) * 1
) as DECIMAL (30 , 20 )
),
2
)
) * 100 ,
0
) / 100
),
(
ROUND (
(
ROUND (
CAST (
(
JSON_UNQUOTE (
JSON_EXTRACT (
`product` . `cheapest_price_accessor` ,
"$.rule44abeee58eda43559bbcf0f6ff296300.currencyb7d2554b0ce847cd82f3ac9bd1c0dfca.gross"
)
) * 1
) as DECIMAL (30 , 20 )
),
2
)
) * 100 ,
0
) / 100
),
(
ROUND (
(
ROUND (
CAST (
(
JSON_UNQUOTE (
JSON_EXTRACT (
`product` . `cheapest_price_accessor` ,
"$.rule73985d35e9ca4269aa801b8fe062944b.currencyb7d2554b0ce847cd82f3ac9bd1c0dfca.gross"
)
) * 1
) as DECIMAL (30 , 20 )
),
2
)
) * 100 ,
0
) / 100
),
(
ROUND (
(
ROUND (
CAST (
(
JSON_UNQUOTE (
JSON_EXTRACT (
`product` . `cheapest_price_accessor` ,
"$.rule972a7b9e4ee04fc7a04524c1c17b57f9.currencyb7d2554b0ce847cd82f3ac9bd1c0dfca.gross"
)
) * 1
) as DECIMAL (30 , 20 )
),
2
)
) * 100 ,
0
) / 100
),
(
ROUND (
(
ROUND (
CAST (
(
JSON_UNQUOTE (
JSON_EXTRACT (
`product` . `cheapest_price_accessor` ,
"$.rulee1378db7808a478f919e0d740d5d6c1a.currencyb7d2554b0ce847cd82f3ac9bd1c0dfca.gross"
)
) * 1
) as DECIMAL (30 , 20 )
),
2
)
) * 100 ,
0
) / 100
),
(
ROUND (
(
ROUND (
CAST (
(
JSON_UNQUOTE (
JSON_EXTRACT (
`product` . `cheapest_price_accessor` ,
"$.rulee98c61274c394568b5f9d3a28b44b0d9.currencyb7d2554b0ce847cd82f3ac9bd1c0dfca.gross"
)
) * 1
) as DECIMAL (30 , 20 )
),
2
)
) * 100 ,
0
) / 100
),
(
ROUND (
(
ROUND (
CAST (
(
JSON_UNQUOTE (
JSON_EXTRACT (
`product` . `cheapest_price_accessor` ,
"$.ruleec697ec341d94fcb9ca7ccb59f292c3c.currencyb7d2554b0ce847cd82f3ac9bd1c0dfca.gross"
)
) * 1
) as DECIMAL (30 , 20 )
),
2
)
) * 100 ,
0
) / 100
),
(
ROUND (
(
ROUND (
CAST (
(
JSON_UNQUOTE (
JSON_EXTRACT (
`product` . `cheapest_price_accessor` ,
"$.rule28caae75a5624f0d985abd0eb32aa160.currencyb7d2554b0ce847cd82f3ac9bd1c0dfca.gross"
)
) * 1
) as DECIMAL (30 , 20 )
),
2
)
) * 100 ,
0
) / 100
),
(
ROUND (
(
ROUND (
CAST (
(
JSON_UNQUOTE (
JSON_EXTRACT (
`product` . `cheapest_price_accessor` ,
"$.rule59c443ea0d494930a00ecf5a0398f003.currencyb7d2554b0ce847cd82f3ac9bd1c0dfca.gross"
)
) * 1
) as DECIMAL (30 , 20 )
),
2
)
) * 100 ,
0
) / 100
),
(
ROUND (
(
ROUND (
CAST (
(
JSON_UNQUOTE (
JSON_EXTRACT (
`product` . `cheapest_price_accessor` ,
"$.rulee44e6782c64247b796b891cf25ae38f7.currencyb7d2554b0ce847cd82f3ac9bd1c0dfca.gross"
)
) * 1
) as DECIMAL (30 , 20 )
),
2
)
) * 100 ,
0
) / 100
),
(
ROUND (
(
ROUND (
CAST (
(
JSON_UNQUOTE (
JSON_EXTRACT (
`product` . `cheapest_price_accessor` ,
"$.ruledefault.currencyb7d2554b0ce847cd82f3ac9bd1c0dfca.gross"
)
) * 1
) as DECIMAL (30 , 20 )
),
2
)
) * 100 ,
0
) / 100
)
),
COALESCE (
(
ROUND (
(
ROUND (
CAST (
(
JSON_UNQUOTE (
JSON_EXTRACT (
`product.parent` . `cheapest_price_accessor` ,
"$.ruled80c7ad413604809b17b191db2357535.currencyb7d2554b0ce847cd82f3ac9bd1c0dfca.gross"
)
) * 1
) as DECIMAL (30 , 20 )
),
2
)
) * 100 ,
0
) / 100
),
(
ROUND (
(
ROUND (
CAST (
(
JSON_UNQUOTE (
JSON_EXTRACT (
`product.parent` . `cheapest_price_accessor` ,
"$.rule1d7048236acf4a52b03c0365c5cf515c.currencyb7d2554b0ce847cd82f3ac9bd1c0dfca.gross"
)
) * 1
) as DECIMAL (30 , 20 )
),
2
)
) * 100 ,
0
) / 100
),
(
ROUND (
(
ROUND (
CAST (
(
JSON_UNQUOTE (
JSON_EXTRACT (
`product.parent` . `cheapest_price_accessor` ,
"$.rule3858957016644de4ae48c0500bf3ccc8.currencyb7d2554b0ce847cd82f3ac9bd1c0dfca.gross"
)
) * 1
) as DECIMAL (30 , 20 )
),
2
)
) * 100 ,
0
) / 100
),
(
ROUND (
(
ROUND (
CAST (
(
JSON_UNQUOTE (
JSON_EXTRACT (
`product.parent` . `cheapest_price_accessor` ,
"$.rule44abeee58eda43559bbcf0f6ff296300.currencyb7d2554b0ce847cd82f3ac9bd1c0dfca.gross"
)
) * 1
) as DECIMAL (30 , 20 )
),
2
)
) * 100 ,
0
) / 100
),
(
ROUND (
(
ROUND (
CAST (
(
JSON_UNQUOTE (
JSON_EXTRACT (
`product.parent` . `cheapest_price_accessor` ,
"$.rule73985d35e9ca4269aa801b8fe062944b.currencyb7d2554b0ce847cd82f3ac9bd1c0dfca.gross"
)
) * 1
) as DECIMAL (30 , 20 )
),
2
)
) * 100 ,
0
) / 100
),
(
ROUND (
(
ROUND (
CAST (
(
JSON_UNQUOTE (
JSON_EXTRACT (
`product.parent` . `cheapest_price_accessor` ,
"$.rule972a7b9e4ee04fc7a04524c1c17b57f9.currencyb7d2554b0ce847cd82f3ac9bd1c0dfca.gross"
)
) * 1
) as DECIMAL (30 , 20 )
),
2
)
) * 100 ,
0
) / 100
),
(
ROUND (
(
ROUND (
CAST (
(
JSON_UNQUOTE (
JSON_EXTRACT (
`product.parent` . `cheapest_price_accessor` ,
"$.rulee1378db7808a478f919e0d740d5d6c1a.currencyb7d2554b0ce847cd82f3ac9bd1c0dfca.gross"
)
) * 1
) as DECIMAL (30 , 20 )
),
2
)
) * 100 ,
0
) / 100
),
(
ROUND (
(
ROUND (
CAST (
(
JSON_UNQUOTE (
JSON_EXTRACT (
`product.parent` . `cheapest_price_accessor` ,
"$.rulee98c61274c394568b5f9d3a28b44b0d9.currencyb7d2554b0ce847cd82f3ac9bd1c0dfca.gross"
)
) * 1
) as DECIMAL (30 , 20 )
),
2
)
) * 100 ,
0
) / 100
),
(
ROUND (
(
ROUND (
CAST (
(
JSON_UNQUOTE (
JSON_EXTRACT (
`product.parent` . `cheapest_price_accessor` ,
"$.ruleec697ec341d94fcb9ca7ccb59f292c3c.currencyb7d2554b0ce847cd82f3ac9bd1c0dfca.gross"
)
) * 1
) as DECIMAL (30 , 20 )
),
2
)
) * 100 ,
0
) / 100
),
(
ROUND (
(
ROUND (
CAST (
(
JSON_UNQUOTE (
JSON_EXTRACT (
`product.parent` . `cheapest_price_accessor` ,
"$.rule28caae75a5624f0d985abd0eb32aa160.currencyb7d2554b0ce847cd82f3ac9bd1c0dfca.gross"
)
) * 1
) as DECIMAL (30 , 20 )
),
2
)
) * 100 ,
0
) / 100
),
(
ROUND (
(
ROUND (
CAST (
(
JSON_UNQUOTE (
JSON_EXTRACT (
`product.parent` . `cheapest_price_accessor` ,
"$.rule59c443ea0d494930a00ecf5a0398f003.currencyb7d2554b0ce847cd82f3ac9bd1c0dfca.gross"
)
) * 1
) as DECIMAL (30 , 20 )
),
2
)
) * 100 ,
0
) / 100
),
(
ROUND (
(
ROUND (
CAST (
(
JSON_UNQUOTE (
JSON_EXTRACT (
`product.parent` . `cheapest_price_accessor` ,
"$.rulee44e6782c64247b796b891cf25ae38f7.currencyb7d2554b0ce847cd82f3ac9bd1c0dfca.gross"
)
) * 1
) as DECIMAL (30 , 20 )
),
2
)
) * 100 ,
0
) / 100
),
(
ROUND (
(
ROUND (
CAST (
(
JSON_UNQUOTE (
JSON_EXTRACT (
`product.parent` . `cheapest_price_accessor` ,
"$.ruledefault.currencyb7d2554b0ce847cd82f3ac9bd1c0dfca.gross"
)
) * 1
) as DECIMAL (30 , 20 )
),
2
)
) * 100 ,
0
) / 100
)
)
)
) as `price.min` ,
MAX (
IFNULL (
COALESCE (
(
ROUND (
(
ROUND (
CAST (
(
JSON_UNQUOTE (
JSON_EXTRACT (
`product` . `cheapest_price_accessor` ,
"$.ruled80c7ad413604809b17b191db2357535.currencyb7d2554b0ce847cd82f3ac9bd1c0dfca.gross"
)
) * 1
) as DECIMAL (30 , 20 )
),
2
)
) * 100 ,
0
) / 100
),
(
ROUND (
(
ROUND (
CAST (
(
JSON_UNQUOTE (
JSON_EXTRACT (
`product` . `cheapest_price_accessor` ,
"$.rule1d7048236acf4a52b03c0365c5cf515c.currencyb7d2554b0ce847cd82f3ac9bd1c0dfca.gross"
)
) * 1
) as DECIMAL (30 , 20 )
),
2
)
) * 100 ,
0
) / 100
),
(
ROUND (
(
ROUND (
CAST (
(
JSON_UNQUOTE (
JSON_EXTRACT (
`product` . `cheapest_price_accessor` ,
"$.rule3858957016644de4ae48c0500bf3ccc8.currencyb7d2554b0ce847cd82f3ac9bd1c0dfca.gross"
)
) * 1
) as DECIMAL (30 , 20 )
),
2
)
) * 100 ,
0
) / 100
),
(
ROUND (
(
ROUND (
CAST (
(
JSON_UNQUOTE (
JSON_EXTRACT (
`product` . `cheapest_price_accessor` ,
"$.rule44abeee58eda43559bbcf0f6ff296300.currencyb7d2554b0ce847cd82f3ac9bd1c0dfca.gross"
)
) * 1
) as DECIMAL (30 , 20 )
),
2
)
) * 100 ,
0
) / 100
),
(
ROUND (
(
ROUND (
CAST (
(
JSON_UNQUOTE (
JSON_EXTRACT (
`product` . `cheapest_price_accessor` ,
"$.rule73985d35e9ca4269aa801b8fe062944b.currencyb7d2554b0ce847cd82f3ac9bd1c0dfca.gross"
)
) * 1
) as DECIMAL (30 , 20 )
),
2
)
) * 100 ,
0
) / 100
),
(
ROUND (
(
ROUND (
CAST (
(
JSON_UNQUOTE (
JSON_EXTRACT (
`product` . `cheapest_price_accessor` ,
"$.rule972a7b9e4ee04fc7a04524c1c17b57f9.currencyb7d2554b0ce847cd82f3ac9bd1c0dfca.gross"
)
) * 1
) as DECIMAL (30 , 20 )
),
2
)
) * 100 ,
0
) / 100
),
(
ROUND (
(
ROUND (
CAST (
(
JSON_UNQUOTE (
JSON_EXTRACT (
`product` . `cheapest_price_accessor` ,
"$.rulee1378db7808a478f919e0d740d5d6c1a.currencyb7d2554b0ce847cd82f3ac9bd1c0dfca.gross"
)
) * 1
) as DECIMAL (30 , 20 )
),
2
)
) * 100 ,
0
) / 100
),
(
ROUND (
(
ROUND (
CAST (
(
JSON_UNQUOTE (
JSON_EXTRACT (
`product` . `cheapest_price_accessor` ,
"$.rulee98c61274c394568b5f9d3a28b44b0d9.currencyb7d2554b0ce847cd82f3ac9bd1c0dfca.gross"
)
) * 1
) as DECIMAL (30 , 20 )
),
2
)
) * 100 ,
0
) / 100
),
(
ROUND (
(
ROUND (
CAST (
(
JSON_UNQUOTE (
JSON_EXTRACT (
`product` . `cheapest_price_accessor` ,
"$.ruleec697ec341d94fcb9ca7ccb59f292c3c.currencyb7d2554b0ce847cd82f3ac9bd1c0dfca.gross"
)
) * 1
) as DECIMAL (30 , 20 )
),
2
)
) * 100 ,
0
) / 100
),
(
ROUND (
(
ROUND (
CAST (
(
JSON_UNQUOTE (
JSON_EXTRACT (
`product` . `cheapest_price_accessor` ,
"$.rule28caae75a5624f0d985abd0eb32aa160.currencyb7d2554b0ce847cd82f3ac9bd1c0dfca.gross"
)
) * 1
) as DECIMAL (30 , 20 )
),
2
)
) * 100 ,
0
) / 100
),
(
ROUND (
(
ROUND (
CAST (
(
JSON_UNQUOTE (
JSON_EXTRACT (
`product` . `cheapest_price_accessor` ,
"$.rule59c443ea0d494930a00ecf5a0398f003.currencyb7d2554b0ce847cd82f3ac9bd1c0dfca.gross"
)
) * 1
) as DECIMAL (30 , 20 )
),
2
)
) * 100 ,
0
) / 100
),
(
ROUND (
(
ROUND (
CAST (
(
JSON_UNQUOTE (
JSON_EXTRACT (
`product` . `cheapest_price_accessor` ,
"$.rulee44e6782c64247b796b891cf25ae38f7.currencyb7d2554b0ce847cd82f3ac9bd1c0dfca.gross"
)
) * 1
) as DECIMAL (30 , 20 )
),
2
)
) * 100 ,
0
) / 100
),
(
ROUND (
(
ROUND (
CAST (
(
JSON_UNQUOTE (
JSON_EXTRACT (
`product` . `cheapest_price_accessor` ,
"$.ruledefault.currencyb7d2554b0ce847cd82f3ac9bd1c0dfca.gross"
)
) * 1
) as DECIMAL (30 , 20 )
),
2
)
) * 100 ,
0
) / 100
)
),
COALESCE (
(
ROUND (
(
ROUND (
CAST (
(
JSON_UNQUOTE (
JSON_EXTRACT (
`product.parent` . `cheapest_price_accessor` ,
"$.ruled80c7ad413604809b17b191db2357535.currencyb7d2554b0ce847cd82f3ac9bd1c0dfca.gross"
)
) * 1
) as DECIMAL (30 , 20 )
),
2
)
) * 100 ,
0
) / 100
),
(
ROUND (
(
ROUND (
CAST (
(
JSON_UNQUOTE (
JSON_EXTRACT (
`product.parent` . `cheapest_price_accessor` ,
"$.rule1d7048236acf4a52b03c0365c5cf515c.currencyb7d2554b0ce847cd82f3ac9bd1c0dfca.gross"
)
) * 1
) as DECIMAL (30 , 20 )
),
2
)
) * 100 ,
0
) / 100
),
(
ROUND (
(
ROUND (
CAST (
(
JSON_UNQUOTE (
JSON_EXTRACT (
`product.parent` . `cheapest_price_accessor` ,
"$.rule3858957016644de4ae48c0500bf3ccc8.currencyb7d2554b0ce847cd82f3ac9bd1c0dfca.gross"
)
) * 1
) as DECIMAL (30 , 20 )
),
2
)
) * 100 ,
0
) / 100
),
(
ROUND (
(
ROUND (
CAST (
(
JSON_UNQUOTE (
JSON_EXTRACT (
`product.parent` . `cheapest_price_accessor` ,
"$.rule44abeee58eda43559bbcf0f6ff296300.currencyb7d2554b0ce847cd82f3ac9bd1c0dfca.gross"
)
) * 1
) as DECIMAL (30 , 20 )
),
2
)
) * 100 ,
0
) / 100
),
(
ROUND (
(
ROUND (
CAST (
(
JSON_UNQUOTE (
JSON_EXTRACT (
`product.parent` . `cheapest_price_accessor` ,
"$.rule73985d35e9ca4269aa801b8fe062944b.currencyb7d2554b0ce847cd82f3ac9bd1c0dfca.gross"
)
) * 1
) as DECIMAL (30 , 20 )
),
2
)
) * 100 ,
0
) / 100
),
(
ROUND (
(
ROUND (
CAST (
(
JSON_UNQUOTE (
JSON_EXTRACT (
`product.parent` . `cheapest_price_accessor` ,
"$.rule972a7b9e4ee04fc7a04524c1c17b57f9.currencyb7d2554b0ce847cd82f3ac9bd1c0dfca.gross"
)
) * 1
) as DECIMAL (30 , 20 )
),
2
)
) * 100 ,
0
) / 100
),
(
ROUND (
(
ROUND (
CAST (
(
JSON_UNQUOTE (
JSON_EXTRACT (
`product.parent` . `cheapest_price_accessor` ,
"$.rulee1378db7808a478f919e0d740d5d6c1a.currencyb7d2554b0ce847cd82f3ac9bd1c0dfca.gross"
)
) * 1
) as DECIMAL (30 , 20 )
),
2
)
) * 100 ,
0
) / 100
),
(
ROUND (
(
ROUND (
CAST (
(
JSON_UNQUOTE (
JSON_EXTRACT (
`product.parent` . `cheapest_price_accessor` ,
"$.rulee98c61274c394568b5f9d3a28b44b0d9.currencyb7d2554b0ce847cd82f3ac9bd1c0dfca.gross"
)
) * 1
) as DECIMAL (30 , 20 )
),
2
)
) * 100 ,
0
) / 100
),
(
ROUND (
(
ROUND (
CAST (
(
JSON_UNQUOTE (
JSON_EXTRACT (
`product.parent` . `cheapest_price_accessor` ,
"$.ruleec697ec341d94fcb9ca7ccb59f292c3c.currencyb7d2554b0ce847cd82f3ac9bd1c0dfca.gross"
)
) * 1
) as DECIMAL (30 , 20 )
),
2
)
) * 100 ,
0
) / 100
),
(
ROUND (
(
ROUND (
CAST (
(
JSON_UNQUOTE (
JSON_EXTRACT (
`product.parent` . `cheapest_price_accessor` ,
"$.rule28caae75a5624f0d985abd0eb32aa160.currencyb7d2554b0ce847cd82f3ac9bd1c0dfca.gross"
)
) * 1
) as DECIMAL (30 , 20 )
),
2
)
) * 100 ,
0
) / 100
),
(
ROUND (
(
ROUND (
CAST (
(
JSON_UNQUOTE (
JSON_EXTRACT (
`product.parent` . `cheapest_price_accessor` ,
"$.rule59c443ea0d494930a00ecf5a0398f003.currencyb7d2554b0ce847cd82f3ac9bd1c0dfca.gross"
)
) * 1
) as DECIMAL (30 , 20 )
),
2
)
) * 100 ,
0
) / 100
),
(
ROUND (
(
ROUND (
CAST (
(
JSON_UNQUOTE (
JSON_EXTRACT (
`product.parent` . `cheapest_price_accessor` ,
"$.rulee44e6782c64247b796b891cf25ae38f7.currencyb7d2554b0ce847cd82f3ac9bd1c0dfca.gross"
)
) * 1
) as DECIMAL (30 , 20 )
),
2
)
) * 100 ,
0
) / 100
),
(
ROUND (
(
ROUND (
CAST (
(
JSON_UNQUOTE (
JSON_EXTRACT (
`product.parent` . `cheapest_price_accessor` ,
"$.ruledefault.currencyb7d2554b0ce847cd82f3ac9bd1c0dfca.gross"
)
) * 1
) as DECIMAL (30 , 20 )
),
2
)
) * 100 ,
0
) / 100
)
)
)
) as `price.max`
FROM
`product`
LEFT JOIN `product` `product.parent` ON `product` . `parent_id` = `product.parent` . `id`
AND `product` . `parent_version_id` = `product.parent` . `version_id`
LEFT JOIN `product_visibility` `product.visibilities` ON `product` . `visibilities` = `product.visibilities` . `product_id`
AND `product` . version_id = `product.visibilities` . product_version_id
LEFT JOIN `product_category_tree` `product.categoriesRo.mapping` ON `product` . `id` = `product.categoriesRo.mapping` . `product_id`
AND `product` . `version_id` = `product.categoriesRo.mapping` . `product_version_id`
LEFT JOIN `category` `product.categoriesRo` ON `product.categoriesRo.mapping` . `category_id` = `product.categoriesRo` . `id`
AND `product.categoriesRo` . `version_id` = `product.categoriesRo.mapping` . `category_version_id`
WHERE
(`product` . `version_id` = ? )
AND (
(
(
(
`product.visibilities` . `visibility` > = ?
)
AND `product.visibilities` . `sales_channel_id` = ?
AND IFNULL (
`product` . `active` , `product.parent` . `active`
) = ?
)
AND `product.categoriesRo` . `id` = ?
AND NOT (`product` . `display_group` < = > ? )
)
)
Copy
SELECT MIN (IFNULL (COALESCE ((ROUND ((ROUND (CAST ((JSON_UNQUOTE (JSON_EXTRACT (`product` . `cheapest_price_accessor` , "$.ruled80c7ad413604809b17b191db2357535.currencyb7d2554b0ce847cd82f3ac9bd1c0dfca.gross" )) * 1 ) as DECIMAL (30 , 20 )), 2 )) * 100 , 0 ) / 100 ), (ROUND ((ROUND (CAST ((JSON_UNQUOTE (JSON_EXTRACT (`product` . `cheapest_price_accessor` , "$.rule1d7048236acf4a52b03c0365c5cf515c.currencyb7d2554b0ce847cd82f3ac9bd1c0dfca.gross" )) * 1 ) as DECIMAL (30 , 20 )), 2 )) * 100 , 0 ) / 100 ), (ROUND ((ROUND (CAST ((JSON_UNQUOTE (JSON_EXTRACT (`product` . `cheapest_price_accessor` , "$.rule3858957016644de4ae48c0500bf3ccc8.currencyb7d2554b0ce847cd82f3ac9bd1c0dfca.gross" )) * 1 ) as DECIMAL (30 , 20 )), 2 )) * 100 , 0 ) / 100 ), (ROUND ((ROUND (CAST ((JSON_UNQUOTE (JSON_EXTRACT (`product` . `cheapest_price_accessor` , "$.rule44abeee58eda43559bbcf0f6ff296300.currencyb7d2554b0ce847cd82f3ac9bd1c0dfca.gross" )) * 1 ) as DECIMAL (30 , 20 )), 2 )) * 100 , 0 ) / 100 ), (ROUND ((ROUND (CAST ((JSON_UNQUOTE (JSON_EXTRACT (`product` . `cheapest_price_accessor` , "$.rule73985d35e9ca4269aa801b8fe062944b.currencyb7d2554b0ce847cd82f3ac9bd1c0dfca.gross" )) * 1 ) as DECIMAL (30 , 20 )), 2 )) * 100 , 0 ) / 100 ), (ROUND ((ROUND (CAST ((JSON_UNQUOTE (JSON_EXTRACT (`product` . `cheapest_price_accessor` , "$.rule972a7b9e4ee04fc7a04524c1c17b57f9.currencyb7d2554b0ce847cd82f3ac9bd1c0dfca.gross" )) * 1 ) as DECIMAL (30 , 20 )), 2 )) * 100 , 0 ) / 100 ), (ROUND ((ROUND (CAST ((JSON_UNQUOTE (JSON_EXTRACT (`product` . `cheapest_price_accessor` , "$.rulee1378db7808a478f919e0d740d5d6c1a.currencyb7d2554b0ce847cd82f3ac9bd1c0dfca.gross" )) * 1 ) as DECIMAL (30 , 20 )), 2 )) * 100 , 0 ) / 100 ), (ROUND ((ROUND (CAST ((JSON_UNQUOTE (JSON_EXTRACT (`product` . `cheapest_price_accessor` , "$.rulee98c61274c394568b5f9d3a28b44b0d9.currencyb7d2554b0ce847cd82f3ac9bd1c0dfca.gross" )) * 1 ) as DECIMAL (30 , 20 )), 2 )) * 100 , 0 ) / 100 ), (ROUND ((ROUND (CAST ((JSON_UNQUOTE (JSON_EXTRACT (`product` . `cheapest_price_accessor` , "$.ruleec697ec341d94fcb9ca7ccb59f292c3c.currencyb7d2554b0ce847cd82f3ac9bd1c0dfca.gross" )) * 1 ) as DECIMAL (30 , 20 )), 2 )) * 100 , 0 ) / 100 ), (ROUND ((ROUND (CAST ((JSON_UNQUOTE (JSON_EXTRACT (`product` . `cheapest_price_accessor` , "$.rule28caae75a5624f0d985abd0eb32aa160.currencyb7d2554b0ce847cd82f3ac9bd1c0dfca.gross" )) * 1 ) as DECIMAL (30 , 20 )), 2 )) * 100 , 0 ) / 100 ), (ROUND ((ROUND (CAST ((JSON_UNQUOTE (JSON_EXTRACT (`product` . `cheapest_price_accessor` , "$.rule59c443ea0d494930a00ecf5a0398f003.currencyb7d2554b0ce847cd82f3ac9bd1c0dfca.gross" )) * 1 ) as DECIMAL (30 , 20 )), 2 )) * 100 , 0 ) / 100 ), (ROUND ((ROUND (CAST ((JSON_UNQUOTE (JSON_EXTRACT (`product` . `cheapest_price_accessor` , "$.rulee44e6782c64247b796b891cf25ae38f7.currencyb7d2554b0ce847cd82f3ac9bd1c0dfca.gross" )) * 1 ) as DECIMAL (30 , 20 )), 2 )) * 100 , 0 ) / 100 ), (ROUND ((ROUND (CAST ((JSON_UNQUOTE (JSON_EXTRACT (`product` . `cheapest_price_accessor` , "$.ruledefault.currencyb7d2554b0ce847cd82f3ac9bd1c0dfca.gross" )) * 1 ) as DECIMAL (30 , 20 )), 2 )) * 100 , 0 ) / 100 )), COALESCE ((ROUND ((ROUND (CAST ((JSON_UNQUOTE (JSON_EXTRACT (`product.parent` . `cheapest_price_accessor` , "$.ruled80c7ad413604809b17b191db2357535.currencyb7d2554b0ce847cd82f3ac9bd1c0dfca.gross" )) * 1 ) as DECIMAL (30 , 20 )), 2 )) * 100 , 0 ) / 100 ), (ROUND ((ROUND (CAST ((JSON_UNQUOTE (JSON_EXTRACT (`product.parent` . `cheapest_price_accessor` , "$.rule1d7048236acf4a52b03c0365c5cf515c.currencyb7d2554b0ce847cd82f3ac9bd1c0dfca.gross" )) * 1 ) as DECIMAL (30 , 20 )), 2 )) * 100 , 0 ) / 100 ), (ROUND ((ROUND (CAST ((JSON_UNQUOTE (JSON_EXTRACT (`product.parent` . `cheapest_price_accessor` , "$.rule3858957016644de4ae48c0500bf3ccc8.currencyb7d2554b0ce847cd82f3ac9bd1c0dfca.gross" )) * 1 ) as DECIMAL (30 , 20 )), 2 )) * 100 , 0 ) / 100 ), (ROUND ((ROUND (CAST ((JSON_UNQUOTE (JSON_EXTRACT (`product.parent` . `cheapest_price_accessor` , "$.rule44abeee58eda43559bbcf0f6ff296300.currencyb7d2554b0ce847cd82f3ac9bd1c0dfca.gross" )) * 1 ) as DECIMAL (30 , 20 )), 2 )) * 100 , 0 ) / 100 ), (ROUND ((ROUND (CAST ((JSON_UNQUOTE (JSON_EXTRACT (`product.parent` . `cheapest_price_accessor` , "$.rule73985d35e9ca4269aa801b8fe062944b.currencyb7d2554b0ce847cd82f3ac9bd1c0dfca.gross" )) * 1 ) as DECIMAL (30 , 20 )), 2 )) * 100 , 0 ) / 100 ), (ROUND ((ROUND (CAST ((JSON_UNQUOTE (JSON_EXTRACT (`product.parent` . `cheapest_price_accessor` , "$.rule972a7b9e4ee04fc7a04524c1c17b57f9.currencyb7d2554b0ce847cd82f3ac9bd1c0dfca.gross" )) * 1 ) as DECIMAL (30 , 20 )), 2 )) * 100 , 0 ) / 100 ), (ROUND ((ROUND (CAST ((JSON_UNQUOTE (JSON_EXTRACT (`product.parent` . `cheapest_price_accessor` , "$.rulee1378db7808a478f919e0d740d5d6c1a.currencyb7d2554b0ce847cd82f3ac9bd1c0dfca.gross" )) * 1 ) as DECIMAL (30 , 20 )), 2 )) * 100 , 0 ) / 100 ), (ROUND ((ROUND (CAST ((JSON_UNQUOTE (JSON_EXTRACT (`product.parent` . `cheapest_price_accessor` , "$.rulee98c61274c394568b5f9d3a28b44b0d9.currencyb7d2554b0ce847cd82f3ac9bd1c0dfca.gross" )) * 1 ) as DECIMAL (30 , 20 )), 2 )) * 100 , 0 ) / 100 ), (ROUND ((ROUND (CAST ((JSON_UNQUOTE (JSON_EXTRACT (`product.parent` . `cheapest_price_accessor` , "$.ruleec697ec341d94fcb9ca7ccb59f292c3c.currencyb7d2554b0ce847cd82f3ac9bd1c0dfca.gross" )) * 1 ) as DECIMAL (30 , 20 )), 2 )) * 100 , 0 ) / 100 ), (ROUND ((ROUND (CAST ((JSON_UNQUOTE (JSON_EXTRACT (`product.parent` . `cheapest_price_accessor` , "$.rule28caae75a5624f0d985abd0eb32aa160.currencyb7d2554b0ce847cd82f3ac9bd1c0dfca.gross" )) * 1 ) as DECIMAL (30 , 20 )), 2 )) * 100 , 0 ) / 100 ), (ROUND ((ROUND (CAST ((JSON_UNQUOTE (JSON_EXTRACT (`product.parent` . `cheapest_price_accessor` , "$.rule59c443ea0d494930a00ecf5a0398f003.currencyb7d2554b0ce847cd82f3ac9bd1c0dfca.gross" )) * 1 ) as DECIMAL (30 , 20 )), 2 )) * 100 , 0 ) / 100 ), (ROUND ((ROUND (CAST ((JSON_UNQUOTE (JSON_EXTRACT (`product.parent` . `cheapest_price_accessor` , "$.rulee44e6782c64247b796b891cf25ae38f7.currencyb7d2554b0ce847cd82f3ac9bd1c0dfca.gross" )) * 1 ) as DECIMAL (30 , 20 )), 2 )) * 100 , 0 ) / 100 ), (ROUND ((ROUND (CAST ((JSON_UNQUOTE (JSON_EXTRACT (`product.parent` . `cheapest_price_accessor` , "$.ruledefault.currencyb7d2554b0ce847cd82f3ac9bd1c0dfca.gross" )) * 1 ) as DECIMAL (30 , 20 )), 2 )) * 100 , 0 ) / 100 )))) as `price.min` , MAX (IFNULL (COALESCE ((ROUND ((ROUND (CAST ((JSON_UNQUOTE (JSON_EXTRACT (`product` . `cheapest_price_accessor` , "$.ruled80c7ad413604809b17b191db2357535.currencyb7d2554b0ce847cd82f3ac9bd1c0dfca.gross" )) * 1 ) as DECIMAL (30 , 20 )), 2 )) * 100 , 0 ) / 100 ), (ROUND ((ROUND (CAST ((JSON_UNQUOTE (JSON_EXTRACT (`product` . `cheapest_price_accessor` , "$.rule1d7048236acf4a52b03c0365c5cf515c.currencyb7d2554b0ce847cd82f3ac9bd1c0dfca.gross" )) * 1 ) as DECIMAL (30 , 20 )), 2 )) * 100 , 0 ) / 100 ), (ROUND ((ROUND (CAST ((JSON_UNQUOTE (JSON_EXTRACT (`product` . `cheapest_price_accessor` , "$.rule3858957016644de4ae48c0500bf3ccc8.currencyb7d2554b0ce847cd82f3ac9bd1c0dfca.gross" )) * 1 ) as DECIMAL (30 , 20 )), 2 )) * 100 , 0 ) / 100 ), (ROUND ((ROUND (CAST ((JSON_UNQUOTE (JSON_EXTRACT (`product` . `cheapest_price_accessor` , "$.rule44abeee58eda43559bbcf0f6ff296300.currencyb7d2554b0ce847cd82f3ac9bd1c0dfca.gross" )) * 1 ) as DECIMAL (30 , 20 )), 2 )) * 100 , 0 ) / 100 ), (ROUND ((ROUND (CAST ((JSON_UNQUOTE (JSON_EXTRACT (`product` . `cheapest_price_accessor` , "$.rule73985d35e9ca4269aa801b8fe062944b.currencyb7d2554b0ce847cd82f3ac9bd1c0dfca.gross" )) * 1 ) as DECIMAL (30 , 20 )), 2 )) * 100 , 0 ) / 100 ), (ROUND ((ROUND (CAST ((JSON_UNQUOTE (JSON_EXTRACT (`product` . `cheapest_price_accessor` , "$.rule972a7b9e4ee04fc7a04524c1c17b57f9.currencyb7d2554b0ce847cd82f3ac9bd1c0dfca.gross" )) * 1 ) as DECIMAL (30 , 20 )), 2 )) * 100 , 0 ) / 100 ), (ROUND ((ROUND (CAST ((JSON_UNQUOTE (JSON_EXTRACT (`product` . `cheapest_price_accessor` , "$.rulee1378db7808a478f919e0d740d5d6c1a.currencyb7d2554b0ce847cd82f3ac9bd1c0dfca.gross" )) * 1 ) as DECIMAL (30 , 20 )), 2 )) * 100 , 0 ) / 100 ), (ROUND ((ROUND (CAST ((JSON_UNQUOTE (JSON_EXTRACT (`product` . `cheapest_price_accessor` , "$.rulee98c61274c394568b5f9d3a28b44b0d9.currencyb7d2554b0ce847cd82f3ac9bd1c0dfca.gross" )) * 1 ) as DECIMAL (30 , 20 )), 2 )) * 100 , 0 ) / 100 ), (ROUND ((ROUND (CAST ((JSON_UNQUOTE (JSON_EXTRACT (`product` . `cheapest_price_accessor` , "$.ruleec697ec341d94fcb9ca7ccb59f292c3c.currencyb7d2554b0ce847cd82f3ac9bd1c0dfca.gross" )) * 1 ) as DECIMAL (30 , 20 )), 2 )) * 100 , 0 ) / 100 ), (ROUND ((ROUND (CAST ((JSON_UNQUOTE (JSON_EXTRACT (`product` . `cheapest_price_accessor` , "$.rule28caae75a5624f0d985abd0eb32aa160.currencyb7d2554b0ce847cd82f3ac9bd1c0dfca.gross" )) * 1 ) as DECIMAL (30 , 20 )), 2 )) * 100 , 0 ) / 100 ), (ROUND ((ROUND (CAST ((JSON_UNQUOTE (JSON_EXTRACT (`product` . `cheapest_price_accessor` , "$.rule59c443ea0d494930a00ecf5a0398f003.currencyb7d2554b0ce847cd82f3ac9bd1c0dfca.gross" )) * 1 ) as DECIMAL (30 , 20 )), 2 )) * 100 , 0 ) / 100 ), (ROUND ((ROUND (CAST ((JSON_UNQUOTE (JSON_EXTRACT (`product` . `cheapest_price_accessor` , "$.rulee44e6782c64247b796b891cf25ae38f7.currencyb7d2554b0ce847cd82f3ac9bd1c0dfca.gross" )) * 1 ) as DECIMAL (30 , 20 )), 2 )) * 100 , 0 ) / 100 ), (ROUND ((ROUND (CAST ((JSON_UNQUOTE (JSON_EXTRACT (`product` . `cheapest_price_accessor` , "$.ruledefault.currencyb7d2554b0ce847cd82f3ac9bd1c0dfca.gross" )) * 1 ) as DECIMAL (30 , 20 )), 2 )) * 100 , 0 ) / 100 )), COALESCE ((ROUND ((ROUND (CAST ((JSON_UNQUOTE (JSON_EXTRACT (`product.parent` . `cheapest_price_accessor` , "$.ruled80c7ad413604809b17b191db2357535.currencyb7d2554b0ce847cd82f3ac9bd1c0dfca.gross" )) * 1 ) as DECIMAL (30 , 20 )), 2 )) * 100 , 0 ) / 100 ), (ROUND ((ROUND (CAST ((JSON_UNQUOTE (JSON_EXTRACT (`product.parent` . `cheapest_price_accessor` , "$.rule1d7048236acf4a52b03c0365c5cf515c.currencyb7d2554b0ce847cd82f3ac9bd1c0dfca.gross" )) * 1 ) as DECIMAL (30 , 20 )), 2 )) * 100 , 0 ) / 100 ), (ROUND ((ROUND (CAST ((JSON_UNQUOTE (JSON_EXTRACT (`product.parent` . `cheapest_price_accessor` , "$.rule3858957016644de4ae48c0500bf3ccc8.currencyb7d2554b0ce847cd82f3ac9bd1c0dfca.gross" )) * 1 ) as DECIMAL (30 , 20 )), 2 )) * 100 , 0 ) / 100 ), (ROUND ((ROUND (CAST ((JSON_UNQUOTE (JSON_EXTRACT (`product.parent` . `cheapest_price_accessor` , "$.rule44abeee58eda43559bbcf0f6ff296300.currencyb7d2554b0ce847cd82f3ac9bd1c0dfca.gross" )) * 1 ) as DECIMAL (30 , 20 )), 2 )) * 100 , 0 ) / 100 ), (ROUND ((ROUND (CAST ((JSON_UNQUOTE (JSON_EXTRACT (`product.parent` . `cheapest_price_accessor` , "$.rule73985d35e9ca4269aa801b8fe062944b.currencyb7d2554b0ce847cd82f3ac9bd1c0dfca.gross" )) * 1 ) as DECIMAL (30 , 20 )), 2 )) * 100 , 0 ) / 100 ), (ROUND ((ROUND (CAST ((JSON_UNQUOTE (JSON_EXTRACT (`product.parent` . `cheapest_price_accessor` , "$.rule972a7b9e4ee04fc7a04524c1c17b57f9.currencyb7d2554b0ce847cd82f3ac9bd1c0dfca.gross" )) * 1 ) as DECIMAL (30 , 20 )), 2 )) * 100 , 0 ) / 100 ), (ROUND ((ROUND (CAST ((JSON_UNQUOTE (JSON_EXTRACT (`product.parent` . `cheapest_price_accessor` , "$.rulee1378db7808a478f919e0d740d5d6c1a.currencyb7d2554b0ce847cd82f3ac9bd1c0dfca.gross" )) * 1 ) as DECIMAL (30 , 20 )), 2 )) * 100 , 0 ) / 100 ), (ROUND ((ROUND (CAST ((JSON_UNQUOTE (JSON_EXTRACT (`product.parent` . `cheapest_price_accessor` , "$.rulee98c61274c394568b5f9d3a28b44b0d9.currencyb7d2554b0ce847cd82f3ac9bd1c0dfca.gross" )) * 1 ) as DECIMAL (30 , 20 )), 2 )) * 100 , 0 ) / 100 ), (ROUND ((ROUND (CAST ((JSON_UNQUOTE (JSON_EXTRACT (`product.parent` . `cheapest_price_accessor` , "$.ruleec697ec341d94fcb9ca7ccb59f292c3c.currencyb7d2554b0ce847cd82f3ac9bd1c0dfca.gross" )) * 1 ) as DECIMAL (30 , 20 )), 2 )) * 100 , 0 ) / 100 ), (ROUND ((ROUND (CAST ((JSON_UNQUOTE (JSON_EXTRACT (`product.parent` . `cheapest_price_accessor` , "$.rule28caae75a5624f0d985abd0eb32aa160.currencyb7d2554b0ce847cd82f3ac9bd1c0dfca.gross" )) * 1 ) as DECIMAL (30 , 20 )), 2 )) * 100 , 0 ) / 100 ), (ROUND ((ROUND (CAST ((JSON_UNQUOTE (JSON_EXTRACT (`product.parent` . `cheapest_price_accessor` , "$.rule59c443ea0d494930a00ecf5a0398f003.currencyb7d2554b0ce847cd82f3ac9bd1c0dfca.gross" )) * 1 ) as DECIMAL (30 , 20 )), 2 )) * 100 , 0 ) / 100 ), (ROUND ((ROUND (CAST ((JSON_UNQUOTE (JSON_EXTRACT (`product.parent` . `cheapest_price_accessor` , "$.rulee44e6782c64247b796b891cf25ae38f7.currencyb7d2554b0ce847cd82f3ac9bd1c0dfca.gross" )) * 1 ) as DECIMAL (30 , 20 )), 2 )) * 100 , 0 ) / 100 ), (ROUND ((ROUND (CAST ((JSON_UNQUOTE (JSON_EXTRACT (`product.parent` . `cheapest_price_accessor` , "$.ruledefault.currencyb7d2554b0ce847cd82f3ac9bd1c0dfca.gross" )) * 1 ) as DECIMAL (30 , 20 )), 2 )) * 100 , 0 ) / 100 )))) as `price.max` FROM `product` LEFT JOIN `product` `product.parent` ON `product` . `parent_id` = `product.parent` . `id` AND `product` . `parent_version_id` = `product.parent` . `version_id` LEFT JOIN `product_visibility` `product.visibilities` ON `product` . `visibilities` = `product.visibilities` . `product_id` AND `product` . version_id = `product.visibilities` . product_version_id LEFT JOIN `product_category_tree` `product.categoriesRo.mapping` ON `product` . `id` = `product.categoriesRo.mapping` . `product_id` AND `product` . `version_id` = `product.categoriesRo.mapping` . `product_version_id` LEFT JOIN `category` `product.categoriesRo` ON `product.categoriesRo.mapping` . `category_id` = `product.categoriesRo` . `id` AND `product.categoriesRo` . `version_id` = `product.categoriesRo.mapping` . `category_version_id` WHERE (`product` . `version_id` = 0x0FA91CE3E96A4BC2BE4BD9CE752C3425 ) AND ((((`product.visibilities` . `visibility` > = 30 ) AND `product.visibilities` . `sales_channel_id` = 0x3E7B6B27D41E4F87AD21BC476ECF4D6A AND IFNULL (`product` . `active` , `product.parent` . `active` ) = 1 ) AND `product.categoriesRo` . `id` = '\0\0\0\0\0\0\0\0\0\0\0\0(bH' AND NOT (`product` . `display_group` < = > NULL )));
Copy
52
27.67 ms
SELECT MAX (IFNULL (`product` . `rating_average` , `product.parent` . `rating_average` )) as `rating` FROM `product` LEFT JOIN `product` `product.parent` ON `product` . `parent_id` = `product.parent` . `id` AND `product` . `parent_version_id` = `product.parent` . `version_id` LEFT JOIN `product_visibility` `product.visibilities` ON `product` . `visibilities` = `product.visibilities` . `product_id` AND `product` . version_id = `product.visibilities` . product_version_id LEFT JOIN `product_category_tree` `product.categoriesRo.mapping` ON `product` . `id` = `product.categoriesRo.mapping` . `product_id` AND `product` . `version_id` = `product.categoriesRo.mapping` . `product_version_id` LEFT JOIN `category` `product.categoriesRo` ON `product.categoriesRo.mapping` . `category_id` = `product.categoriesRo` . `id` AND `product.categoriesRo` . `version_id` = `product.categoriesRo.mapping` . `category_version_id` WHERE (`product` . `version_id` = ? ) AND ((((`product.visibilities` . `visibility` > = ? ) AND `product.visibilities` . `sales_channel_id` = ? AND IFNULL (`product` . `active` , `product.parent` . `active` ) = ? ) AND `product.categoriesRo` . `id` = ? AND NOT (`product` . `display_group` < = > ? ))) AND (((IFNULL (`product` . `rating_average` , `product.parent` . `rating_average` ) > = ? )))
Parameters :
[
b"\x0F ©\x1C ãéjK¾KÙÎu,4% "
30
b">{k'Ô\x1E O‡!¼GnÏMj "
true
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02 (bH "
null
0
]
SELECT MAX (IFNULL (`product` . `rating_average` , `product.parent` . `rating_average` )) as `rating` FROM `product` LEFT JOIN `product` `product.parent` ON `product` . `parent_id` = `product.parent` . `id` AND `product` . `parent_version_id` = `product.parent` . `version_id` LEFT JOIN `product_visibility` `product.visibilities` ON `product` . `visibilities` = `product.visibilities` . `product_id` AND `product` . version_id = `product.visibilities` . product_version_id LEFT JOIN `product_category_tree` `product.categoriesRo.mapping` ON `product` . `id` = `product.categoriesRo.mapping` . `product_id` AND `product` . `version_id` = `product.categoriesRo.mapping` . `product_version_id` LEFT JOIN `category` `product.categoriesRo` ON `product.categoriesRo.mapping` . `category_id` = `product.categoriesRo` . `id` AND `product.categoriesRo` . `version_id` = `product.categoriesRo.mapping` . `category_version_id` WHERE (`product` . `version_id` = 0x0FA91CE3E96A4BC2BE4BD9CE752C3425 ) AND ((((`product.visibilities` . `visibility` > = 30 ) AND `product.visibilities` . `sales_channel_id` = 0x3E7B6B27D41E4F87AD21BC476ECF4D6A AND IFNULL (`product` . `active` , `product.parent` . `active` ) = 1 ) AND `product.categoriesRo` . `id` = '\0\0\0\0\0\0\0\0\0\0\0\0(bH' AND NOT (`product` . `display_group` < = > NULL ))) AND (((IFNULL (`product` . `rating_average` , `product.parent` . `rating_average` ) > = 0 )));
Copy
53
94.73 ms
SELECT LOWER (HEX (`product.properties` . `id` )) as `properties.key` , COUNT (`product` . `id` ) as `properties.count` FROM `product` LEFT JOIN `product` `product.parent` ON `product` . `parent_id` = `product.parent` . `id` AND `product` . `parent_version_id` = `product.parent` . `version_id` LEFT JOIN `product_visibility` `product.visibilities` ON `product` . `visibilities` = `product.visibilities` . `product_id` AND `product` . version_id = `product.visibilities` . product_version_id LEFT JOIN `product_category_tree` `product.categoriesRo.mapping` ON `product` . `id` = `product.categoriesRo.mapping` . `product_id` AND `product` . `version_id` = `product.categoriesRo.mapping` . `product_version_id` LEFT JOIN `product_property` `product.properties.mapping` ON `product` . `properties` = `product.properties.mapping` . `product_id` AND `product` . `version_id` = `product.properties.mapping` . `product_version_id` LEFT JOIN `category` `product.categoriesRo` ON `product.categoriesRo.mapping` . `category_id` = `product.categoriesRo` . `id` AND `product.categoriesRo` . `version_id` = `product.categoriesRo.mapping` . `category_version_id` LEFT JOIN `property_group_option` `product.properties` ON `product.properties.mapping` . `property_group_option_id` = `product.properties` . `id` WHERE (`product` . `version_id` = ? ) AND ((((`product.visibilities` . `visibility` > = ? ) AND `product.visibilities` . `sales_channel_id` = ? AND IFNULL (`product` . `active` , `product.parent` . `active` ) = ? ) AND `product.categoriesRo` . `id` = ? AND NOT (`product` . `display_group` < = > ? ))) GROUP BY `product.properties` . `id`
Parameters :
[
b"\x0F ©\x1C ãéjK¾KÙÎu,4% "
30
b">{k'Ô\x1E O‡!¼GnÏMj "
true
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02 (bH "
null
]
SELECT LOWER (HEX (`product.properties` . `id` )) as `properties.key` , COUNT (`product` . `id` ) as `properties.count` FROM `product` LEFT JOIN `product` `product.parent` ON `product` . `parent_id` = `product.parent` . `id` AND `product` . `parent_version_id` = `product.parent` . `version_id` LEFT JOIN `product_visibility` `product.visibilities` ON `product` . `visibilities` = `product.visibilities` . `product_id` AND `product` . version_id = `product.visibilities` . product_version_id LEFT JOIN `product_category_tree` `product.categoriesRo.mapping` ON `product` . `id` = `product.categoriesRo.mapping` . `product_id` AND `product` . `version_id` = `product.categoriesRo.mapping` . `product_version_id` LEFT JOIN `product_property` `product.properties.mapping` ON `product` . `properties` = `product.properties.mapping` . `product_id` AND `product` . `version_id` = `product.properties.mapping` . `product_version_id` LEFT JOIN `category` `product.categoriesRo` ON `product.categoriesRo.mapping` . `category_id` = `product.categoriesRo` . `id` AND `product.categoriesRo` . `version_id` = `product.categoriesRo.mapping` . `category_version_id` LEFT JOIN `property_group_option` `product.properties` ON `product.properties.mapping` . `property_group_option_id` = `product.properties` . `id` WHERE (`product` . `version_id` = 0x0FA91CE3E96A4BC2BE4BD9CE752C3425 ) AND ((((`product.visibilities` . `visibility` > = 30 ) AND `product.visibilities` . `sales_channel_id` = 0x3E7B6B27D41E4F87AD21BC476ECF4D6A AND IFNULL (`product` . `active` , `product.parent` . `active` ) = 1 ) AND `product.categoriesRo` . `id` = '\0\0\0\0\0\0\0\0\0\0\0\0(bH' AND NOT (`product` . `display_group` < = > NULL ))) GROUP BY `product.properties` . `id` ;
Copy
54
68.76 ms
SELECT LOWER (HEX (`product.options` . `id` )) as `options.key` , COUNT (`product` . `id` ) as `options.count` FROM `product` LEFT JOIN `product` `product.parent` ON `product` . `parent_id` = `product.parent` . `id` AND `product` . `parent_version_id` = `product.parent` . `version_id` LEFT JOIN `product_visibility` `product.visibilities` ON `product` . `visibilities` = `product.visibilities` . `product_id` AND `product` . version_id = `product.visibilities` . product_version_id LEFT JOIN `product_category_tree` `product.categoriesRo.mapping` ON `product` . `id` = `product.categoriesRo.mapping` . `product_id` AND `product` . `version_id` = `product.categoriesRo.mapping` . `product_version_id` LEFT JOIN `product_option` `product.options.mapping` ON `product` . `id` = `product.options.mapping` . `product_id` AND `product` . `version_id` = `product.options.mapping` . `product_version_id` LEFT JOIN `category` `product.categoriesRo` ON `product.categoriesRo.mapping` . `category_id` = `product.categoriesRo` . `id` AND `product.categoriesRo` . `version_id` = `product.categoriesRo.mapping` . `category_version_id` LEFT JOIN `property_group_option` `product.options` ON `product.options.mapping` . `property_group_option_id` = `product.options` . `id` WHERE (`product` . `version_id` = ? ) AND ((((`product.visibilities` . `visibility` > = ? ) AND `product.visibilities` . `sales_channel_id` = ? AND IFNULL (`product` . `active` , `product.parent` . `active` ) = ? ) AND `product.categoriesRo` . `id` = ? AND NOT (`product` . `display_group` < = > ? ))) GROUP BY `product.options` . `id`
Parameters :
[
b"\x0F ©\x1C ãéjK¾KÙÎu,4% "
30
b">{k'Ô\x1E O‡!¼GnÏMj "
true
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02 (bH "
null
]
SELECT LOWER (HEX (`product.options` . `id` )) as `options.key` , COUNT (`product` . `id` ) as `options.count` FROM `product` LEFT JOIN `product` `product.parent` ON `product` . `parent_id` = `product.parent` . `id` AND `product` . `parent_version_id` = `product.parent` . `version_id` LEFT JOIN `product_visibility` `product.visibilities` ON `product` . `visibilities` = `product.visibilities` . `product_id` AND `product` . version_id = `product.visibilities` . product_version_id LEFT JOIN `product_category_tree` `product.categoriesRo.mapping` ON `product` . `id` = `product.categoriesRo.mapping` . `product_id` AND `product` . `version_id` = `product.categoriesRo.mapping` . `product_version_id` LEFT JOIN `product_option` `product.options.mapping` ON `product` . `id` = `product.options.mapping` . `product_id` AND `product` . `version_id` = `product.options.mapping` . `product_version_id` LEFT JOIN `category` `product.categoriesRo` ON `product.categoriesRo.mapping` . `category_id` = `product.categoriesRo` . `id` AND `product.categoriesRo` . `version_id` = `product.categoriesRo.mapping` . `category_version_id` LEFT JOIN `property_group_option` `product.options` ON `product.options.mapping` . `property_group_option_id` = `product.options` . `id` WHERE (`product` . `version_id` = 0x0FA91CE3E96A4BC2BE4BD9CE752C3425 ) AND ((((`product.visibilities` . `visibility` > = 30 ) AND `product.visibilities` . `sales_channel_id` = 0x3E7B6B27D41E4F87AD21BC476ECF4D6A AND IFNULL (`product` . `active` , `product.parent` . `active` ) = 1 ) AND `product.categoriesRo` . `id` = '\0\0\0\0\0\0\0\0\0\0\0\0(bH' AND NOT (`product` . `display_group` < = > NULL ))) GROUP BY `product.options` . `id` ;
Copy
55
0.78 ms
SELECT
parent . variant_listing_config as variantListingConfig ,
LOWER (HEX (child . id )) as id ,
LOWER (HEX (parent . id )) as parentId
FROM product as child
INNER JOIN product as parent
ON parent . id = child . parent_id
AND parent . version_id = child . version_id
WHERE child . version_id = ?
AND child . id IN (? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? )
Parameters :
[
b"\x0F ©\x1C ãéjK¾KÙÎu,4% "
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01 b5\x11 h "
b"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01 x3\x08 — "
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01 3a\x07 6 "
b"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01 d&ƒ3 "
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01 5g\x14 u "
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01 F\t\x11 v "
b"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01 FS\x15 ‘ "
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01 `3YB "
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01 `\x14 u" "
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01 Hw@V "
b"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01 YüU\x00 "
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01 3V\x10 S "
b"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01 Y—\x04 “ "
b"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01 q™X\x18 "
b"á=°3±9E(‘VÒ"…£ƒ\x06 "
b"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01 4”–\x07 "
b"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01 $\x04 7ü "
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01 #ds\x01 "
b"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01 iqB˜ "
b"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01 f\x03\x07 … "
b"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01 #dq” "
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01 r\x01 !8 "
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01 p\x11 &" "
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01 f\x03\x07\x15 "
]
SELECT
parent . variant_listing_config as variantListingConfig ,
LOWER (HEX (child . id )) as id ,
LOWER (HEX (parent . id )) as parentId
FROM product as child
INNER JOIN product as parent
ON parent . id = child . parent_id
AND parent . version_id = child . version_id
WHERE child . version_id = 0x0FA91CE3E96A4BC2BE4BD9CE752C3425
AND child . id IN ('\0\0\0\0\0\0\0\0\0\0\0b5h' , 0x00000000000000000000000178330897 , '\0\0\0\0\0\0\0\0\0\0\03a6' , 0x00000000000000000000000164268333 , '\0\0\0\0\0\0\0\0\0\0\05gu' , '\0\0\0\0\0\0\0\0\0\0\0F v' , 0x00000000000000000000000146531591 , '\0\0\0\0\0\0\0\0\0\0\0`3YB' , '\0\0\0\0\0\0\0\0\0\0\0`u\"' , '\0\0\0\0\0\0\0\0\0\0\0Hw@V' , 0x00000000000000000000000159815500 , '\0\0\0\0\0\0\0\0\0\0\03VS' , 0x00000000000000000000000159970493 , 0x00000000000000000000000171995818 , 0xE13DB033B13945289156D22285A38306 , 0x00000000000000000000000134949607 , 0x00000000000000000000000124043781 , '\0\0\0\0\0\0\0\0\0\0\0#ds' , 0x00000000000000000000000169714298 , 0x00000000000000000000000166030785 , 0x00000000000000000000000123647194 , '\0\0\0\0\0\0\0\0\0\0\0r!8' , '\0\0\0\0\0\0\0\0\0\0\0p&\"' , '\0\0\0\0\0\0\0\0\0\0\0f' );
Copy
56
1.14 ms
SELECT `product` . `id` , `product` . `product_number` , `product` . `auto_increment` FROM `product` LEFT JOIN `product` `product.parent` ON `product` . `parent_id` = `product.parent` . `id` AND `product` . `parent_version_id` = `product.parent` . `version_id` LEFT JOIN `product_visibility` `product.visibilities` ON `product` . `visibilities` = `product.visibilities` . `product_id` AND `product` . version_id = `product.visibilities` . product_version_id WHERE (`product` . `version_id` = ? ) AND ((((`product.visibilities` . `visibility` > = ? ) AND `product.visibilities` . `sales_channel_id` = ? AND IFNULL (`product` . `active` , `product.parent` . `active` ) = ? ))) AND (`product` . `id` IN (? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? )) GROUP BY `product` . `id`
Parameters :
[
b"\x0F ©\x1C ãéjK¾KÙÎu,4% "
10
b">{k'Ô\x1E O‡!¼GnÏMj "
true
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01 b5\x11 h "
b"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01 x3\x08 — "
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01 3a\x07 6 "
b"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01 d&ƒ3 "
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01 5g\x14 u "
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01 F\t\x11 v "
b"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01 FS\x15 ‘ "
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01 `3YB "
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01 `\x14 u" "
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01 Hw@V "
b"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01 YüU\x00 "
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01 3V\x10 S "
b"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01 Y—\x04 “ "
b"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01 q™X\x18 "
b"á=°3±9E(‘VÒ"…£ƒ\x06 "
b"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01 4”–\x07 "
b"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01 $\x04 7ü "
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01 #ds\x01 "
b"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01 iqB˜ "
b"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01 f\x03\x07 … "
b"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01 #dq” "
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01 r\x01 !8 "
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01 p\x11 &" "
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01 f\x03\x07\x15 "
]
SELECT `product` . `id` , `product` . `product_number` , `product` . `auto_increment` FROM `product` LEFT JOIN `product` `product.parent` ON `product` . `parent_id` = `product.parent` . `id` AND `product` . `parent_version_id` = `product.parent` . `version_id` LEFT JOIN `product_visibility` `product.visibilities` ON `product` . `visibilities` = `product.visibilities` . `product_id` AND `product` . version_id = `product.visibilities` . product_version_id WHERE (`product` . `version_id` = 0x0FA91CE3E96A4BC2BE4BD9CE752C3425 ) AND ((((`product.visibilities` . `visibility` > = 10 ) AND `product.visibilities` . `sales_channel_id` = 0x3E7B6B27D41E4F87AD21BC476ECF4D6A AND IFNULL (`product` . `active` , `product.parent` . `active` ) = 1 ))) AND (`product` . `id` IN ('\0\0\0\0\0\0\0\0\0\0\0b5h' , 0x00000000000000000000000178330897 , '\0\0\0\0\0\0\0\0\0\0\03a6' , 0x00000000000000000000000164268333 , '\0\0\0\0\0\0\0\0\0\0\05gu' , '\0\0\0\0\0\0\0\0\0\0\0F v' , 0x00000000000000000000000146531591 , '\0\0\0\0\0\0\0\0\0\0\0`3YB' , '\0\0\0\0\0\0\0\0\0\0\0`u\"' , '\0\0\0\0\0\0\0\0\0\0\0Hw@V' , 0x00000000000000000000000159815500 , '\0\0\0\0\0\0\0\0\0\0\03VS' , 0x00000000000000000000000159970493 , 0x00000000000000000000000171995818 , 0xE13DB033B13945289156D22285A38306 , 0x00000000000000000000000134949607 , 0x00000000000000000000000124043781 , '\0\0\0\0\0\0\0\0\0\0\0#ds' , 0x00000000000000000000000169714298 , 0x00000000000000000000000166030785 , 0x00000000000000000000000123647194 , '\0\0\0\0\0\0\0\0\0\0\0r!8' , '\0\0\0\0\0\0\0\0\0\0\0p&\"' , '\0\0\0\0\0\0\0\0\0\0\0f' )) GROUP BY `product` . `id` ;
Copy
57
20.00 ms
SELECT `product` . `id` as `product.id` , `product` . `version_id` as `product.versionId` , `product` . `parent_id` as `product.parentId` , `product` . `parent_version_id` as `product.parentVersionId` , COALESCE (`product` . `product_manufacturer_id` , `product.parent` . `product_manufacturer_id` ) as `product.manufacturerId` , COALESCE (`product` . `product_manufacturer_version_id` , `product.parent` . `product_manufacturer_version_id` ) as `product.productManufacturerVersionId` , COALESCE (`product` . `unit_id` , `product.parent` . `unit_id` ) as `product.unitId` , COALESCE (`product` . `tax_id` , `product.parent` . `tax_id` ) as `product.taxId` , COALESCE (`product` . `product_media_id` , `product.parent` . `product_media_id` ) as `product.coverId` , COALESCE (`product` . `product_media_version_id` , `product.parent` . `product_media_version_id` ) as `product.productMediaVersionId` , COALESCE (`product` . `delivery_time_id` , `product.parent` . `delivery_time_id` ) as `product.deliveryTimeId` , COALESCE (`product` . `product_feature_set_id` , `product.parent` . `product_feature_set_id` ) as `product.featureSetId` , COALESCE (`product` . `canonical_product_id` , `product.parent` . `canonical_product_id` ) as `product.canonicalProductId` , COALESCE (`product` . `canonical_product_version_id` , `product.parent` . `canonical_product_version_id` ) as `product.canonicalProductVersionId` , COALESCE (`product` . `cms_page_id` , `product.parent` . `cms_page_id` ) as `product.cmsPageId` , COALESCE (`product` . `cms_page_version_id` , `product.parent` . `cms_page_version_id` ) as `product.cmsPageVersionId` , `product.parent` . `price` as `product.price.inherited` , COALESCE (`product` . `price` , `product.parent` . `price` ) as `product.price` , `product` . `product_number` as `product.productNumber` , COALESCE (`product` . `restock_time` , `product.parent` . `restock_time` ) as `product.restockTime` , `product` . `auto_increment` as `product.autoIncrement` , COALESCE (`product` . `active` , `product.parent` . `active` ) as `product.active` , `product` . `available` as `product.available` , COALESCE (`product` . `is_closeout` , `product.parent` . `is_closeout` ) as `product.isCloseout` , `product` . `available_stock` as `product.availableStock` , `product` . `stock` as `product.stock` , `product` . `display_group` as `product.displayGroup` , `product.parent` . `variant_listing_config` as `product.variantListingConfig.inherited` , COALESCE (`product` . `variant_listing_config` , `product.parent` . `variant_listing_config` ) as `product.variantListingConfig` , `product` . `variant_restrictions` as `product.variantRestrictions` , COALESCE (`product` . `manufacturer_number` , `product.parent` . `manufacturer_number` ) as `product.manufacturerNumber` , COALESCE (`product` . `ean` , `product.parent` . `ean` ) as `product.ean` , COALESCE (`product` . `purchase_steps` , `product.parent` . `purchase_steps` ) as `product.purchaseSteps` , COALESCE (`product` . `max_purchase` , `product.parent` . `max_purchase` ) as `product.maxPurchase` , COALESCE (`product` . `min_purchase` , `product.parent` . `min_purchase` ) as `product.minPurchase` , COALESCE (`product` . `purchase_unit` , `product.parent` . `purchase_unit` ) as `product.purchaseUnit` , COALESCE (`product` . `reference_unit` , `product.parent` . `reference_unit` ) as `product.referenceUnit` , COALESCE (`product` . `shipping_free` , `product.parent` . `shipping_free` ) as `product.shippingFree` , `product.parent` . `purchase_prices` as `product.purchasePrices.inherited` , COALESCE (`product` . `purchase_prices` , `product.parent` . `purchase_prices` ) as `product.purchasePrices` , COALESCE (`product` . `mark_as_topseller` , `product.parent` . `mark_as_topseller` ) as `product.markAsTopseller` , COALESCE (`product` . `weight` , `product.parent` . `weight` ) as `product.weight` , COALESCE (`product` . `width` , `product.parent` . `width` ) as `product.width` , COALESCE (`product` . `height` , `product.parent` . `height` ) as `product.height` , COALESCE (`product` . `length` , `product.parent` . `length` ) as `product.length` , COALESCE (`product` . `release_date` , `product.parent` . `release_date` ) as `product.releaseDate` , COALESCE (`product` . `rating_average` , `product.parent` . `rating_average` ) as `product.ratingAverage` , `product.parent` . `category_tree` as `product.categoryTree.inherited` , COALESCE (`product` . `category_tree` , `product.parent` . `category_tree` ) as `product.categoryTree` , `product.parent` . `property_ids` as `product.propertyIds.inherited` , COALESCE (`product` . `property_ids` , `product.parent` . `property_ids` ) as `product.propertyIds` , `product.parent` . `option_ids` as `product.optionIds.inherited` , COALESCE (`product` . `option_ids` , `product.parent` . `option_ids` ) as `product.optionIds` , `product.parent` . `stream_ids` as `product.streamIds.inherited` , COALESCE (`product` . `stream_ids` , `product.parent` . `stream_ids` ) as `product.streamIds` , `product.parent` . `tag_ids` as `product.tagIds.inherited` , COALESCE (`product` . `tag_ids` , `product.parent` . `tag_ids` ) as `product.tagIds` , `product.parent` . `category_ids` as `product.categoryIds.inherited` , COALESCE (`product` . `category_ids` , `product.parent` . `category_ids` ) as `product.categoryIds` , `product` . `child_count` as `product.childCount` , COALESCE (`product` . `custom_field_set_selection_active` , `product.parent` . `custom_field_set_selection_active` ) as `product.customFieldSetSelectionActive` , `product` . `sales` as `product.sales` , `product` . `states` as `product.states` , `product.parent` . `cheapest_price` as `product.cheapestPrice.inherited` , COALESCE (`product` . `cheapest_price` , `product.parent` . `cheapest_price` ) as `product.cheapestPrice` , `product` . `created_at` as `product.createdAt` , `product` . `updated_at` as `product.updatedAt` , `product.manufacturer` . `id` as `product.manufacturer.id` , `product.manufacturer` . `version_id` as `product.manufacturer.versionId` , `product.manufacturer` . `media_id` as `product.manufacturer.mediaId` , `product.manufacturer` . `link` as `product.manufacturer.link` , `product.manufacturer` . `created_at` as `product.manufacturer.createdAt` , `product.manufacturer` . `updated_at` as `product.manufacturer.updatedAt` , `product.manufacturer.translation.name` , `product.manufacturer.translation.name` as `product.manufacturer.name` , `product.manufacturer.translation.description` , `product.manufacturer.translation.description` as `product.manufacturer.description` , `product.manufacturer.translation.customFields` , `product.manufacturer.translation.customFields` as `product.manufacturer.customFields` , (SELECT GROUP_CONCAT (HEX (`product.options.mapping` . `property_group_option_id` ) SEPARATOR '||' )
FROM `product_option` `product.options.mapping`
WHERE `product.options.mapping` . `product_id` = `product` . `id` ) as `product.options.id_mapping` , `product.unit` . `id` as `product.unit.id` , `product.unit` . `created_at` as `product.unit.createdAt` , `product.unit` . `updated_at` as `product.unit.updatedAt` , `product.unit.translation.shortCode` , `product.unit.translation.shortCode` as `product.unit.shortCode` , `product.unit.translation.name` , `product.unit.translation.name` as `product.unit.name` , `product.unit.translation.customFields` , `product.unit.translation.customFields` as `product.unit.customFields` , `product.deliveryTime` . `id` as `product.deliveryTime.id` , `product.deliveryTime` . `min` as `product.deliveryTime.min` , `product.deliveryTime` . `max` as `product.deliveryTime.max` , `product.deliveryTime` . `unit` as `product.deliveryTime.unit` , `product.deliveryTime` . `created_at` as `product.deliveryTime.createdAt` , `product.deliveryTime` . `updated_at` as `product.deliveryTime.updatedAt` , `product.deliveryTime.translation.name` , `product.deliveryTime.translation.name` as `product.deliveryTime.name` , `product.deliveryTime.translation.customFields` , `product.deliveryTime.translation.customFields` as `product.deliveryTime.customFields` , `product.cover` . `id` as `product.cover.id` , `product.cover` . `version_id` as `product.cover.versionId` , `product.cover` . `product_id` as `product.cover.productId` , `product.cover` . `product_version_id` as `product.cover.productVersionId` , `product.cover` . `media_id` as `product.cover.mediaId` , `product.cover` . `position` as `product.cover.position` , `product.cover` . `custom_fields` as `product.cover.customFields` , `product.cover` . `created_at` as `product.cover.createdAt` , `product.cover` . `updated_at` as `product.cover.updatedAt` , `product.cover.media` . `id` as `product.cover.media.id` , `product.cover.media` . `user_id` as `product.cover.media.userId` , `product.cover.media` . `media_folder_id` as `product.cover.media.mediaFolderId` , `product.cover.media` . `mime_type` as `product.cover.media.mimeType` , `product.cover.media` . `file_extension` as `product.cover.media.fileExtension` , `product.cover.media` . `uploaded_at` as `product.cover.media.uploadedAt` , `product.cover.media` . `file_name` as `product.cover.media.fileName` , `product.cover.media` . `file_size` as `product.cover.media.fileSize` , `product.cover.media` . `media_type` as `product.cover.media.mediaTypeRaw` , `product.cover.media` . `meta_data` as `product.cover.media.metaData` , `product.cover.media` . `config` as `product.cover.media.config` , `product.cover.media` . `path` as `product.cover.media.path` , `product.cover.media` . `private` as `product.cover.media.private` , `product.cover.media` . `thumbnails_ro` as `product.cover.media.thumbnailsRo` , `product.cover.media` . `file_hash` as `product.cover.media.fileHash` , `product.cover.media` . `created_at` as `product.cover.media.createdAt` , `product.cover.media` . `updated_at` as `product.cover.media.updatedAt` , `product.cover.media.translation.title` , `product.cover.media.translation.title` as `product.cover.media.title` , `product.cover.media.translation.alt` , `product.cover.media.translation.alt` as `product.cover.media.alt` , `product.cover.media.translation.customFields` , `product.cover.media.translation.customFields` as `product.cover.media.customFields` , `product.tax` . `id` as `product.tax.id` , `product.tax` . `tax_rate` as `product.tax.taxRate` , `product.tax` . `name` as `product.tax.name` , `product.tax` . `position` as `product.tax.position` , `product.tax` . `custom_fields` as `product.tax.customFields` , `product.tax` . `created_at` as `product.tax.createdAt` , `product.tax` . `updated_at` as `product.tax.updatedAt` , `product.translation.metaDescription` , `product.parent.translation.metaDescription` , COALESCE (`product.translation.metaDescription` , `product.parent.translation.metaDescription` ) as `product.metaDescription` , `product.translation.name` , `product.parent.translation.name` , COALESCE (`product.translation.name` , `product.parent.translation.name` ) as `product.name` , `product.translation.keywords` , `product.parent.translation.keywords` , COALESCE (`product.translation.keywords` , `product.parent.translation.keywords` ) as `product.keywords` , `product.translation.description` , `product.parent.translation.description` , COALESCE (`product.translation.description` , `product.parent.translation.description` ) as `product.description` , `product.translation.metaTitle` , `product.parent.translation.metaTitle` , COALESCE (`product.translation.metaTitle` , `product.parent.translation.metaTitle` ) as `product.metaTitle` , `product.translation.packUnit` , `product.parent.translation.packUnit` , COALESCE (`product.translation.packUnit` , `product.parent.translation.packUnit` ) as `product.packUnit` , `product.translation.packUnitPlural` , `product.parent.translation.packUnitPlural` , COALESCE (`product.translation.packUnitPlural` , `product.parent.translation.packUnitPlural` ) as `product.packUnitPlural` , `product.translation.customSearchKeywords` , `product.parent.translation.customSearchKeywords` , COALESCE (`product.translation.customSearchKeywords` , `product.parent.translation.customSearchKeywords` ) as `product.customSearchKeywords` , `product.translation.slotConfig` , `product.parent.translation.slotConfig` , COALESCE (`product.translation.slotConfig` , `product.parent.translation.slotConfig` ) as `product.slotConfig` , `product.translation.customFields` , `product.parent.translation.customFields` , COALESCE (`product.translation.customFields` , `product.parent.translation.customFields` ) as `product.customFields` FROM `product` LEFT JOIN `product` `product.parent` ON `product` . `parent_id` = `product.parent` . `id` AND `product` . `parent_version_id` = `product.parent` . `version_id` LEFT JOIN `product_manufacturer` `product.manufacturer` ON `product` . `manufacturer` = `product.manufacturer` . `id` AND IFNULL (`product` . `product_manufacturer_version_id` , `product.parent` . `product_manufacturer_version_id` ) = `product.manufacturer` . `version_id` LEFT JOIN `unit` `product.unit` ON `product` . `unit` = `product.unit` . `id` LEFT JOIN `delivery_time` `product.deliveryTime` ON `product` . `deliveryTime` = `product.deliveryTime` . `id` LEFT JOIN `product_media` `product.cover` ON `product` . `cover` = `product.cover` . `id` AND IFNULL (`product` . `product_media_version_id` , `product.parent` . `product_media_version_id` ) = `product.cover` . `version_id` LEFT JOIN `tax` `product.tax` ON `product` . `tax` = `product.tax` . `id` LEFT JOIN (SELECT `product.translation` . `product_id` , `product.translation` . `product_version_id` , `product.translation` . `meta_description` as `product.translation.metaDescription` , `product.translation` . `name` as `product.translation.name` , `product.translation` . `keywords` as `product.translation.keywords` , `product.translation` . `description` as `product.translation.description` , `product.translation` . `meta_title` as `product.translation.metaTitle` , `product.translation` . `pack_unit` as `product.translation.packUnit` , `product.translation` . `pack_unit_plural` as `product.translation.packUnitPlural` , `product.translation` . `custom_fields` as `product.translation.customFields` , `product.translation` . `slot_config` as `product.translation.slotConfig` , `product.translation` . `custom_search_keywords` as `product.translation.customSearchKeywords` FROM `product_translation` `product.translation` WHERE `product.translation` . `language_id` = ? ) `product.product_translation` ON `product.product_translation` . `product_id` = `product` . `id` AND `product.product_translation` . `product_version_id` = `product` . `version_id` LEFT JOIN (SELECT `product.parent.translation` . `product_id` , `product.parent.translation` . `product_version_id` , `product.parent.translation` . `meta_description` as `product.parent.translation.metaDescription` , `product.parent.translation` . `name` as `product.parent.translation.name` , `product.parent.translation` . `keywords` as `product.parent.translation.keywords` , `product.parent.translation` . `description` as `product.parent.translation.description` , `product.parent.translation` . `meta_title` as `product.parent.translation.metaTitle` , `product.parent.translation` . `pack_unit` as `product.parent.translation.packUnit` , `product.parent.translation` . `pack_unit_plural` as `product.parent.translation.packUnitPlural` , `product.parent.translation` . `custom_fields` as `product.parent.translation.customFields` , `product.parent.translation` . `slot_config` as `product.parent.translation.slotConfig` , `product.parent.translation` . `custom_search_keywords` as `product.parent.translation.customSearchKeywords` FROM `product_translation` `product.parent.translation` WHERE `product.parent.translation` . `language_id` = ? ) `product.parent.product_translation` ON `product.parent.product_translation` . `product_id` = `product.parent` . `id` AND `product.parent.product_translation` . `product_version_id` = `product.parent` . `version_id` LEFT JOIN (SELECT `product.manufacturer.translation` . `product_manufacturer_id` , `product.manufacturer.translation` . `product_manufacturer_version_id` , `product.manufacturer.translation` . `name` as `product.manufacturer.translation.name` , `product.manufacturer.translation` . `description` as `product.manufacturer.translation.description` , `product.manufacturer.translation` . `custom_fields` as `product.manufacturer.translation.customFields` FROM `product_manufacturer_translation` `product.manufacturer.translation` WHERE `product.manufacturer.translation` . `language_id` = ? ) `product.manufacturer.product_manufacturer_translation` ON `product.manufacturer.product_manufacturer_translation` . `product_manufacturer_id` = `product.manufacturer` . `id` AND `product.manufacturer.product_manufacturer_translation` . `product_manufacturer_version_id` = `product.manufacturer` . `version_id` LEFT JOIN (SELECT `product.unit.translation` . `unit_id` , `product.unit.translation` . `short_code` as `product.unit.translation.shortCode` , `product.unit.translation` . `name` as `product.unit.translation.name` , `product.unit.translation` . `custom_fields` as `product.unit.translation.customFields` FROM `unit_translation` `product.unit.translation` WHERE `product.unit.translation` . `language_id` = ? ) `product.unit.unit_translation` ON `product.unit.unit_translation` . `unit_id` = `product.unit` . `id` LEFT JOIN (SELECT `product.deliveryTime.translation` . `delivery_time_id` , `product.deliveryTime.translation` . `name` as `product.deliveryTime.translation.name` , `product.deliveryTime.translation` . `custom_fields` as `product.deliveryTime.translation.customFields` FROM `delivery_time_translation` `product.deliveryTime.translation` WHERE `product.deliveryTime.translation` . `language_id` = ? ) `product.deliveryTime.delivery_time_translation` ON `product.deliveryTime.delivery_time_translation` . `delivery_time_id` = `product.deliveryTime` . `id` LEFT JOIN `media` `product.cover.media` ON `product.cover` . `media_id` = `product.cover.media` . `id` LEFT JOIN (SELECT `product.cover.media.translation` . `media_id` , `product.cover.media.translation` . `alt` as `product.cover.media.translation.alt` , `product.cover.media.translation` . `title` as `product.cover.media.translation.title` , `product.cover.media.translation` . `custom_fields` as `product.cover.media.translation.customFields` FROM `media_translation` `product.cover.media.translation` WHERE `product.cover.media.translation` . `language_id` = ? ) `product.cover.media.media_translation` ON `product.cover.media.media_translation` . `media_id` = `product.cover.media` . `id` WHERE (`product` . `version_id` = ? ) AND (`product` . `id` IN (? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? ))
Parameters :
[
b"\x02 0¨(çñA —O®8ͬÞÛ "
b"\x02 0¨(çñA —O®8ͬÞÛ "
b"\x02 0¨(çñA —O®8ͬÞÛ "
b"\x02 0¨(çñA —O®8ͬÞÛ "
b"\x02 0¨(çñA —O®8ͬÞÛ "
b"\x02 0¨(çñA —O®8ͬÞÛ "
b"\x0F ©\x1C ãéjK¾KÙÎu,4% "
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01 b5\x11 h "
b"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01 x3\x08 — "
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01 3a\x07 6 "
b"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01 d&ƒ3 "
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01 5g\x14 u "
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01 F\t\x11 v "
b"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01 FS\x15 ‘ "
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01 `3YB "
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01 `\x14 u" "
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01 Hw@V "
b"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01 YüU\x00 "
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01 3V\x10 S "
b"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01 Y—\x04 “ "
b"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01 q™X\x18 "
b"á=°3±9E(‘VÒ"…£ƒ\x06 "
b"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01 4”–\x07 "
b"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01 $\x04 7ü "
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01 #ds\x01 "
b"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01 iqB˜ "
b"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01 f\x03\x07 … "
b"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01 #dq” "
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01 r\x01 !8 "
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01 p\x11 &" "
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01 f\x03\x07\x15 "
]
SELECT
`product` . `id` as `product.id` ,
`product` . `version_id` as `product.versionId` ,
`product` . `parent_id` as `product.parentId` ,
`product` . `parent_version_id` as `product.parentVersionId` ,
COALESCE (
`product` . `product_manufacturer_id` ,
`product.parent` . `product_manufacturer_id`
) as `product.manufacturerId` ,
COALESCE (
`product` . `product_manufacturer_version_id` ,
`product.parent` . `product_manufacturer_version_id`
) as `product.productManufacturerVersionId` ,
COALESCE (
`product` . `unit_id` , `product.parent` . `unit_id`
) as `product.unitId` ,
COALESCE (
`product` . `tax_id` , `product.parent` . `tax_id`
) as `product.taxId` ,
COALESCE (
`product` . `product_media_id` , `product.parent` . `product_media_id`
) as `product.coverId` ,
COALESCE (
`product` . `product_media_version_id` ,
`product.parent` . `product_media_version_id`
) as `product.productMediaVersionId` ,
COALESCE (
`product` . `delivery_time_id` , `product.parent` . `delivery_time_id`
) as `product.deliveryTimeId` ,
COALESCE (
`product` . `product_feature_set_id` ,
`product.parent` . `product_feature_set_id`
) as `product.featureSetId` ,
COALESCE (
`product` . `canonical_product_id` ,
`product.parent` . `canonical_product_id`
) as `product.canonicalProductId` ,
COALESCE (
`product` . `canonical_product_version_id` ,
`product.parent` . `canonical_product_version_id`
) as `product.canonicalProductVersionId` ,
COALESCE (
`product` . `cms_page_id` , `product.parent` . `cms_page_id`
) as `product.cmsPageId` ,
COALESCE (
`product` . `cms_page_version_id` ,
`product.parent` . `cms_page_version_id`
) as `product.cmsPageVersionId` ,
`product.parent` . `price` as `product.price.inherited` ,
COALESCE (
`product` . `price` , `product.parent` . `price`
) as `product.price` ,
`product` . `product_number` as `product.productNumber` ,
COALESCE (
`product` . `restock_time` , `product.parent` . `restock_time`
) as `product.restockTime` ,
`product` . `auto_increment` as `product.autoIncrement` ,
COALESCE (
`product` . `active` , `product.parent` . `active`
) as `product.active` ,
`product` . `available` as `product.available` ,
COALESCE (
`product` . `is_closeout` , `product.parent` . `is_closeout`
) as `product.isCloseout` ,
`product` . `available_stock` as `product.availableStock` ,
`product` . `stock` as `product.stock` ,
`product` . `display_group` as `product.displayGroup` ,
`product.parent` . `variant_listing_config` as `product.variantListingConfig.inherited` ,
COALESCE (
`product` . `variant_listing_config` ,
`product.parent` . `variant_listing_config`
) as `product.variantListingConfig` ,
`product` . `variant_restrictions` as `product.variantRestrictions` ,
COALESCE (
`product` . `manufacturer_number` ,
`product.parent` . `manufacturer_number`
) as `product.manufacturerNumber` ,
COALESCE (
`product` . `ean` , `product.parent` . `ean`
) as `product.ean` ,
COALESCE (
`product` . `purchase_steps` , `product.parent` . `purchase_steps`
) as `product.purchaseSteps` ,
COALESCE (
`product` . `max_purchase` , `product.parent` . `max_purchase`
) as `product.maxPurchase` ,
COALESCE (
`product` . `min_purchase` , `product.parent` . `min_purchase`
) as `product.minPurchase` ,
COALESCE (
`product` . `purchase_unit` , `product.parent` . `purchase_unit`
) as `product.purchaseUnit` ,
COALESCE (
`product` . `reference_unit` , `product.parent` . `reference_unit`
) as `product.referenceUnit` ,
COALESCE (
`product` . `shipping_free` , `product.parent` . `shipping_free`
) as `product.shippingFree` ,
`product.parent` . `purchase_prices` as `product.purchasePrices.inherited` ,
COALESCE (
`product` . `purchase_prices` , `product.parent` . `purchase_prices`
) as `product.purchasePrices` ,
COALESCE (
`product` . `mark_as_topseller` , `product.parent` . `mark_as_topseller`
) as `product.markAsTopseller` ,
COALESCE (
`product` . `weight` , `product.parent` . `weight`
) as `product.weight` ,
COALESCE (
`product` . `width` , `product.parent` . `width`
) as `product.width` ,
COALESCE (
`product` . `height` , `product.parent` . `height`
) as `product.height` ,
COALESCE (
`product` . `length` , `product.parent` . `length`
) as `product.length` ,
COALESCE (
`product` . `release_date` , `product.parent` . `release_date`
) as `product.releaseDate` ,
COALESCE (
`product` . `rating_average` , `product.parent` . `rating_average`
) as `product.ratingAverage` ,
`product.parent` . `category_tree` as `product.categoryTree.inherited` ,
COALESCE (
`product` . `category_tree` , `product.parent` . `category_tree`
) as `product.categoryTree` ,
`product.parent` . `property_ids` as `product.propertyIds.inherited` ,
COALESCE (
`product` . `property_ids` , `product.parent` . `property_ids`
) as `product.propertyIds` ,
`product.parent` . `option_ids` as `product.optionIds.inherited` ,
COALESCE (
`product` . `option_ids` , `product.parent` . `option_ids`
) as `product.optionIds` ,
`product.parent` . `stream_ids` as `product.streamIds.inherited` ,
COALESCE (
`product` . `stream_ids` , `product.parent` . `stream_ids`
) as `product.streamIds` ,
`product.parent` . `tag_ids` as `product.tagIds.inherited` ,
COALESCE (
`product` . `tag_ids` , `product.parent` . `tag_ids`
) as `product.tagIds` ,
`product.parent` . `category_ids` as `product.categoryIds.inherited` ,
COALESCE (
`product` . `category_ids` , `product.parent` . `category_ids`
) as `product.categoryIds` ,
`product` . `child_count` as `product.childCount` ,
COALESCE (
`product` . `custom_field_set_selection_active` ,
`product.parent` . `custom_field_set_selection_active`
) as `product.customFieldSetSelectionActive` ,
`product` . `sales` as `product.sales` ,
`product` . `states` as `product.states` ,
`product.parent` . `cheapest_price` as `product.cheapestPrice.inherited` ,
COALESCE (
`product` . `cheapest_price` , `product.parent` . `cheapest_price`
) as `product.cheapestPrice` ,
`product` . `created_at` as `product.createdAt` ,
`product` . `updated_at` as `product.updatedAt` ,
`product.manufacturer` . `id` as `product.manufacturer.id` ,
`product.manufacturer` . `version_id` as `product.manufacturer.versionId` ,
`product.manufacturer` . `media_id` as `product.manufacturer.mediaId` ,
`product.manufacturer` . `link` as `product.manufacturer.link` ,
`product.manufacturer` . `created_at` as `product.manufacturer.createdAt` ,
`product.manufacturer` . `updated_at` as `product.manufacturer.updatedAt` ,
`product.manufacturer.translation.name` ,
`product.manufacturer.translation.name` as `product.manufacturer.name` ,
`product.manufacturer.translation.description` ,
`product.manufacturer.translation.description` as `product.manufacturer.description` ,
`product.manufacturer.translation.customFields` ,
`product.manufacturer.translation.customFields` as `product.manufacturer.customFields` ,
(
SELECT
GROUP_CONCAT (
HEX (
`product.options.mapping` . `property_group_option_id`
) SEPARATOR '||'
)
FROM
`product_option` `product.options.mapping`
WHERE
`product.options.mapping` . `product_id` = `product` . `id`
) as `product.options.id_mapping` ,
`product.unit` . `id` as `product.unit.id` ,
`product.unit` . `created_at` as `product.unit.createdAt` ,
`product.unit` . `updated_at` as `product.unit.updatedAt` ,
`product.unit.translation.shortCode` ,
`product.unit.translation.shortCode` as `product.unit.shortCode` ,
`product.unit.translation.name` ,
`product.unit.translation.name` as `product.unit.name` ,
`product.unit.translation.customFields` ,
`product.unit.translation.customFields` as `product.unit.customFields` ,
`product.deliveryTime` . `id` as `product.deliveryTime.id` ,
`product.deliveryTime` . `min` as `product.deliveryTime.min` ,
`product.deliveryTime` . `max` as `product.deliveryTime.max` ,
`product.deliveryTime` . `unit` as `product.deliveryTime.unit` ,
`product.deliveryTime` . `created_at` as `product.deliveryTime.createdAt` ,
`product.deliveryTime` . `updated_at` as `product.deliveryTime.updatedAt` ,
`product.deliveryTime.translation.name` ,
`product.deliveryTime.translation.name` as `product.deliveryTime.name` ,
`product.deliveryTime.translation.customFields` ,
`product.deliveryTime.translation.customFields` as `product.deliveryTime.customFields` ,
`product.cover` . `id` as `product.cover.id` ,
`product.cover` . `version_id` as `product.cover.versionId` ,
`product.cover` . `product_id` as `product.cover.productId` ,
`product.cover` . `product_version_id` as `product.cover.productVersionId` ,
`product.cover` . `media_id` as `product.cover.mediaId` ,
`product.cover` . `position` as `product.cover.position` ,
`product.cover` . `custom_fields` as `product.cover.customFields` ,
`product.cover` . `created_at` as `product.cover.createdAt` ,
`product.cover` . `updated_at` as `product.cover.updatedAt` ,
`product.cover.media` . `id` as `product.cover.media.id` ,
`product.cover.media` . `user_id` as `product.cover.media.userId` ,
`product.cover.media` . `media_folder_id` as `product.cover.media.mediaFolderId` ,
`product.cover.media` . `mime_type` as `product.cover.media.mimeType` ,
`product.cover.media` . `file_extension` as `product.cover.media.fileExtension` ,
`product.cover.media` . `uploaded_at` as `product.cover.media.uploadedAt` ,
`product.cover.media` . `file_name` as `product.cover.media.fileName` ,
`product.cover.media` . `file_size` as `product.cover.media.fileSize` ,
`product.cover.media` . `media_type` as `product.cover.media.mediaTypeRaw` ,
`product.cover.media` . `meta_data` as `product.cover.media.metaData` ,
`product.cover.media` . `config` as `product.cover.media.config` ,
`product.cover.media` . `path` as `product.cover.media.path` ,
`product.cover.media` . `private` as `product.cover.media.private` ,
`product.cover.media` . `thumbnails_ro` as `product.cover.media.thumbnailsRo` ,
`product.cover.media` . `file_hash` as `product.cover.media.fileHash` ,
`product.cover.media` . `created_at` as `product.cover.media.createdAt` ,
`product.cover.media` . `updated_at` as `product.cover.media.updatedAt` ,
`product.cover.media.translation.title` ,
`product.cover.media.translation.title` as `product.cover.media.title` ,
`product.cover.media.translation.alt` ,
`product.cover.media.translation.alt` as `product.cover.media.alt` ,
`product.cover.media.translation.customFields` ,
`product.cover.media.translation.customFields` as `product.cover.media.customFields` ,
`product.tax` . `id` as `product.tax.id` ,
`product.tax` . `tax_rate` as `product.tax.taxRate` ,
`product.tax` . `name` as `product.tax.name` ,
`product.tax` . `position` as `product.tax.position` ,
`product.tax` . `custom_fields` as `product.tax.customFields` ,
`product.tax` . `created_at` as `product.tax.createdAt` ,
`product.tax` . `updated_at` as `product.tax.updatedAt` ,
`product.translation.metaDescription` ,
`product.parent.translation.metaDescription` ,
COALESCE (
`product.translation.metaDescription` ,
`product.parent.translation.metaDescription`
) as `product.metaDescription` ,
`product.translation.name` ,
`product.parent.translation.name` ,
COALESCE (
`product.translation.name` , `product.parent.translation.name`
) as `product.name` ,
`product.translation.keywords` ,
`product.parent.translation.keywords` ,
COALESCE (
`product.translation.keywords` ,
`product.parent.translation.keywords`
) as `product.keywords` ,
`product.translation.description` ,
`product.parent.translation.description` ,
COALESCE (
`product.translation.description` ,
`product.parent.translation.description`
) as `product.description` ,
`product.translation.metaTitle` ,
`product.parent.translation.metaTitle` ,
COALESCE (
`product.translation.metaTitle` ,
`product.parent.translation.metaTitle`
) as `product.metaTitle` ,
`product.translation.packUnit` ,
`product.parent.translation.packUnit` ,
COALESCE (
`product.translation.packUnit` ,
`product.parent.translation.packUnit`
) as `product.packUnit` ,
`product.translation.packUnitPlural` ,
`product.parent.translation.packUnitPlural` ,
COALESCE (
`product.translation.packUnitPlural` ,
`product.parent.translation.packUnitPlural`
) as `product.packUnitPlural` ,
`product.translation.customSearchKeywords` ,
`product.parent.translation.customSearchKeywords` ,
COALESCE (
`product.translation.customSearchKeywords` ,
`product.parent.translation.customSearchKeywords`
) as `product.customSearchKeywords` ,
`product.translation.slotConfig` ,
`product.parent.translation.slotConfig` ,
COALESCE (
`product.translation.slotConfig` ,
`product.parent.translation.slotConfig`
) as `product.slotConfig` ,
`product.translation.customFields` ,
`product.parent.translation.customFields` ,
COALESCE (
`product.translation.customFields` ,
`product.parent.translation.customFields`
) as `product.customFields`
FROM
`product`
LEFT JOIN `product` `product.parent` ON `product` . `parent_id` = `product.parent` . `id`
AND `product` . `parent_version_id` = `product.parent` . `version_id`
LEFT JOIN `product_manufacturer` `product.manufacturer` ON `product` . `manufacturer` = `product.manufacturer` . `id`
AND IFNULL (
`product` . `product_manufacturer_version_id` ,
`product.parent` . `product_manufacturer_version_id`
) = `product.manufacturer` . `version_id`
LEFT JOIN `unit` `product.unit` ON `product` . `unit` = `product.unit` . `id`
LEFT JOIN `delivery_time` `product.deliveryTime` ON `product` . `deliveryTime` = `product.deliveryTime` . `id`
LEFT JOIN `product_media` `product.cover` ON `product` . `cover` = `product.cover` . `id`
AND IFNULL (
`product` . `product_media_version_id` ,
`product.parent` . `product_media_version_id`
) = `product.cover` . `version_id`
LEFT JOIN `tax` `product.tax` ON `product` . `tax` = `product.tax` . `id`
LEFT JOIN (
SELECT
`product.translation` . `product_id` ,
`product.translation` . `product_version_id` ,
`product.translation` . `meta_description` as `product.translation.metaDescription` ,
`product.translation` . `name` as `product.translation.name` ,
`product.translation` . `keywords` as `product.translation.keywords` ,
`product.translation` . `description` as `product.translation.description` ,
`product.translation` . `meta_title` as `product.translation.metaTitle` ,
`product.translation` . `pack_unit` as `product.translation.packUnit` ,
`product.translation` . `pack_unit_plural` as `product.translation.packUnitPlural` ,
`product.translation` . `custom_fields` as `product.translation.customFields` ,
`product.translation` . `slot_config` as `product.translation.slotConfig` ,
`product.translation` . `custom_search_keywords` as `product.translation.customSearchKeywords`
FROM
`product_translation` `product.translation`
WHERE
`product.translation` . `language_id` = ?
) `product.product_translation` ON `product.product_translation` . `product_id` = `product` . `id`
AND `product.product_translation` . `product_version_id` = `product` . `version_id`
LEFT JOIN (
SELECT
`product.parent.translation` . `product_id` ,
`product.parent.translation` . `product_version_id` ,
`product.parent.translation` . `meta_description` as `product.parent.translation.metaDescription` ,
`product.parent.translation` . `name` as `product.parent.translation.name` ,
`product.parent.translation` . `keywords` as `product.parent.translation.keywords` ,
`product.parent.translation` . `description` as `product.parent.translation.description` ,
`product.parent.translation` . `meta_title` as `product.parent.translation.metaTitle` ,
`product.parent.translation` . `pack_unit` as `product.parent.translation.packUnit` ,
`product.parent.translation` . `pack_unit_plural` as `product.parent.translation.packUnitPlural` ,
`product.parent.translation` . `custom_fields` as `product.parent.translation.customFields` ,
`product.parent.translation` . `slot_config` as `product.parent.translation.slotConfig` ,
`product.parent.translation` . `custom_search_keywords` as `product.parent.translation.customSearchKeywords`
FROM
`product_translation` `product.parent.translation`
WHERE
`product.parent.translation` . `language_id` = ?
) `product.parent.product_translation` ON `product.parent.product_translation` . `product_id` = `product.parent` . `id`
AND `product.parent.product_translation` . `product_version_id` = `product.parent` . `version_id`
LEFT JOIN (
SELECT
`product.manufacturer.translation` . `product_manufacturer_id` ,
`product.manufacturer.translation` . `product_manufacturer_version_id` ,
`product.manufacturer.translation` . `name` as `product.manufacturer.translation.name` ,
`product.manufacturer.translation` . `description` as `product.manufacturer.translation.description` ,
`product.manufacturer.translation` . `custom_fields` as `product.manufacturer.translation.customFields`
FROM
`product_manufacturer_translation` `product.manufacturer.translation`
WHERE
`product.manufacturer.translation` . `language_id` = ?
) `product.manufacturer.product_manufacturer_translation` ON `product.manufacturer.product_manufacturer_translation` . `product_manufacturer_id` = `product.manufacturer` . `id`
AND `product.manufacturer.product_manufacturer_translation` . `product_manufacturer_version_id` = `product.manufacturer` . `version_id`
LEFT JOIN (
SELECT
`product.unit.translation` . `unit_id` ,
`product.unit.translation` . `short_code` as `product.unit.translation.shortCode` ,
`product.unit.translation` . `name` as `product.unit.translation.name` ,
`product.unit.translation` . `custom_fields` as `product.unit.translation.customFields`
FROM
`unit_translation` `product.unit.translation`
WHERE
`product.unit.translation` . `language_id` = ?
) `product.unit.unit_translation` ON `product.unit.unit_translation` . `unit_id` = `product.unit` . `id`
LEFT JOIN (
SELECT
`product.deliveryTime.translation` . `delivery_time_id` ,
`product.deliveryTime.translation` . `name` as `product.deliveryTime.translation.name` ,
`product.deliveryTime.translation` . `custom_fields` as `product.deliveryTime.translation.customFields`
FROM
`delivery_time_translation` `product.deliveryTime.translation`
WHERE
`product.deliveryTime.translation` . `language_id` = ?
) `product.deliveryTime.delivery_time_translation` ON `product.deliveryTime.delivery_time_translation` . `delivery_time_id` = `product.deliveryTime` . `id`
LEFT JOIN `media` `product.cover.media` ON `product.cover` . `media_id` = `product.cover.media` . `id`
LEFT JOIN (
SELECT
`product.cover.media.translation` . `media_id` ,
`product.cover.media.translation` . `alt` as `product.cover.media.translation.alt` ,
`product.cover.media.translation` . `title` as `product.cover.media.translation.title` ,
`product.cover.media.translation` . `custom_fields` as `product.cover.media.translation.customFields`
FROM
`media_translation` `product.cover.media.translation`
WHERE
`product.cover.media.translation` . `language_id` = ?
) `product.cover.media.media_translation` ON `product.cover.media.media_translation` . `media_id` = `product.cover.media` . `id`
WHERE
(`product` . `version_id` = ? )
AND (
`product` . `id` IN (
? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? ,
? , ? , ? , ? , ? , ? , ? , ?
)
)
Copy
SELECT `product` . `id` as `product.id` , `product` . `version_id` as `product.versionId` , `product` . `parent_id` as `product.parentId` , `product` . `parent_version_id` as `product.parentVersionId` , COALESCE (`product` . `product_manufacturer_id` , `product.parent` . `product_manufacturer_id` ) as `product.manufacturerId` , COALESCE (`product` . `product_manufacturer_version_id` , `product.parent` . `product_manufacturer_version_id` ) as `product.productManufacturerVersionId` , COALESCE (`product` . `unit_id` , `product.parent` . `unit_id` ) as `product.unitId` , COALESCE (`product` . `tax_id` , `product.parent` . `tax_id` ) as `product.taxId` , COALESCE (`product` . `product_media_id` , `product.parent` . `product_media_id` ) as `product.coverId` , COALESCE (`product` . `product_media_version_id` , `product.parent` . `product_media_version_id` ) as `product.productMediaVersionId` , COALESCE (`product` . `delivery_time_id` , `product.parent` . `delivery_time_id` ) as `product.deliveryTimeId` , COALESCE (`product` . `product_feature_set_id` , `product.parent` . `product_feature_set_id` ) as `product.featureSetId` , COALESCE (`product` . `canonical_product_id` , `product.parent` . `canonical_product_id` ) as `product.canonicalProductId` , COALESCE (`product` . `canonical_product_version_id` , `product.parent` . `canonical_product_version_id` ) as `product.canonicalProductVersionId` , COALESCE (`product` . `cms_page_id` , `product.parent` . `cms_page_id` ) as `product.cmsPageId` , COALESCE (`product` . `cms_page_version_id` , `product.parent` . `cms_page_version_id` ) as `product.cmsPageVersionId` , `product.parent` . `price` as `product.price.inherited` , COALESCE (`product` . `price` , `product.parent` . `price` ) as `product.price` , `product` . `product_number` as `product.productNumber` , COALESCE (`product` . `restock_time` , `product.parent` . `restock_time` ) as `product.restockTime` , `product` . `auto_increment` as `product.autoIncrement` , COALESCE (`product` . `active` , `product.parent` . `active` ) as `product.active` , `product` . `available` as `product.available` , COALESCE (`product` . `is_closeout` , `product.parent` . `is_closeout` ) as `product.isCloseout` , `product` . `available_stock` as `product.availableStock` , `product` . `stock` as `product.stock` , `product` . `display_group` as `product.displayGroup` , `product.parent` . `variant_listing_config` as `product.variantListingConfig.inherited` , COALESCE (`product` . `variant_listing_config` , `product.parent` . `variant_listing_config` ) as `product.variantListingConfig` , `product` . `variant_restrictions` as `product.variantRestrictions` , COALESCE (`product` . `manufacturer_number` , `product.parent` . `manufacturer_number` ) as `product.manufacturerNumber` , COALESCE (`product` . `ean` , `product.parent` . `ean` ) as `product.ean` , COALESCE (`product` . `purchase_steps` , `product.parent` . `purchase_steps` ) as `product.purchaseSteps` , COALESCE (`product` . `max_purchase` , `product.parent` . `max_purchase` ) as `product.maxPurchase` , COALESCE (`product` . `min_purchase` , `product.parent` . `min_purchase` ) as `product.minPurchase` , COALESCE (`product` . `purchase_unit` , `product.parent` . `purchase_unit` ) as `product.purchaseUnit` , COALESCE (`product` . `reference_unit` , `product.parent` . `reference_unit` ) as `product.referenceUnit` , COALESCE (`product` . `shipping_free` , `product.parent` . `shipping_free` ) as `product.shippingFree` , `product.parent` . `purchase_prices` as `product.purchasePrices.inherited` , COALESCE (`product` . `purchase_prices` , `product.parent` . `purchase_prices` ) as `product.purchasePrices` , COALESCE (`product` . `mark_as_topseller` , `product.parent` . `mark_as_topseller` ) as `product.markAsTopseller` , COALESCE (`product` . `weight` , `product.parent` . `weight` ) as `product.weight` , COALESCE (`product` . `width` , `product.parent` . `width` ) as `product.width` , COALESCE (`product` . `height` , `product.parent` . `height` ) as `product.height` , COALESCE (`product` . `length` , `product.parent` . `length` ) as `product.length` , COALESCE (`product` . `release_date` , `product.parent` . `release_date` ) as `product.releaseDate` , COALESCE (`product` . `rating_average` , `product.parent` . `rating_average` ) as `product.ratingAverage` , `product.parent` . `category_tree` as `product.categoryTree.inherited` , COALESCE (`product` . `category_tree` , `product.parent` . `category_tree` ) as `product.categoryTree` , `product.parent` . `property_ids` as `product.propertyIds.inherited` , COALESCE (`product` . `property_ids` , `product.parent` . `property_ids` ) as `product.propertyIds` , `product.parent` . `option_ids` as `product.optionIds.inherited` , COALESCE (`product` . `option_ids` , `product.parent` . `option_ids` ) as `product.optionIds` , `product.parent` . `stream_ids` as `product.streamIds.inherited` , COALESCE (`product` . `stream_ids` , `product.parent` . `stream_ids` ) as `product.streamIds` , `product.parent` . `tag_ids` as `product.tagIds.inherited` , COALESCE (`product` . `tag_ids` , `product.parent` . `tag_ids` ) as `product.tagIds` , `product.parent` . `category_ids` as `product.categoryIds.inherited` , COALESCE (`product` . `category_ids` , `product.parent` . `category_ids` ) as `product.categoryIds` , `product` . `child_count` as `product.childCount` , COALESCE (`product` . `custom_field_set_selection_active` , `product.parent` . `custom_field_set_selection_active` ) as `product.customFieldSetSelectionActive` , `product` . `sales` as `product.sales` , `product` . `states` as `product.states` , `product.parent` . `cheapest_price` as `product.cheapestPrice.inherited` , COALESCE (`product` . `cheapest_price` , `product.parent` . `cheapest_price` ) as `product.cheapestPrice` , `product` . `created_at` as `product.createdAt` , `product` . `updated_at` as `product.updatedAt` , `product.manufacturer` . `id` as `product.manufacturer.id` , `product.manufacturer` . `version_id` as `product.manufacturer.versionId` , `product.manufacturer` . `media_id` as `product.manufacturer.mediaId` , `product.manufacturer` . `link` as `product.manufacturer.link` , `product.manufacturer` . `created_at` as `product.manufacturer.createdAt` , `product.manufacturer` . `updated_at` as `product.manufacturer.updatedAt` , `product.manufacturer.translation.name` , `product.manufacturer.translation.name` as `product.manufacturer.name` , `product.manufacturer.translation.description` , `product.manufacturer.translation.description` as `product.manufacturer.description` , `product.manufacturer.translation.customFields` , `product.manufacturer.translation.customFields` as `product.manufacturer.customFields` , (SELECT GROUP_CONCAT (HEX (`product.options.mapping` . `property_group_option_id` ) SEPARATOR '||' )
FROM `product_option` `product.options.mapping`
WHERE `product.options.mapping` . `product_id` = `product` . `id` ) as `product.options.id_mapping` , `product.unit` . `id` as `product.unit.id` , `product.unit` . `created_at` as `product.unit.createdAt` , `product.unit` . `updated_at` as `product.unit.updatedAt` , `product.unit.translation.shortCode` , `product.unit.translation.shortCode` as `product.unit.shortCode` , `product.unit.translation.name` , `product.unit.translation.name` as `product.unit.name` , `product.unit.translation.customFields` , `product.unit.translation.customFields` as `product.unit.customFields` , `product.deliveryTime` . `id` as `product.deliveryTime.id` , `product.deliveryTime` . `min` as `product.deliveryTime.min` , `product.deliveryTime` . `max` as `product.deliveryTime.max` , `product.deliveryTime` . `unit` as `product.deliveryTime.unit` , `product.deliveryTime` . `created_at` as `product.deliveryTime.createdAt` , `product.deliveryTime` . `updated_at` as `product.deliveryTime.updatedAt` , `product.deliveryTime.translation.name` , `product.deliveryTime.translation.name` as `product.deliveryTime.name` , `product.deliveryTime.translation.customFields` , `product.deliveryTime.translation.customFields` as `product.deliveryTime.customFields` , `product.cover` . `id` as `product.cover.id` , `product.cover` . `version_id` as `product.cover.versionId` , `product.cover` . `product_id` as `product.cover.productId` , `product.cover` . `product_version_id` as `product.cover.productVersionId` , `product.cover` . `media_id` as `product.cover.mediaId` , `product.cover` . `position` as `product.cover.position` , `product.cover` . `custom_fields` as `product.cover.customFields` , `product.cover` . `created_at` as `product.cover.createdAt` , `product.cover` . `updated_at` as `product.cover.updatedAt` , `product.cover.media` . `id` as `product.cover.media.id` , `product.cover.media` . `user_id` as `product.cover.media.userId` , `product.cover.media` . `media_folder_id` as `product.cover.media.mediaFolderId` , `product.cover.media` . `mime_type` as `product.cover.media.mimeType` , `product.cover.media` . `file_extension` as `product.cover.media.fileExtension` , `product.cover.media` . `uploaded_at` as `product.cover.media.uploadedAt` , `product.cover.media` . `file_name` as `product.cover.media.fileName` , `product.cover.media` . `file_size` as `product.cover.media.fileSize` , `product.cover.media` . `media_type` as `product.cover.media.mediaTypeRaw` , `product.cover.media` . `meta_data` as `product.cover.media.metaData` , `product.cover.media` . `config` as `product.cover.media.config` , `product.cover.media` . `path` as `product.cover.media.path` , `product.cover.media` . `private` as `product.cover.media.private` , `product.cover.media` . `thumbnails_ro` as `product.cover.media.thumbnailsRo` , `product.cover.media` . `file_hash` as `product.cover.media.fileHash` , `product.cover.media` . `created_at` as `product.cover.media.createdAt` , `product.cover.media` . `updated_at` as `product.cover.media.updatedAt` , `product.cover.media.translation.title` , `product.cover.media.translation.title` as `product.cover.media.title` , `product.cover.media.translation.alt` , `product.cover.media.translation.alt` as `product.cover.media.alt` , `product.cover.media.translation.customFields` , `product.cover.media.translation.customFields` as `product.cover.media.customFields` , `product.tax` . `id` as `product.tax.id` , `product.tax` . `tax_rate` as `product.tax.taxRate` , `product.tax` . `name` as `product.tax.name` , `product.tax` . `position` as `product.tax.position` , `product.tax` . `custom_fields` as `product.tax.customFields` , `product.tax` . `created_at` as `product.tax.createdAt` , `product.tax` . `updated_at` as `product.tax.updatedAt` , `product.translation.metaDescription` , `product.parent.translation.metaDescription` , COALESCE (`product.translation.metaDescription` , `product.parent.translation.metaDescription` ) as `product.metaDescription` , `product.translation.name` , `product.parent.translation.name` , COALESCE (`product.translation.name` , `product.parent.translation.name` ) as `product.name` , `product.translation.keywords` , `product.parent.translation.keywords` , COALESCE (`product.translation.keywords` , `product.parent.translation.keywords` ) as `product.keywords` , `product.translation.description` , `product.parent.translation.description` , COALESCE (`product.translation.description` , `product.parent.translation.description` ) as `product.description` , `product.translation.metaTitle` , `product.parent.translation.metaTitle` , COALESCE (`product.translation.metaTitle` , `product.parent.translation.metaTitle` ) as `product.metaTitle` , `product.translation.packUnit` , `product.parent.translation.packUnit` , COALESCE (`product.translation.packUnit` , `product.parent.translation.packUnit` ) as `product.packUnit` , `product.translation.packUnitPlural` , `product.parent.translation.packUnitPlural` , COALESCE (`product.translation.packUnitPlural` , `product.parent.translation.packUnitPlural` ) as `product.packUnitPlural` , `product.translation.customSearchKeywords` , `product.parent.translation.customSearchKeywords` , COALESCE (`product.translation.customSearchKeywords` , `product.parent.translation.customSearchKeywords` ) as `product.customSearchKeywords` , `product.translation.slotConfig` , `product.parent.translation.slotConfig` , COALESCE (`product.translation.slotConfig` , `product.parent.translation.slotConfig` ) as `product.slotConfig` , `product.translation.customFields` , `product.parent.translation.customFields` , COALESCE (`product.translation.customFields` , `product.parent.translation.customFields` ) as `product.customFields` FROM `product` LEFT JOIN `product` `product.parent` ON `product` . `parent_id` = `product.parent` . `id` AND `product` . `parent_version_id` = `product.parent` . `version_id` LEFT JOIN `product_manufacturer` `product.manufacturer` ON `product` . `manufacturer` = `product.manufacturer` . `id` AND IFNULL (`product` . `product_manufacturer_version_id` , `product.parent` . `product_manufacturer_version_id` ) = `product.manufacturer` . `version_id` LEFT JOIN `unit` `product.unit` ON `product` . `unit` = `product.unit` . `id` LEFT JOIN `delivery_time` `product.deliveryTime` ON `product` . `deliveryTime` = `product.deliveryTime` . `id` LEFT JOIN `product_media` `product.cover` ON `product` . `cover` = `product.cover` . `id` AND IFNULL (`product` . `product_media_version_id` , `product.parent` . `product_media_version_id` ) = `product.cover` . `version_id` LEFT JOIN `tax` `product.tax` ON `product` . `tax` = `product.tax` . `id` LEFT JOIN (SELECT `product.translation` . `product_id` , `product.translation` . `product_version_id` , `product.translation` . `meta_description` as `product.translation.metaDescription` , `product.translation` . `name` as `product.translation.name` , `product.translation` . `keywords` as `product.translation.keywords` , `product.translation` . `description` as `product.translation.description` , `product.translation` . `meta_title` as `product.translation.metaTitle` , `product.translation` . `pack_unit` as `product.translation.packUnit` , `product.translation` . `pack_unit_plural` as `product.translation.packUnitPlural` , `product.translation` . `custom_fields` as `product.translation.customFields` , `product.translation` . `slot_config` as `product.translation.slotConfig` , `product.translation` . `custom_search_keywords` as `product.translation.customSearchKeywords` FROM `product_translation` `product.translation` WHERE `product.translation` . `language_id` = 0x0230A828E7F14120974FAE38CDACDEDB ) `product.product_translation` ON `product.product_translation` . `product_id` = `product` . `id` AND `product.product_translation` . `product_version_id` = `product` . `version_id` LEFT JOIN (SELECT `product.parent.translation` . `product_id` , `product.parent.translation` . `product_version_id` , `product.parent.translation` . `meta_description` as `product.parent.translation.metaDescription` , `product.parent.translation` . `name` as `product.parent.translation.name` , `product.parent.translation` . `keywords` as `product.parent.translation.keywords` , `product.parent.translation` . `description` as `product.parent.translation.description` , `product.parent.translation` . `meta_title` as `product.parent.translation.metaTitle` , `product.parent.translation` . `pack_unit` as `product.parent.translation.packUnit` , `product.parent.translation` . `pack_unit_plural` as `product.parent.translation.packUnitPlural` , `product.parent.translation` . `custom_fields` as `product.parent.translation.customFields` , `product.parent.translation` . `slot_config` as `product.parent.translation.slotConfig` , `product.parent.translation` . `custom_search_keywords` as `product.parent.translation.customSearchKeywords` FROM `product_translation` `product.parent.translation` WHERE `product.parent.translation` . `language_id` = 0x0230A828E7F14120974FAE38CDACDEDB ) `product.parent.product_translation` ON `product.parent.product_translation` . `product_id` = `product.parent` . `id` AND `product.parent.product_translation` . `product_version_id` = `product.parent` . `version_id` LEFT JOIN (SELECT `product.manufacturer.translation` . `product_manufacturer_id` , `product.manufacturer.translation` . `product_manufacturer_version_id` , `product.manufacturer.translation` . `name` as `product.manufacturer.translation.name` , `product.manufacturer.translation` . `description` as `product.manufacturer.translation.description` , `product.manufacturer.translation` . `custom_fields` as `product.manufacturer.translation.customFields` FROM `product_manufacturer_translation` `product.manufacturer.translation` WHERE `product.manufacturer.translation` . `language_id` = 0x0230A828E7F14120974FAE38CDACDEDB ) `product.manufacturer.product_manufacturer_translation` ON `product.manufacturer.product_manufacturer_translation` . `product_manufacturer_id` = `product.manufacturer` . `id` AND `product.manufacturer.product_manufacturer_translation` . `product_manufacturer_version_id` = `product.manufacturer` . `version_id` LEFT JOIN (SELECT `product.unit.translation` . `unit_id` , `product.unit.translation` . `short_code` as `product.unit.translation.shortCode` , `product.unit.translation` . `name` as `product.unit.translation.name` , `product.unit.translation` . `custom_fields` as `product.unit.translation.customFields` FROM `unit_translation` `product.unit.translation` WHERE `product.unit.translation` . `language_id` = 0x0230A828E7F14120974FAE38CDACDEDB ) `product.unit.unit_translation` ON `product.unit.unit_translation` . `unit_id` = `product.unit` . `id` LEFT JOIN (SELECT `product.deliveryTime.translation` . `delivery_time_id` , `product.deliveryTime.translation` . `name` as `product.deliveryTime.translation.name` , `product.deliveryTime.translation` . `custom_fields` as `product.deliveryTime.translation.customFields` FROM `delivery_time_translation` `product.deliveryTime.translation` WHERE `product.deliveryTime.translation` . `language_id` = 0x0230A828E7F14120974FAE38CDACDEDB ) `product.deliveryTime.delivery_time_translation` ON `product.deliveryTime.delivery_time_translation` . `delivery_time_id` = `product.deliveryTime` . `id` LEFT JOIN `media` `product.cover.media` ON `product.cover` . `media_id` = `product.cover.media` . `id` LEFT JOIN (SELECT `product.cover.media.translation` . `media_id` , `product.cover.media.translation` . `alt` as `product.cover.media.translation.alt` , `product.cover.media.translation` . `title` as `product.cover.media.translation.title` , `product.cover.media.translation` . `custom_fields` as `product.cover.media.translation.customFields` FROM `media_translation` `product.cover.media.translation` WHERE `product.cover.media.translation` . `language_id` = 0x0230A828E7F14120974FAE38CDACDEDB ) `product.cover.media.media_translation` ON `product.cover.media.media_translation` . `media_id` = `product.cover.media` . `id` WHERE (`product` . `version_id` = 0x0FA91CE3E96A4BC2BE4BD9CE752C3425 ) AND (`product` . `id` IN ('\0\0\0\0\0\0\0\0\0\0\0b5h' , 0x00000000000000000000000178330897 , '\0\0\0\0\0\0\0\0\0\0\03a6' , 0x00000000000000000000000164268333 , '\0\0\0\0\0\0\0\0\0\0\05gu' , '\0\0\0\0\0\0\0\0\0\0\0F v' , 0x00000000000000000000000146531591 , '\0\0\0\0\0\0\0\0\0\0\0`3YB' , '\0\0\0\0\0\0\0\0\0\0\0`u\"' , '\0\0\0\0\0\0\0\0\0\0\0Hw@V' , 0x00000000000000000000000159815500 , '\0\0\0\0\0\0\0\0\0\0\03VS' , 0x00000000000000000000000159970493 , 0x00000000000000000000000171995818 , 0xE13DB033B13945289156D22285A38306 , 0x00000000000000000000000134949607 , 0x00000000000000000000000124043781 , '\0\0\0\0\0\0\0\0\0\0\0#ds' , 0x00000000000000000000000169714298 , 0x00000000000000000000000166030785 , 0x00000000000000000000000123647194 , '\0\0\0\0\0\0\0\0\0\0\0r!8' , '\0\0\0\0\0\0\0\0\0\0\0p&\"' , '\0\0\0\0\0\0\0\0\0\0\0f' ));
Copy
58
1.27 ms
SELECT `property_group_option` . `id` as `property_group_option.id` , `property_group_option` . `property_group_id` as `property_group_option.groupId` , `property_group_option` . `color_hex_code` as `property_group_option.colorHexCode` , `property_group_option` . `media_id` as `property_group_option.mediaId` , `property_group_option` . `created_at` as `property_group_option.createdAt` , `property_group_option` . `updated_at` as `property_group_option.updatedAt` , `property_group_option.group` . `id` as `property_group_option.group.id` , `property_group_option.group` . `display_type` as `property_group_option.group.displayType` , `property_group_option.group` . `sorting_type` as `property_group_option.group.sortingType` , `property_group_option.group` . `filterable` as `property_group_option.group.filterable` , `property_group_option.group` . `visible_on_product_detail_page` as `property_group_option.group.visibleOnProductDetailPage` , `property_group_option.group` . `created_at` as `property_group_option.group.createdAt` , `property_group_option.group` . `updated_at` as `property_group_option.group.updatedAt` , `property_group_option.group.translation.name` , `property_group_option.group.translation.name` as `property_group_option.group.name` , `property_group_option.group.translation.description` , `property_group_option.group.translation.description` as `property_group_option.group.description` , `property_group_option.group.translation.position` , `property_group_option.group.translation.position` as `property_group_option.group.position` , `property_group_option.group.translation.customFields` , `property_group_option.group.translation.customFields` as `property_group_option.group.customFields` , `property_group_option.translation.name` , `property_group_option.translation.name` as `property_group_option.name` , `property_group_option.translation.position` , `property_group_option.translation.position` as `property_group_option.position` , `property_group_option.translation.customFields` , `property_group_option.translation.customFields` as `property_group_option.customFields` FROM `property_group_option` LEFT JOIN `property_group` `property_group_option.group` ON `property_group_option` . `property_group_id` = `property_group_option.group` . `id` LEFT JOIN (SELECT `property_group_option.translation` . `property_group_option_id` , `property_group_option.translation` . `name` as `property_group_option.translation.name` , `property_group_option.translation` . `position` as `property_group_option.translation.position` , `property_group_option.translation` . `custom_fields` as `property_group_option.translation.customFields` FROM `property_group_option_translation` `property_group_option.translation` WHERE `property_group_option.translation` . `language_id` = ? ) `property_group_option.property_group_option_translation` ON `property_group_option.property_group_option_translation` . `property_group_option_id` = `property_group_option` . `id` LEFT JOIN (SELECT `property_group_option.group.translation` . `property_group_id` , `property_group_option.group.translation` . `name` as `property_group_option.group.translation.name` , `property_group_option.group.translation` . `description` as `property_group_option.group.translation.description` , `property_group_option.group.translation` . `position` as `property_group_option.group.translation.position` , `property_group_option.group.translation` . `custom_fields` as `property_group_option.group.translation.customFields` FROM `property_group_translation` `property_group_option.group.translation` WHERE `property_group_option.group.translation` . `language_id` = ? ) `property_group_option.group.property_group_translation` ON `property_group_option.group.property_group_translation` . `property_group_id` = `property_group_option.group` . `id` WHERE `property_group_option` . `id` IN (? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? )
Parameters :
[
b"\x02 0¨(çñA —O®8ͬÞÛ "
b"\x02 0¨(çñA —O®8ͬÞÛ "
b"""
╠\n
WOØ·N¤▓▀#Mº\x16 ª«
"""
b"\x1C †\x01 Ë¢ùD2º¿\x10\x08\t -Š= "
b"Cò†8˜óG⇰\x17\x03 ÞP\x0F û "
b"╦cAÉÒfO~î²R▒ôtOÿ "
b"˜¤iwËí@=Žê¬|Ý\x19\x01 I "
b"\x1C †\x01 Ë¢ùD2º¿\x10\x08\t -Š= "
b"sZñëûB\x1E “ä\x08 °sĨš "
b"""
╠\n
WOØ·N¤▓▀#Mº\x16 ª«
"""
b"\x1C †\x01 Ë¢ùD2º¿\x10\x08\t -Š= "
b"sZñëûB\x1E “ä\x08 °sĨš "
b"""
╠\n
WOØ·N¤▓▀#Mº\x16 ª«
"""
b"sZñëûB\x1E “ä\x08 °sĨš "
b"\x00 ìCï¢I|┤53ÅÇÆÅè "
b"sZñëûB\x1E “ä\x08 °sĨš "
b"Åntï╣\x13 FÉó┴`\r \f Ó1x "
b"╦cAÉÒfO~î²R▒ôtOÿ "
b"ÿÛ7Üá·G˜³\\x0E ë¤ü0š "
b"""
╠\n
WOØ·N¤▓▀#Mº\x16 ª«
"""
b"g‰˜\x1E ÃÌC\x1E ¤bo*]}pb "
]
SELECT
`property_group_option` . `id` as `property_group_option.id` ,
`property_group_option` . `property_group_id` as `property_group_option.groupId` ,
`property_group_option` . `color_hex_code` as `property_group_option.colorHexCode` ,
`property_group_option` . `media_id` as `property_group_option.mediaId` ,
`property_group_option` . `created_at` as `property_group_option.createdAt` ,
`property_group_option` . `updated_at` as `property_group_option.updatedAt` ,
`property_group_option.group` . `id` as `property_group_option.group.id` ,
`property_group_option.group` . `display_type` as `property_group_option.group.displayType` ,
`property_group_option.group` . `sorting_type` as `property_group_option.group.sortingType` ,
`property_group_option.group` . `filterable` as `property_group_option.group.filterable` ,
`property_group_option.group` . `visible_on_product_detail_page` as `property_group_option.group.visibleOnProductDetailPage` ,
`property_group_option.group` . `created_at` as `property_group_option.group.createdAt` ,
`property_group_option.group` . `updated_at` as `property_group_option.group.updatedAt` ,
`property_group_option.group.translation.name` ,
`property_group_option.group.translation.name` as `property_group_option.group.name` ,
`property_group_option.group.translation.description` ,
`property_group_option.group.translation.description` as `property_group_option.group.description` ,
`property_group_option.group.translation.position` ,
`property_group_option.group.translation.position` as `property_group_option.group.position` ,
`property_group_option.group.translation.customFields` ,
`property_group_option.group.translation.customFields` as `property_group_option.group.customFields` ,
`property_group_option.translation.name` ,
`property_group_option.translation.name` as `property_group_option.name` ,
`property_group_option.translation.position` ,
`property_group_option.translation.position` as `property_group_option.position` ,
`property_group_option.translation.customFields` ,
`property_group_option.translation.customFields` as `property_group_option.customFields`
FROM
`property_group_option`
LEFT JOIN `property_group` `property_group_option.group` ON `property_group_option` . `property_group_id` = `property_group_option.group` . `id`
LEFT JOIN (
SELECT
`property_group_option.translation` . `property_group_option_id` ,
`property_group_option.translation` . `name` as `property_group_option.translation.name` ,
`property_group_option.translation` . `position` as `property_group_option.translation.position` ,
`property_group_option.translation` . `custom_fields` as `property_group_option.translation.customFields`
FROM
`property_group_option_translation` `property_group_option.translation`
WHERE
`property_group_option.translation` . `language_id` = ?
) `property_group_option.property_group_option_translation` ON `property_group_option.property_group_option_translation` . `property_group_option_id` = `property_group_option` . `id`
LEFT JOIN (
SELECT
`property_group_option.group.translation` . `property_group_id` ,
`property_group_option.group.translation` . `name` as `property_group_option.group.translation.name` ,
`property_group_option.group.translation` . `description` as `property_group_option.group.translation.description` ,
`property_group_option.group.translation` . `position` as `property_group_option.group.translation.position` ,
`property_group_option.group.translation` . `custom_fields` as `property_group_option.group.translation.customFields`
FROM
`property_group_translation` `property_group_option.group.translation`
WHERE
`property_group_option.group.translation` . `language_id` = ?
) `property_group_option.group.property_group_translation` ON `property_group_option.group.property_group_translation` . `property_group_id` = `property_group_option.group` . `id`
WHERE
`property_group_option` . `id` IN (
? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? ,
? , ? , ?
)
Copy
SELECT `property_group_option` . `id` as `property_group_option.id` , `property_group_option` . `property_group_id` as `property_group_option.groupId` , `property_group_option` . `color_hex_code` as `property_group_option.colorHexCode` , `property_group_option` . `media_id` as `property_group_option.mediaId` , `property_group_option` . `created_at` as `property_group_option.createdAt` , `property_group_option` . `updated_at` as `property_group_option.updatedAt` , `property_group_option.group` . `id` as `property_group_option.group.id` , `property_group_option.group` . `display_type` as `property_group_option.group.displayType` , `property_group_option.group` . `sorting_type` as `property_group_option.group.sortingType` , `property_group_option.group` . `filterable` as `property_group_option.group.filterable` , `property_group_option.group` . `visible_on_product_detail_page` as `property_group_option.group.visibleOnProductDetailPage` , `property_group_option.group` . `created_at` as `property_group_option.group.createdAt` , `property_group_option.group` . `updated_at` as `property_group_option.group.updatedAt` , `property_group_option.group.translation.name` , `property_group_option.group.translation.name` as `property_group_option.group.name` , `property_group_option.group.translation.description` , `property_group_option.group.translation.description` as `property_group_option.group.description` , `property_group_option.group.translation.position` , `property_group_option.group.translation.position` as `property_group_option.group.position` , `property_group_option.group.translation.customFields` , `property_group_option.group.translation.customFields` as `property_group_option.group.customFields` , `property_group_option.translation.name` , `property_group_option.translation.name` as `property_group_option.name` , `property_group_option.translation.position` , `property_group_option.translation.position` as `property_group_option.position` , `property_group_option.translation.customFields` , `property_group_option.translation.customFields` as `property_group_option.customFields` FROM `property_group_option` LEFT JOIN `property_group` `property_group_option.group` ON `property_group_option` . `property_group_id` = `property_group_option.group` . `id` LEFT JOIN (SELECT `property_group_option.translation` . `property_group_option_id` , `property_group_option.translation` . `name` as `property_group_option.translation.name` , `property_group_option.translation` . `position` as `property_group_option.translation.position` , `property_group_option.translation` . `custom_fields` as `property_group_option.translation.customFields` FROM `property_group_option_translation` `property_group_option.translation` WHERE `property_group_option.translation` . `language_id` = 0x0230A828E7F14120974FAE38CDACDEDB ) `property_group_option.property_group_option_translation` ON `property_group_option.property_group_option_translation` . `property_group_option_id` = `property_group_option` . `id` LEFT JOIN (SELECT `property_group_option.group.translation` . `property_group_id` , `property_group_option.group.translation` . `name` as `property_group_option.group.translation.name` , `property_group_option.group.translation` . `description` as `property_group_option.group.translation.description` , `property_group_option.group.translation` . `position` as `property_group_option.group.translation.position` , `property_group_option.group.translation` . `custom_fields` as `property_group_option.group.translation.customFields` FROM `property_group_translation` `property_group_option.group.translation` WHERE `property_group_option.group.translation` . `language_id` = 0x0230A828E7F14120974FAE38CDACDEDB ) `property_group_option.group.property_group_translation` ON `property_group_option.group.property_group_translation` . `property_group_id` = `property_group_option.group` . `id` WHERE `property_group_option` . `id` IN (0xCC0A574F9DFA4ECFB2DF234DA716A6AE , 0x1C8601CBA2F94432BABF1008092D8A3D , 0x43F2863898F347E287B01703DE500FFB , 0xCB634190E3664F7E8CFD52B193744F98 , 0x98A46977CBED403D8EEAAC7CDD190149 , 0x1C8601CBA2F94432BABF1008092D8A3D , 0xAD735AF1EBFB421E93E408B073C4A89A , 0xCC0A574F9DFA4ECFB2DF234DA716A6AE , 0x1C8601CBA2F94432BABF1008092D8A3D , 0xAD735AF1EBFB421E93E408B073C4A89A , 0xCC0A574F9DFA4ECFB2DF234DA716A6AE , 0xAD735AF1EBFB421E93E408B073C4A89A , 0x00F08D438BBD497CB435338F80928F8A , 0xAD735AF1EBFB421E93E408B073C4A89A , 0x8F6E748BB9134690A2C1600D0CE03178 , 0xCB634190E3664F7E8CFD52B193744F98 , 0xFFDB37DCE1B74798B35C0EEBA4FC309A , 0xCC0A574F9DFA4ECFB2DF234DA716A6AE , 0x6789981EC3CC431EA4626F2A5D7D7062 );
Copy
59
3.87 ms
SELECT `product_price` . `id` as `product_price.id` , `product_price` . `version_id` as `product_price.versionId` , `product_price` . `product_id` as `product_price.productId` , `product_price` . `product_version_id` as `product_price.productVersionId` , `product_price` . `rule_id` as `product_price.ruleId` , `product_price` . `price` as `product_price.price` , `product_price` . `quantity_start` as `product_price.quantityStart` , `product_price` . `quantity_end` as `product_price.quantityEnd` , `product_price` . `custom_fields` as `product_price.customFields` , `product_price` . `created_at` as `product_price.createdAt` , `product_price` . `updated_at` as `product_price.updatedAt` FROM `product_price` WHERE (`product_price` . `version_id` = ? ) AND (((`product_price` . `product_id` IN (? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? ))))
Parameters :
[
b"\x0F ©\x1C ãéjK¾KÙÎu,4% "
b"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01 #dq” "
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01 #ds\x01 "
b"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01 $\x04 7ü "
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01 3V\x10 S "
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01 3a\x07 6 "
b"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01 4”–\x07 "
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01 5g\x14 u "
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01 F\t\x11 v "
b"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01 FS\x15 ‘ "
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01 Hw@V "
b"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01 YüU\x00 "
b"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01 Y—\x04 “ "
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01 `\x14 u" "
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01 `3YB "
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01 b5\x11 h "
b"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01 d&ƒ3 "
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01 f\x03\x07\x15 "
b"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01 f\x03\x07 … "
b"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01 iqB˜ "
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01 p\x11 &" "
b"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01 q™X\x18 "
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01 r\x01 !8 "
b"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01 x3\x08 — "
b"á=°3±9E(‘VÒ"…£ƒ\x06 "
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01 t"\x03 d "
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01 sT\x18 Y "
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01 w9V$ "
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01 3V\x10 F "
b"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01 t\x19 ˆ\x13 "
b"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01 t\x19 ˆ& "
b"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01 t‘Q\x10 "
b"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01 49h™ "
b"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01 $\x04 …\x03 "
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01 Vf91 "
b"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01 YüS0 "
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01 `\x14 ub "
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01 `3Y2 "
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01 b5\x12 B "
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01 q`d\x17 "
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01 uT6' "
b"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01 w„VY "
]
SELECT
`product_price` . `id` as `product_price.id` ,
`product_price` . `version_id` as `product_price.versionId` ,
`product_price` . `product_id` as `product_price.productId` ,
`product_price` . `product_version_id` as `product_price.productVersionId` ,
`product_price` . `rule_id` as `product_price.ruleId` ,
`product_price` . `price` as `product_price.price` ,
`product_price` . `quantity_start` as `product_price.quantityStart` ,
`product_price` . `quantity_end` as `product_price.quantityEnd` ,
`product_price` . `custom_fields` as `product_price.customFields` ,
`product_price` . `created_at` as `product_price.createdAt` ,
`product_price` . `updated_at` as `product_price.updatedAt`
FROM
`product_price`
WHERE
(`product_price` . `version_id` = ? )
AND (
(
(
`product_price` . `product_id` IN (
? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? ,
? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? ,
? , ? , ? , ? , ? , ? , ? , ? , ? , ?
)
)
)
)
Copy
SELECT `product_price` . `id` as `product_price.id` , `product_price` . `version_id` as `product_price.versionId` , `product_price` . `product_id` as `product_price.productId` , `product_price` . `product_version_id` as `product_price.productVersionId` , `product_price` . `rule_id` as `product_price.ruleId` , `product_price` . `price` as `product_price.price` , `product_price` . `quantity_start` as `product_price.quantityStart` , `product_price` . `quantity_end` as `product_price.quantityEnd` , `product_price` . `custom_fields` as `product_price.customFields` , `product_price` . `created_at` as `product_price.createdAt` , `product_price` . `updated_at` as `product_price.updatedAt` FROM `product_price` WHERE (`product_price` . `version_id` = 0x0FA91CE3E96A4BC2BE4BD9CE752C3425 ) AND (((`product_price` . `product_id` IN (0x00000000000000000000000123647194 , '\0\0\0\0\0\0\0\0\0\0\0#ds' , 0x00000000000000000000000124043781 , '\0\0\0\0\0\0\0\0\0\0\03VS' , '\0\0\0\0\0\0\0\0\0\0\03a6' , 0x00000000000000000000000134949607 , '\0\0\0\0\0\0\0\0\0\0\05gu' , '\0\0\0\0\0\0\0\0\0\0\0F v' , 0x00000000000000000000000146531591 , '\0\0\0\0\0\0\0\0\0\0\0Hw@V' , 0x00000000000000000000000159815500 , 0x00000000000000000000000159970493 , '\0\0\0\0\0\0\0\0\0\0\0`u\"' , '\0\0\0\0\0\0\0\0\0\0\0`3YB' , '\0\0\0\0\0\0\0\0\0\0\0b5h' , 0x00000000000000000000000164268333 , '\0\0\0\0\0\0\0\0\0\0\0f' , 0x00000000000000000000000166030785 , 0x00000000000000000000000169714298 , '\0\0\0\0\0\0\0\0\0\0\0p&\"' , 0x00000000000000000000000171995818 , '\0\0\0\0\0\0\0\0\0\0\0r!8' , 0x00000000000000000000000178330897 , 0xE13DB033B13945289156D22285A38306 , '\0\0\0\0\0\0\0\0\0\0\0t\"d' , '\0\0\0\0\0\0\0\0\0\0\0sTY' , '\0\0\0\0\0\0\0\0\0\0\0w9V$' , '\0\0\0\0\0\0\0\0\0\0\03VF' , 0x00000000000000000000000174198813 , 0x00000000000000000000000174198826 , 0x00000000000000000000000174915110 , 0x00000000000000000000000134396899 , 0x00000000000000000000000124048503 , '\0\0\0\0\0\0\0\0\0\0\0Vf91' , 0x00000000000000000000000159815330 , '\0\0\0\0\0\0\0\0\0\0\0`ub' , '\0\0\0\0\0\0\0\0\0\0\0`3Y2' , '\0\0\0\0\0\0\0\0\0\0\0b5B' , '\0\0\0\0\0\0\0\0\0\0\0q`d' , '\0\0\0\0\0\0\0\0\0\0\0uT6\'' , 0x00000000000000000000000177845659 ))));
Copy
60
0.68 ms
SELECT `unit` . `id` as `unit.id` , `unit` . `created_at` as `unit.createdAt` , `unit` . `updated_at` as `unit.updatedAt` , `unit.translation.shortCode` , `unit.translation.shortCode` as `unit.shortCode` , `unit.translation.name` , `unit.translation.name` as `unit.name` , `unit.translation.customFields` , `unit.translation.customFields` as `unit.customFields` FROM `unit` LEFT JOIN (SELECT `unit.translation` . `unit_id` , `unit.translation` . `short_code` as `unit.translation.shortCode` , `unit.translation` . `name` as `unit.translation.name` , `unit.translation` . `custom_fields` as `unit.translation.customFields` FROM `unit_translation` `unit.translation` WHERE `unit.translation` . `language_id` = ? ) `unit.unit_translation` ON `unit.unit_translation` . `unit_id` = `unit` . `id`
Parameters :
[
b"\x02 0¨(çñA —O®8ͬÞÛ "
]
SELECT `unit` . `id` as `unit.id` , `unit` . `created_at` as `unit.createdAt` , `unit` . `updated_at` as `unit.updatedAt` , `unit.translation.shortCode` , `unit.translation.shortCode` as `unit.shortCode` , `unit.translation.name` , `unit.translation.name` as `unit.name` , `unit.translation.customFields` , `unit.translation.customFields` as `unit.customFields` FROM `unit` LEFT JOIN (SELECT `unit.translation` . `unit_id` , `unit.translation` . `short_code` as `unit.translation.shortCode` , `unit.translation` . `name` as `unit.translation.name` , `unit.translation` . `custom_fields` as `unit.translation.customFields` FROM `unit_translation` `unit.translation` WHERE `unit.translation` . `language_id` = 0x0230A828E7F14120974FAE38CDACDEDB ) `unit.unit_translation` ON `unit.unit_translation` . `unit_id` = `unit` . `id` ;
Copy
61
12.80 ms
SELECT `property_group_option` . `id` FROM `property_group_option` LEFT JOIN `property_group` `property_group_option.group` ON `property_group_option` . `property_group_id` = `property_group_option.group` . `id` WHERE ((`property_group_option.group` . `filterable` = ? )) AND (`property_group_option` . `id` IN (? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? )) ORDER BY `property_group_option` . `id` ASC LIMIT 500
Parameters :
[
true
b"\x00\x00 ÅÜ\x07 ºIÃ C…"Ç\f é "
b"\x00 THÔGðK8¬$;Ù\x18 L«€ "
b"\x00 [}yæ•I(½ÌsAl´Ë\x14 "
b"\x00 ÆÉyD°Hyÿ¨\x03 R\r mÓI "
b"\x00 ìCï¢I|┤53ÅÇÆÅè "
b"\x01 `½žäÕ@\x02 ‹\x1E s »«™Ø "
b"\x01 ¤ Ç01Ks«œ¤,瀧n "
b"\x01 ¿—\x05 4³A2ƒËû\x1E ¿\x02 Ф "
b"\x01 ÁBrÌÞAz„Š<\÷¨ý, "
b"\x01 µ\x15 =S╬Bz┐üL%(`ãB "
b"\x02 ˆ\x7F ŠZŠO4™®iV½\x1E ZÓ "
b"\x02 É_YÜÞE¾áQ3⬽PÊ "
b"\x03\e ¹DcpO2”òÈ\x1C $©«4 "
b"\x03 >n`\x02 @Cìšè\x16 8Ö@xÛ "
b"\x03 J.}yÿEkŸ•\x13 7¥ˆÐï "
b"\x03 KoqÆû@\x17 Éf\Ïâ9ëð "
b"\x03 VÄ¥îÇBƒ²,ÝϧÀb½ "
b"""
\x03 Û§\n
ê‘IÚ»&f;\x14 á\x18 Ð
"""
b"\x04\x12 Ét:VL9»IÝËŠ„BJ "
b"""
\x04 7‡%ÍÕLZŸ±zÿ\n
0¦°
"""
b"\x04 kú\x12 ‰`Cú‘AO9£}3È "
b"\x04 Ì^žiÔG事GvóSTð "
b"\x05 ;¼@AîH=–Àß>\x7F +bU "
b"\x05 âx╬\r rGúÅ÷_¶.├¾a "
b"\x06 ^│îr▒DR▒\x0E ÉÙ+¡└┤ "
b"\x06 Õô\f\x1C JMë‘4/"\x1F P\x16\x1D "
b"\x08\x17 €>BRHçª÷É$PÕ¼Æ "
b"\x08 "\x1D ×#\x08 Mߘ+–*dXì7 "
b"\x08 9\x1A Ã\x16 ÉIfïV║\x15 ã┌ɵ "
b"\x08 V…Ïb{I\x1D ‚iT|–²ú{ "
b"\x08 b╝╦½ñJ\x12 ƒìó\x1F Ý'¸╗ "
b"\x08 鞤“\x1D C»˜é_R \x14 Ÿn "
b"\x08 ¹Ý÷RbA╝×&■ɦüIm "
b"\t IônÀß@▒øfàü¬¡\x12 Å "
b"\t wLwídH\x0F 𾕆{\x0F 9H "
b"""
\n
\e ò"»øK ØS[3P³HÊ
"""
b"""
\n
"Ø«"\x06 HqƒWŠW[\f ÇD
"""
b"""
\n
_ß'BðMx¢‘=µ4&m\x03
"""
b"""
\n
g2UµµLë¨?á®ER\x05 Ù
"""
b"""
\n
y‹w\x16\x08 J‹Œ>Õ£€TA‡
"""
b"""
\n
§\x0F AO½ED¼Ýì,1©Hš
"""
b"""
\n
Îÿµ┬íAvé┴qJ¨ì╠
"""
b"\f\x17 D\x06 CRA,½‰>³Ù'Ïš "
b"\f\x18 ßì¦èFô·Xn[Háïó "
b"""
\f N\n
ÞDbN“‡\x02 ^6b9À¥
"""
b"\f •x73ÓCœ‹½×s8)v± "
b"\f 3N\x02 }HúüÛâµ[¥Æ╝ "
b"\r +‡-íÌJ@¼Ÿ\x10 wòMü "
b"\r ûhî■╦@ıäK╩~ã\x1F LÅ "
b"\x0F\x13 ŒòYèHë²\x10 ÙpF\x05 ïZ "
b"\x10 4”Å%F@]\x18 æ^Ã\x16 ê÷ "
b"\x10 Å&.b O-¼é$¦ÊBj\x0E "
b"\x11 +iMgÉH.…\x1E ²{ë·7 "
b"\x11 nð*+}Mb„Á¤KÒjsº "
b"\x11 ë6)§·I\f ˆ%âÄ[ÖEú "
b"\x12 é'vý\x05 Né«Uü¢J!À\x02 "
b"\x13\x19 ╩)ܦL9ØUìsºø\x15\x05 "
b"\x13 0\x1F .äŸN¿´XoE–\x1D Ò+ "
b"\x13 f╔│üÐE¸▒\x05\f çX]Û^ "
b"\x13 ¸¦Å¦÷M4¹ß\x10 ¦œ\x01 ¶/ "
b"\x14\x04 Å\x01\x1A ¯FhéwK┴_\x1F ╝m "
b"\x14 2╬f}ÎLßÀÙò¸_‗\x12 Ø "
b"\x14 G\x07 ÈILGŠ€V ORtóK "
b"\x14 ¤qßzE\x19 ‘\x00 dìdÀH– "
b"\x14 §=Vc»CÓ‚\x16 !£y¸\x0F f "
b"\x15 {\f 8úHCÿüye$\x01 \ë\f "
b"\x15 °nzþ3Ag¶kòh%:¬G "
b"\x16 ˆ2Ý\r ¡@\x13 †häB˜è´} "
b"\x16 º{žN\x04 Eµ¾aSÁ÷'Ä\v "
b"\x16 ÿG\f KmG[ƒ\x07 ’XÌ$w@ "
b"\x17 Pø°t\x0F F?‰^[”a\x0F ír "
b"\x17 gïKt\x08 NXµÔ‹sh©\x12 n "
b"\x19 îóÅ\x08 ├I*®\x11 Ìà`´þª "
b"\x1A X"\x1C ÏûN°€F}¿ÝaUx "
b"\e LµµÖ\x18 Ae·Üë4œ\x13 8+ "
b"\e µö$\x17 ÃB “A)Ý{{µ9 "
b"\x1C †\x01 Ë¢ùD2º¿\x10\x08\t -Š= "
b"\x1D\x1F Äöj\x16 Eή\v Ô*”ï^\x04 "
b"\x1D œO0\r fG»³÷Ê9D Ée "
b"\x1E ZD•I€I„šx\x00 ¹\t u½, "
b"\x1E i¶B·¹Lýµ>“×(*v\x17 "
b"\x1E µÿ®V×JT„û¢\x1E ¡Sœ÷ "
b" \x15 ÷ŽçWD@¾/ùŽ…4&è "
b" Qz`×ÝCö†j·h‰6\x1D\f "
b" SC¶y0G¡▓×<ìc*\x7F ä "
b" •‘UËÝC\x11 ‰] \x13 âA\x1C 4 "
b" ¶\x19 œýõO>œ{!ý³¶Û "
b" Ù&ÿÄrANµ«†ÃÃg\x02 ? "
b" ñ—α’AÌ…¥ÿ;è\x02 Ó7 "
b"!ŽLM2#H<¶@]®ÇÉ-Å "
b"!ãž8ÝlOk‹²e×YÃ#˜ "
b""\x12 ®09%Bþ¬d\x14 │Øotg "
b""</¸ÇMH¯€b†\f îW¬Œ "
b""="T}\x12 J˜‰}?nÍèJÍ "
b""è¸j\x04 ═G\x10 ▒ıLæ┴Ø\x06\x06 "
b""«\x0E :KLL„¹n´‚x|&F "
b""ã\x01 D»+Ae‹æJŶ\e G| "
b""é²ý‘PHθH.WŠ…\x0F ã "
b""ì\x1C ôž\x10 Gá´w]®ó¸\x19\f "
b"#³ô/SˆIF½*îyZ\x04 T® "
b"#Àaw\x0E úCá‘\v pY\x1F\x07 ‰[ "
b"#ÚpÉ▓*N0ï\x07\x11 DÿùEÞ "
b"#‗¸çÆìG╦╗£6UÉÝ█ "
b"$\x10 ü]ÙXC¡ÀùRN\x18 @g² "
b"$4#¾\x0E RNo¶.rjÈ9\x01 œ "
b"$Båb═h@çêü ^r,tÎ "
b"$Óéo:\x12 D/†ÒqQƒní´ "
b"%\x01\x08 V~#BñôÇh\x10 ¯ü╗j "
b"%%2®!ëK\e ª°ýÈ«\x16 e1 "
b"%ZË\x16\x0E cKIù\r YÄ<Ç┬ü "
b"%`U€©2G}¸ ˆë\e ûËé "
b"%À>V\x08 FKÏŸ¤ŒT‰Å†8 "
b"%Ö)‡cfMfªïlL^D•I "
b"""
&ó░a\n
2M\t ª_■╝°▓¿É
"""
b"'\f ®ÕÑ(N▀òŹ\f ±ËË? "
b"'LÌ,7’CT¹¯8öGLä` "
b"'j A÷ZLV öÛŠ\v ƒ\x05 ~ "
b"(X\x05 ~/éKF¾©ÏÄl¥‹˜ "
b"(†äh\x1E LIÙ«ƒ‹w»îļ "
b"(óÿŽ+O,…«Ú$\x12 ç5m "
b"(óÔ*âéJF‹4÷VÕeÿÎ "
b")X´[êÿEË—óì¦<"–? "
b")”?ý\x1F Fòº$0\x12 \x00 ªÞ "
b")«\x1E ©”«O® –5¨=Ž©¶ "
b")½Zk¥WB™®Å<Þˆ\x15\x02 q "
b")┌\x05 AÙ¡DèÅà┬%Â■CY "
b"*\x19 @\x7F 5+C‡¥œd¯öò\x17\x1E "
b"*WZ'•xG°’¾òuä?F¹ "
b"+×Å|3‗CÏ¡┐°8¢┤╩³ "
b"+§á8sáHX‚8\x02 NÌêÒ. "
b",8"›·v@\x0E ޶ÃÃ\x06 …\x12\x00 "
b",j×\x01 `vN˜ƒ¸û\x1F\f ›>^ "
b",Ù奂»A(›\V\x02 @ûTÖ "
b"-&&\x10 ¹DAµ£"²î¢~jL "
b"-ž~±…šK/¼Ñ»H\x10 yY\x12 "
b"-Ä¢ð@ðM¸¢Ç5\x06 %ÆQ’ "
b".\x18 'ÿp\x12 EG©\x12 4ê\x02 Ëä{ "
b".EÅ3ì(Eþª±Ô/ÿçÍ¿ "
b".GýnguDQ¾>¥YKõQc "
b"0\x03 „û _@f‚žFA\x15 p¤\x17 "
b"0u‹N%÷E”¨°\x14 -ƒ^³P "
b"0ˆ“3†ˆAþ’\t 8zˆQ3\x03 "
b"""
0²Ñ█;╠K&ì\n
+¾░Y"¥
"""
b"1ÈãÏq¾AJ‘lµõÛ}~¸ "
b"1ÿ¢–\x07 dOý¶yà•\e ,†H "
b"2FùèAfN»¤Wý$ì7×N "
b"2wád\x18\x14 F\f ž„щ§+ÀÕ "
b"2žþìý\x15 @©‡Þ$¸ˆ¿p? "
b"2õªý®ÕM’·\x05 JsPá\x13 "
b"3@K½ÝÆ@ú…Ð(²6¹\x1E % "
b"3u\x02 ô\x0E ìN¸¢n,\r %ºT7 "
b"3Öª®úÂEÃØ├Ë\v ¶gÃr "
b"""
4ËüI\f ─Ngì╠5þ\n
ı7·
"""
b"5I¯N\x11 4G^Š›~<Ï‚ùŸ "
b"5Üøy#ÑFLèÑøÃþ╗ÃØ "
b"5©É6ǼM▒ö\x0F Fbhðoj "
b"5÷«x\x0F ìCÇ¢GÂX—£´\x00 "
b"6âØ╣└·A\x04 ú\x12 Ò|ʤ═Ó "
b"6ÞÃ[¹/O¦²C¶ZûÊŽ„ "
b"6Óõ\f ´YMû╣¼·ØSÈós "
b"6õw\x1C v^F«à¯\x1A ÔÇ•ß "
b"7[yá4>NñŠý:ê´iþó "
b"8Æ7ÇmþHÙÆ"ö¨þÛ×É "
b"9/C0\x05 ]FÒƒ¼Q\x06 ÇéñÐ "
b";&àÇ›)JÊ—1—:DËw• "
b"""
;:êÅ’zO\n
ŒŠ:\v å;ƒp
"""
b";oþ¨õ¹G$ØÄ\x19 }î\x13 ±@ "
b";ÉXwk«FŸ”=ç\x1E 6z\x06 e "
b"<\x17 ;m=\x04 @X¥9\x06 aqfÏW "
b"<,kÁ*jBZ‡¥\x10 Eœáìõ "
b"<K\x17 ðùåA\x1E ‹Ñ¨Ñ{2bð "
b"<¼ð\x04 ¤UJج║µf\x06 uÑ{ "
b"<█Ì×QËKÓØ┬®ı½K|W "
b"""
=`+\n
kZLv€=\x05 ýñ›\x17 ˜
"""
b">g╠¤Û²A▄ì]ø\x1A èªôÖ "
b"@ßYÒx\x1F J̈¿4DGƒw§ "
b"""
A\x17 þ\x18\x0E ÆN°€4¯‹³µ\n
y
"""
b"A\x1C 2˜™ðE5±üºö%×¶n "
b"Apx-IÚ@gŠ\t çá\x05 £\x18 = "
b"A’cª\t ,@¥§,\x03 Í5«Q\x07 "
b"Aå\x01 ;gÖM:’·¢uÚŠôA "
b"B}椪HIT¿”<DÔ\x0E ?æ "
b"C\x06 Ù%\x1F NG\x00 ´É.ÔeÌíÒ "
b"C\x16 ¨_5ïKÌ´\x10\x1D ¢\x04 /ae "
b"C\x18 ”\x03\x05 ãCĬÁ9‹\x0E ¯‹ÿ "
b"C1┘\x1D <ìG}░NâÆ \e q▒ "
b"C5hl¬FFúµá"™c°“ "
b"C\R\f áXC§¢»&»¿\x08\x11 å "
b"CÅm()ÜDB¢Ùæ¦┘╬╚ü "
b"CýÒîôKDü┤\x01 ┐ã\x1F ,\x16 ¹ "
b"Cò†8˜óG⇰\x17\x03 ÞP\x0F û "
b"D'\v ¦srD€±mæ\x02 °ÄÆÑ "
b"""
Dy)[k\n
O▒âÖó<Åï«H
"""
b"DÀ@·}…F\x06 ±\x1F E<ƒ¶ªô "
b"E\x14 ^0E╠I\v Ø]W(º-\x03 E "
b"EOu: \x01 C|©œì~‹¬Q5 "
b"E¯\x1D Ñé:K/¿¢QôÓ¤Äu "
b"F\x02 Ϊ¨áNn®ê\r %tÔ¨q "
b"FÞp…ÎJE¢‚–ÿs\t Ú¥# "
b"FÙ╠¶±hC`ÉìÐ\x0E\x08 8¯½ "
b"G\x18 þ£ÕvN–ž.xxožú„ "
b"GGì6æÑAîºzX¿Ìä/Ô "
b"GÞ®í˜}L\x10 –þ\x08 h\x0F\x7F ÜÛ "
b"HOf\x15 ÛÚL¦ÿ\f ½Ø\x02 [?ì "
b"I7ðÁù:M"¬9¯q¿¢íw "
b"""
J0\x05 á\n
RJÐ╝j;0┐üá\x0E
"""
b"JÁ│ì`9C\x1E Â┬\x05\f $\x00 ■l "
b"K>tÅ)`NM¬╦®\x0E ¼ò&Ë "
b"L"KÉaÛD¾ž2bv7&D@ "
b"Lð3ñ¯¨F ‹ KêÞÙ™\x0F "
b"M6QzHÔCÅŒ(\t (†—¬b "
b"MEö1©\x11 Kް â¿\x03 Üv\f "
b"M¶\x00 ¾c\x16 Jt±.%Ƥ@‚\x1C "
b"N\x1C µ²k±DD¶±»\f >‘Mõ "
b"NHó\x01 V–LÈŒ†\x7F ‡°7\x13 Å "
b"OKØ›æ§O͈zhœ\x03 à,Ò "
b"OQø\x03 :—IÏ£\f þF™}8² "
b"OÚ›þ&\x18 C\x13 ¦Ngð\x13 Ò|/ "
b"PSüq?áK——Ïg,>q“D "
b"Pÿ4|─^A¦┐lØ7Ú¡\x0F · "
b"PìÏÆž’EP•ïÑ\f ÷#Š\f "
b"Q4 ^(ÁM$³J£Ë+Û\x06 Ÿ "
b"QYÑŒägD\x19 š!\x11 þ€™Î, "
b"Q€K\t £É@Å‹hþÓ\e Ä´£ "
b"Q ÏO\x1C\x13 H\x17 ™™ãó&ˆmä "
b"S\x00 V‡ÀCEݬ7ú7¸ Ñü "
b"SH—\x1D o3B©®\x06 4O…[ô& "
b"SHÅ\x11 quIñ‰\x17 ‰’žr\x16 Y "
b"T\x08 ypOƒE`íü.N¨)v1 "
b"T\x14 v’ËûCAšm\x11 âlDÜ "
b"TÝå\x1E\x1D "LóƯs¿nÑØ "
b"U“ù4Í6Lx®º‘¤ xó\x1C "
b"UÖåÄ\x15 EØ£³c{øÐذ "
b"VàÝıL(IöáÉ%\x16 m´ÈS "
b"W\x00 壚ÓB\ƒ\x06 Û±Ö¾YÆ "
b"WQ¸?’Ó@.¡9šhûu¯\x08 "
b"X\x17 \Å^?O\x07 ŒMç`Cë¶¢ "
b"XõÌ7÷¸J®…8¾ü&§ÒÈ "
b"Yt+l%{AÍ„“¹8&™‚ˆ "
b"YëÅ‗├@HxáÖ\x0F 3═|`┐ "
b"Y—Ù\x1D ÀxI—½ïhßÅ ‰\x12 "
b"YÊ£gKaEв¦°K~ƒ¯p "
b"Z·®ÊˆdN.•)\x02 ö\x01 ¯–M "
b"Z▄£.\x10 ÕFÉØ\f ýW«\e i# "
b"[\x10 ³\x06 ¸\x05 K¸²\x10 ±Ï\x1E )MÝ "
b"[.uÒ˜\x1E A\x1F ®ÚÍ8ðªPV "
b"[¼x¸ñêJBª5í\x18 šk„[ "
b"\#ìyÒ\x15 H─óL¼/î█\x10\x00 "
b"\È/Á\x13 &KȼÉ╦<×o×\x01 "
b"^TäAû}MÍì░\x10 Ï}°\x14 å "
b"^tØ═Í┘E@«¶pèý"┴ "
b"_Ëë»\x11 €BIš¾ì,Ä4ný "
b"_Ï[\x01 ÔÙB`˜Ué^\x13 ËÒØ "
b"_¹}4¡ZO´ìj=jL\x0E Í┴ "
b"`\x1E ½9†dB’œLF\\x17 XW\ "
b"`µ▒░\x7F ÝG┬í¸T ¡ttÅ "
b"a-=t)ÖBLµŒÉñÂÍ0m "
b"aè\r ã\f ╣M̽ây¼ìÏe║ "
b"aêû\x01 îÇEIŠ\x7F WŸÀ¦ ú "
b"b\x1C xÅ\x02 ·J€¢\x04 x`í=aV "
b"bGž:»ùMî·òÚ˜w¼›¼ "
b"c\f ”šà"KÇ—\v ê÷}„5j "
b"c?\x00 ¢Ÿ¸H!¼Õ©;@{jB "
b"c &oGÁMk¡ˆÍÁpZ˜§ "
b"dØÎVÞ\x05 O"ˆ<gM§ã»G "
b"e¢Fé´#Oy£xÝÞÄZ2¿ "
b"eÀ\x1A ôy\x0F ON²¤âSš\x04 ¡× "
b"f\t PÃwŸBN«Ò¼xîÚQú "
b"f#P\x16 àÚC‚§wý7ÔEØr "
b"f; ùÞ(E%¥3Dl¡ì·š "
b"g‰˜\x1E ÃÌC\x1E ¤bo*]}pb "
b"hp*¥…ÇI\x00 ½\x1A $\r O¹%2 "
b"hî\x16 ½¹yH0³LI ›t\x01\x06 "
b"i~úô°ŒN¯½Ó*\t\x08 °|ª "
b"j\x03 /àÅ\x16 Lº║|\x00 I\f ~'Ö "
b"j'ÅL▓\x13 FG»yXr_7éS "
b"jÓèëL+K`¡Šn“\x14 \r íü "
b"jß\x02 ¸þÞF>¦œ³†üà5ñ "
b"jà\x06 ÛÆEM2±ƒ–ª\x05 y—" "
b"kFe\x13 ¨|Ho–\x12 ®.\x11 jÜ "
b"k‚ÿ»ƒG\x1F –»KiÄ\x14 ×€ "
b"k†(¯º\x1C O–‹J\x01 Òcç0Ò "
b"kã:ÂGJFå¯qÓÂŰSä "
b"kþ\x06\x17\x18 xO±º¨ýׄ\x06 ˜^ "
b"l¥<Õ├9FªÅ\e ¬\x13 ƒ DF "
b"m\x1C ƒµòºMòžÿ¤hø3ÎÏ "
b"mwÌÆ\x07 ^O|¦Pñ¨\f }™ "
b"m‗RÂn=Aí║\x15\t ▄üK■6 "
b"n\x14 L¹ÍJHƒ›‹¤Új›\x04 â "
b"nÒgv\x0F ÜBЮÀ\x11 j\x0F BÅ´ "
b"oäà^]=A=¬—áq*~Þç "
b"p1\e ('+@<—<¥s*wÝ¢ "
b"qlÎt·╔K\x08 ØÌsþ\x1C ÃIÂ "
b"q‚¹W\v íBO‘\r ‡IÞ¢«? "
b"r‰!ÎÏÈCä‹=ïS\x15 òbê "
b"séQæ×├F·¼Ï¡lØ\x0E Vz "
b"sñP£^rA\x17 ¢Œ\x1C 픘Ð\x1F "
b"t?kãØáL\x03 ¾@C4\x08 RЪ "
b"t║B╚À┐H\x1A ü¼§┤2B¤% "
b"u R;_)GЈ¶N;O\x12 œ\x10 "
b"v·\x1E ?UˆI“šà?æ\x05 ´t$ "
b"vϰ\e –ED\f «u;umÏN– "
b"v×V€\x03 M3®Ìˆ–Ù´á% "
b"vál#h&F\f « 2\x0E ݃BU "
b"väá”JÒK׊Õa€ s÷€ "
b"""
x4\x13 ìå¼M╦Á\x1E Ú\n
;xCS
"""
b"xI¢+\e xHO║HÆ"©Mض "
b"x|•7»bDõ«ŸÒÀ\x08 Ë\r Ù "
b"xŸC@+Œ@Ÿ²î´2ŸJ · "
b"xÒýñÕèL–¦3jÏýûê\x1A "
b"xÓÖO”\H2Ÿ-cåšãìc "
b"x×\x05\x08 J\x0E G«‰Ÿò.\x15 ’<+ "
b"y-_#^«HV…Í*Ùv3\x0F F "
b"""
yj‰'²R@Ò§@\n
n<¡~«
"""
b"zMÚFøßNu¬¦Lø' \x05 N "
b"zŸHx«\x17 G9“!-Z\f à<· "
b"{†€4K:O\x7F ™Ú\x17 nŸ•\x11 ' "
b"|[\x11 °¼œFbŸY/í0\x16 ˆ "
b"|ÁæºGüK讋i#˜~ª "
b"~WYlôšF\v º\f Ðý”Ü×ä "
b"\x7F Mlå$RIáâïr┌Ńþ& "
b"\x7F gÈjJ³H\•ž$Ædö½ "
b"\x7F üâå(¤B2╝\x1A ║UíèÉà "
b"\x7F ¢+§ÝýC\x03 ƒØd]àl\x10 þ "
b"\x7F Ô6\x1E ÄYL;ù█ì¢9ó¸_ "
b"€\x15 U1^`F\x08 Ÿ+æ…îõ\x06 € "
b"€0\x08 o÷D†‘‡³Çín¦Ó "
b"Ç0û┼µ,D▓ìzÞ÷6Þ\v ß "
b"€Ev דLù¿bà\x12 'ÁoT "
b"€l\x12\x16 ïÓEþ¤XW\x08 £—…™ "
b"ƒSBLj²FïxØõØk\x0E Q "
b"ƒìß\x19\x15 ÃC/¹l7(ö?mŽ "
b"äy├ôÞ\x7F KuØ▄Ì\x18 c▓{§ "
b"„|ê‰>ÄA,¬¤ç!uâ-ñ "
b"„üZ`$\x1A C+žfЏk\Äë "
b"""
…Ëkâ¹øL¨™ý•Õ»¾\n
c
"""
b"…ýÄ\x1F 4HJ§’\cçhÈÃò "
b"†HøOÁóJЧ‚I\v ›\x07 tƒ "
b"†k¹%\x1A i@÷´R!%\x16\x13 9p "
b"†Á[5bBKƒ¾\x12 "%áïË "
b"çd\x1E ÂüÈA\x7F Á‗%Æ\x13\x0E ÛD "
b"‡†Û’\v 3H"®‰Á\x04 (Þd¸ "
b"ˆ \x03 —"~O»–\r •ÂË`\Æ "
b"ëo1hØ~Jß╣=6üTÀ ┼ "
b"Š*t\x02 ú:JcŒCƒ@%S\t Z "
b"бØ{Ž\x1E Iá—ñ\r È4^P— "
b"ï*■]─éDØÉ░:ðKîB "
b"ï┤æ?_▒Nn║Ë\x11 ØY▓g "
b"""
‹ËÎó\x08\v E!¤?ÔŪz\n
4
"""
b"‹ß!hü·Ou¾»)Hhå16 "
b"Ž\x01 ¶ì\x0E ¯J$‘0<,Ï.\x12\x13 "
b"Ž\x11 »UÕ\x16 Oä´¹Ö¹Šür· "
b"Ž0d\x1C 7·CI‚Xn˜\x08 S%‹ "
b"ÄFô\x08 █rL─ì▓õ!M╣±═ "
b"""
ÄF¢e6ÓHج³!dgk\n
Ð
"""
b"ŽHƧf\x03 OÏ£\x1E õ\!Âll "
b"ŽÑ¼Â;šD‹Ÿ=ß23þ“C "
b"Äý\x18 Õ\t\x00 Eæï¾ê"¿Éò¾ "
b"Åi╠\x12 u8BNæ;!çw─áú "
b"Åntï╣\x13 FÉó┴`\r \f Ó1x "
b"Å¢$/á▓A\x1A ┐\x16 Ùµ╔|T╦ "
b"É\r µ┘W`K¡â´d\x00 qRWJ "
b"É\x12 p ╗\x14 A\x0F êMÄ'╝Í¢¿ "
b"É&▒I\x06 ?L\x1A ÿZü▓ó▒S. "
b"Éíæ\x1F `XKb¥r└╝ófÏ? "
b"‘Ž=“\f zL–‘\x12 Ô#æë† "
b"ÆT2;ì\f Ey¿£®\x13 Y7▓┐ "
b"’toÝ+ÅO\x02 ·ØÊMâ0\x14\x0E "
b"ÆÌìè³\x03 I█òå\x14 ┘ÉSþë "
b"“\x1A 5&0"CEš†Õ\x19 â\x1E ˜) "
b"ô»¡Õ\x03 ùK÷üPç\ ÿ© "
b"“Ï¢\x10 {\x18 O£˜’(bw\v % "
b"ö\x16 l╬ùºM┼«ƒn┼IüX9 "
b"”\!ø’\f B$§…yàDó´™ "
b"”wBÄ~SE\x08 ¤f{eÕ¡\x06 z "
b"”™\x0F q³CLõ¥{d3Ÿôê> "
b"”ßî\x02 m2Båº*x C²ßƒ "
b"•2Ž71ùNý€C3lÔâuê "
b"•>MZõ†E2¡fCTUflÆ "
b"•Ê©{ÍøLeƒˆ8\x0E Õ’,“ "
b"""
•ÙN\f \n
$A0—/ipñnï\x11
"""
b"–âÌë<KC£„=\x7F\x12 §\x00 õ\x00 "
b"—09wìåM‚ž§™Æ;*m[ "
b"˜ŒØËc\e L\x08 ºÕÏh¯¾Ãœ "
b"˜–\x03\x14 \r B¬Ž\x03 >•E‹7… "
b"˜¤iwËí@=Žê¬|Ý\x19\x01 I "
b"˜½ÿ’^ŸNÀ’ê‘î÷6¹ç "
b"™OmVjABUœ\x14 |\x7F ݯ\x15 ½ "
b"™cËeš¥Ct¥¨²{ï\x1F ¤\x16 "
b"™öp\x06\x13 TD\x19 ¯ _³u\x01 j§ "
b"šFO=6<L³‚\x16 ^œ»LSà "
b"ÜP¿J▒┘Dø¼ı®ý▒\x1F àØ "
b"šdEsf\x0F N<´[Î%ÿ2\x1E\x1D "
b"š¡M猻@ »CLáú“éH "
b"Üó6GæBIØ×\x00 ▓ÃÑ\v *┴ "
b"""
ø\x1F ·\x06 ╣AE§Å\n
p╝-¡\x11\x1F
"""
b"›¶þÙ‚–@ž¬\x14 W‘zAuu "
b"›½Û¾Ù½G†¨Wg2\x06 ŽIe "
b"›Â³Øª\x18 Hž‰î*øVž\x01 { "
b"œ\x07 ØŽ-£J<—M¥\x0F 7\x10 %! "
b"£(=ÉèM╔ëò\█└{ Ó "
b"œ©¦ÕŠPJŽ™Æ\x12 ¯«\x14 zÎ "
b"Ø~vM¸²Hóª¡Cº▀K!\x1F "
b"×>ù,SúK╩ÄìNâÖ/N└ "
b"×°ÙêÈOcü\x11\x15 8\x03 Ø╬¢ "
b"á4lÖPìF7ä£┴é╝LÉó "
b"áè\\x18 ÆØ@÷▒ë;%ÈÐ\x14 À "
b"¡lõ”çèA%¿UZõPÒò˜ "
b"¡r1?ÄÇOœ†\x00 šAþÃ}X "
b"¡š.\r óIMI´’ „xVnÙ "
b"í├òâ.#Ofñ\x02 HÅd°ð, "
b"¡Èƹ´ØFóе\x17 qxHJ\x19 "
b"ól\x00 úõäBßê÷rÓ5ÓÅ "
b"£¨N“¹ŒOÛ¨¯nOÛ\x11 ÷¬ "
b"ñóìÃ▄8IpÂÅ\x19 ¨&A\v b "
b"¤ºu9\x02 fF7”ÛáE\x00 &\x07 f "
b"Ñ+═UØ┘KùùÜ{âµ`HÉ "
b"¥•°›\x05 àIw»ÂÛÑÂ6«) "
b"ÑØ¦ÂMPCõ░\x1A u\v ¨Gó² "
b"¥Þü’âbMÏ©ü…Å[x "
b"¦RV}=PAÜ£Ñ;B‰îü\n "
b"¦t7(!•GÕšâ5\x19 ¶þwâ "
b"¦zà\x0F 5\x7F LR‹ø±z\x08 Þ*\x1E "
b"ºG÷\x01 ü┼AµüSP\r ~¾µÓ "
b"§“?[2óJ\x1C ŒÇ/iáŸàÁ "
b"§¨e’|^D\x7F œ\x7F Š¦Ù¾éÈ "
b"""
º¡jûeÛ@3¿Õß\x07 \n
ìÙD
"""
b"©N\x11 p7©N!…PøèäT÷- "
b"""
ªY|¥èÆ@ô¯C²\n
bL<\x04
"""
b"ªœ—\x15\x01 #I߀·¡.”U4÷ "
b"«T\x11 Çû‡C̲Ý\x18 ;GÇ\x15 û "
b"½┤àÔ:lBSî-þ²-ØC) "
b"""
¬\•1€\e J`±9€Ž\f ¿\n
\x1E
"""
b"¬]YTÅoCT‹üNAD° "
b"¬–¡ó\x1C WOÈšØ1j¶3À& "
b"¬›q\x19 †ŒLÿ† IÙp6ñn "
b"¬ýu†Ð(Hñ¬€\x1F Gvï¤\x14 "
b" ³^ì¬CÊŠÂðÌ>\x06 Ì> "
b"8Fà\f èGà€¬{Óé\x12 ݱ "
b"T{ÝúÎG¡¬ÂWê¨z‘Ú "
b"sZñëûB\x1E “ä\x08 °sĨš "
b"š\L\x13\x03 A½º4^ʉQ\x10  "
b"®Yµ»RŸM¸‰Ì`º¸(¥² "
b"«Ø├^"!GЫ|®¢\x01 )&t "
b"®Ï\x04 ±¡ÈJC…éæ\F\x15 d< "
b"¯\x12 ?¨cÊD\x01 ¬1Y¥š-ó¬ "
b"¯iSQ¥kIµ‚P)%TÅÿ² "
b"»iÉ\x0E ªÒCd╣é|Üð<─▄ "
b"»×\x19 q^\x03 NöÁ¢ØÂ©ú▒2 "
b"""
¯·ËÇæ\x02 C\n
¢U"\x17 "ý+\x10
"""
b"°\x16 –P íEÖ‡uFÐ߯Ќ "
b"±Ï£ÖñòCëˆq\!æhÍ\x1A "
b"²>~T?ÖJ\x10 —Dšn\x1C n>ƒ "
b"´\x06 0ÝW)A•žãMu<µp\x0F "
b"µ\x14 ]k=_AÓ°\x10 _/ô\x18 nŠ "
b"µÞåëàÑN\x16 ¢FÛSk\x06 žW "
b"µß©åBìOì¿=Í–‹ù›\x13 "
b"¶;\x16 -VUO¦Ÿôy$‚\x04 R "
b"Âij\x7F YXBÿ×█¦B\x18 Kؾ "
b"¶ÞÏ%€\x15 DH›¯þ\x10 ¶•\x00 ¿ "
b"À\t Ä·ËÿH ö¾\x07 ØóL\v N "
b"·£´Ó\·Lu¦ó”v9‘DÚ "
b"©T¢Ã®ýIÞ«pÉñ┐»KÌ "
b"©ì2uuþMQ▓CX═\x04 ╠%É "
b"""
¸ë\x17 ›\x10 TDoºvZ\x05 \n
\x08 fº
"""
b"¹\x05 4\x04 ñ…GÊ€5kÍZ\x05 n\r "
b"¹ˆ„ã „B.„ªY…\x15 uÇZ "
b"¹Ñ<I€+@¸½š4èÊ0uè "
b"ºA8Î\x12 öLã¦Mä:Q\r ©6 "
b"║Ïè─\x03 ÌCq┤ìµ\x04 ¼Qá\e "
b"╗ÖÅB-½D>½Â╩┴d\f µ┬ "
b"¼P8³\x1A šGf©øüÜ\e ¾Y» "
b"½Õ\x02\x08 ;\LýŽû\x11 VÖVº\x15 "
b"¾©»dª¡CJ»ÀíËbLe\x18 "
b"Áþ\x06 3å$FX®$^\x1A\x11 ¹ø‡ "
b"Â\x0F ”8fçM\x1E ®[?\x08 8º`½ "
b"┬>Ê\x16 i¿DØèe\x0F ╦┴Yÿ "
b"ÃÖéh¥Hù¤þÀ\x05 ³#’\t "
b"Ä~\x17 %‰P@à—ûaßið¯+ "
b"─¯Å▀ìE\x1D ▓O`ÓäÂı┤ "
b"┼)îÉ!■Aüîlë#+\x16 ƒ´ "
b"ŇT\x11 IJOô‹ç–A"¡\v U "
b"Åø„†\x1F ‘C\t §h7®\x1C û2Ë "
b"ÆTÛè\x06 @I¢£wïi«eÖ3 "
b"ÇD9\x17\x1D oHŠ•‘o*§ðok "
b"Ç©Æ9>HïœèçËá<æõ "
b"ÇãœÐ_\x14 M\x01 µ“\x00 iìJìß "
b"╚æ┌ÅÔfG\x1A ¿64╦[Cg$ "
b"Èþðnö\x14 Nøµ\t …Uƒp•Î "
b"ÊYœ\x12 ë\x17 L%‡×5ã\x11 .w„ "
b"Ê«5ºí\t CxˆcÙ¬‘j`Á "
b"ÊÔ ÛŠ§C¢¼H\x14\x05\x15 Ñ©– "
b"Ë\x1E +¾«B/—WÖ;ÔŠæ‡ "
b"╦cAÉÒfO~î²R▒ôtOÿ "
b"╦vú┴P©JBïØ'{ÆAd┬ "
b"ËÈ#)å\x14 MVŽ$\x00 [&\x16 © "
b"╦Óv`\x00 ïF=╝¢\x12 ì╝\n LÓ "
b"""
╠\n
WOØ·N¤▓▀#Mº\x16 ª«
"""
b"Ì|r[¦ÀFœ¬ÎÕ~|\x12 ¢ "
b"Ìïd€éŒN´„”¼SÆëL "
b"Í.Ë\e »\HH‚¶N•ø½Ü\ "
b"═┴tf}┤HØäx░¸`fªä "
b"Í÷ˆ\x1E áÉO€œ¢w\x18 #p5É "
b"Î\x1F -¼:\x7F B½´‰Mc´ì\x12 "
b"Î+.\x10 ÎÁ@b¨Éxûjõ#¡ "
b"ÎÍÉ‚\x17 ‚F}œN\x11 §Ù\f Z\e "
b"¤9qRå‗I8ÉöëmÏ█ï+ "
b"Ï\ ÆÎ‰M§²eî—l B¹ "
b"ÏkõbÈ>D]¥gnÉÏ)æo "
b"Ð-Û^h‚MÀ·dЧ0›YË "
b"ÐBV\e aöH´”q¶\x1E §Gyc "
b"в\x00 Ç`ÿ@º›7\x05\f -æ\x06 2 "
b"ÑMñwÌÀDïžìðÙ¼\x15 8§ "
b"УìrÖÚI█ƒKy\x19 ┬└┤ "
b"Ñæ3Lj>AÑ»\x02\x12 6‹bU§ "
b"Ò#w¹«¿O&²¸M׊ây• "
b"Ò¾ \”µKÖ¢<µ\x16\x16 cìú "
b"Ó\x1A\x12 ²ÿ$Gu´ctSDÒ•\r "
b"ËbR9\x13 µANÿ¢░\x1E\x1D É\x14\x17 "
b"Ó{Ë\x05 êÔLЇ·*QTÍ7k "
b"Ëë╬þJTD,Ñùü\f Þ@>J "
b"Ë».]ÞtLy»ÒpzüWýL "
b"˸xû\·F\x01 ìc┌$\x13 \r "- "
b"Èty©41F{ƒ\x11\x15 vÅ£\x12 ╩ "
b"Ôš\x7F æ\x17\v KŒ OA3¾ê×, "
b"Ô·\x0E £ùSF\t ´¹Ð?´aŽ\x03 "
b"ı-Ò%ì´Hëæ▄^\v ¥mW1 "
b"ÕwÉîÜÜHâ£\x07 ˆJº¢uä "
b"Õ„µ\x04 ×fBžø1,cy\x07 ) "
b"""
ÕËö\x12 §\n
G0€¬\x1E }Ø\f v\x01
"""
b"ıÞSÚú¶IØÿ¦\x1E °\x1E £p¢ "
b"ı¨¿M¶IıÅÍ░'\x1F ò1o "
b"Ö˜\x04 –éPK\x14 ¡_^4¸&=± "
b"×+.‚A\x02 L¹™à\x7F UH¿Ò\x07 "
b"ÎM ³î\x10 G─òA@\x1C ü]èª "
b"×ýšg\x18 {@\x0F ¹\t °Õ\x12 ßÕß "
b"Ø(9B°<Ia!›m\x11 ëWk "
b"Ø9‚JÑ/Gh•¾ZwG¬ê¸ "
b"ØX,\x15 8\x16 M\x15 ”Pö¯T4†€ "
b"""
Ø{ˆŽ†\n
Hu¢8âa\x11 Wû6
"""
b"ÏÆ▒¹}4E6üxGº\x1E ö▓\x10 "
b"Ï┴G▒AAI\x07 ü#âf\x03 ─lA "
b"ØýJú1M¯„s¨’¶Š©` "
b"""
ÙÜ€´\x08 ¬Kî–\n
\x1C Õ\x1A šî¾
"""
b"Úe\x14 bí9L¨šÇx\e »\x1D ’L "
b"ÚŒ˜m°ïF\x18 ŠêœSx\x02 `“ "
b"ÛObæ\x17 ULϤ—ù\x02 «¨6+ "
b"ÛZ®Bi\x11 @¨·Ò³6>ì\x10 £ "
b"█\µ\x1E\t óGbÉÙñnýn±┤ "
b"▄\x1A ü"t├Aàï\x10\x1A äk┐9■ "
b"Üp‹''ÉO…®rb\x08 ÜÝ\x02 . "
b"Üþ’Z ÑJˆ£ä·aÇr½Õ "
b"¦\x01 {\x04\x04 øL\x03 ╣ðüW=hLL "
b"ÝÃþ•¡±L‰‹_²1ÿ‘\e Ò "
b"ÝÏmGæƒ@¾½eV{Ìk“§ "
b"Ýñ\x18\x15 á\x17 K\x05 ½–þZ\x03 #‰æ "
b"Ì*ÈÊıÉIdÁ┤Ó´ú2\x16 ÷ "
b"""
ÞÄ\x02 P'\x02 Iò—\n
±)\x0E ¾‰Ë
"""
b"ÞæOµ\x15 CC9½%\x7F ¹Ó,Í? "
b"ßp¬žìíG#“Ïš¿ˆþ~\x08 "
b"߇ýÅ/ÖI\x07 ²°´›[È’\x11 "
b"Ó;\x1F\x01 rç@Ý®ÖGοÉ\x08 ú "
b"à;b+¡žK^ƒˆá\r ¹‚d/ "
b"Óæ`¥ÐeM´Ø5÷ A\v ╝┼ "
b"Ó¾û&ÔÉG娾÷\x17 LMÎü "
b"Ô\x06 g6én@▓ÅÜ╬,┐\e 5\x16 "
b"â\x16 ‚!´\x03 D~°Ð8å£Uøø "
b"Ô¥ª§z»O"Ø_æ®Yh "
b"ã\x07 ´©±\x03 Aé 6ŒêóCw "
b"õüYlBñA2êÖÈr/¬¥╩ "
b"äí¿M’÷Oî»’¶»Á\x06 °º "
b"å<7Ø\x14 PKù³¼z\x0F ÑÏj\x16 "
b"åÖ÷Õõ›M.‰\x18 °\x7F Ö\å\x19 "
b"æ€Ì~m@æ¥\x02 Üê<»#¤ "
b"æ¶ÎT_×A^¹‰>¡þ(z\x14 "
b"çh\x11 ‡RvI‡˜3\x18 «é™Õ¥ "
b"Þz\x0E a\x19 òJ═àÅ\e CÒ\x00 ┌▄ "
b"éyø10QJj”õxˆµ‹¶œ "
b"ÚÉn<NÄO¡£m┌┌ðqÝ╠ "
b"éþœ)#.J\x0E Ÿ‰–\x16 Û÷Ö× "
b"Û$3ñåFB\x19 Ť (µ>ËJ "
b"ëP™½æTE\„/3\x02 ~ñ'\x1A "
b"ë°M¼¿„LÞ´ÌfÎãÛí¨ "
b"ýº÷à×þMúؽB▒┐¨kL "
b"ìòÅj)wGã„éÌ\x0E ¾˜¡Õ "
b"í\x0E 0ý}\x05 Jº‰\x1D ¦ã”i\x19 À "
b"í‘Z~\x1F ¸O¬§Ï¶Þ\x0E é\x1C b "
b"î\x15 VØÞ\x7F Mö“¼½±&}^õ "
b"î\x18\x18 Ø\f :Fê´ïµÝâµÔ' "
b"î@éŸ\x12 ßD\x15 ‰O=½O ¥œ "
b"ï\x14 Šëœ*BQá1M÷I "
b"ï7\e ¦Ä\x04 CH \x19\x05 \ƒ –: "
b"ð/à\e |^IË©jµHSVå› "
b">]╩¨"@■ü¾ \t ┬┌¿l "
b"ñ\x0F €\x15 \x13 @ß¼\x03 m\r ¿ÖNR "
b"±À┐=ì╬I+ç▓┬}¢-io "
b"‗ëm┤<_@└«ÈÅó,gê½ "
b"òÞieÎýG´ºvö,P”.œ "
b"¾\x03 º\x17 3ÂAh£ØQN=s©¬ "
b"ói,õ\x1C\x11 Iw±ýïnUÚ©P "
b"ó’XÏm\x01 BQ€á\x1A Å\x1F ÇÞ\x07 "
b"ó”õ”“åLÕªX\x00 >^›ß\x17 "
b"óÑhÃWð@rª¤xl¤šq¿ "
b"ô£@mdZJ„¹;ÐàW¼(’ "
b"¶¼üÎR\x03 FÙå8\x00\t LZ³a "
b"""
ö\x11 }÷\n
èM-™àìn“ZÄÐ
"""
b"ö\x15 äñ6\x12 LÚ˜V\x15 ÆDFrK "
b"÷™B\e GŸGy˜¿O\x14 ¥\x13 ±b "
b"÷Á2ìù¢F0¹Öã‹8Y2ó "
b"°¢j\x16 ░7Mb¡\x03 ╣åqì¼ì "
b"¨\x00 ▒╚┤JD+┐hÀñ_æÉj "
b"¨+Â┼ıáJäû$│\ØûÚ^ "
b"ùü˜\x14 ’FBP°ºçpØ\N\x14 "
b"ú>²\x11 ‘C\t »óŸˆÒñ<… "
b"û͇ÉÛ\x13 O¶¿}fÇ\r …ÚØ "
b"üp\x1E\x04 Î#MÞ°fÝäÍ€œ\x04 "
b"üÙíæ\x01 'M4„)-žSáU\x15 "
b"ü஋f½GsŽÂ·ìqTª¥ "
b"ý“h²V€M|ƒ;Çûa\x05 §; "
b"þ\x19\x1C ’›\x0F K_¢”iÉó× T "
b"þBpƒhÙM‡«&[ÌW\x02 FÉ "
b"■¡▀Ø$yH^ôÅñ└░C\x0E ¼ "
b"þ³\x12 {¨&C\e •"‰Ún–—¾ "
b"ÿœª:\t\x08 L%±kP"£•ö‘ "
b"ÿÑó\x11 èûNì¤)+%¶ö·s "
b"ÿÛ7Üá·G˜³\\x0E ë¤ü0š "
b"ÿãZ\x14 :ŸO‚•ù°\x18 }~\x1A Ó "
b"\x00 \r \v sk¾I¿Ÿàkáïà×/ "
b"\x01 QT_\v .@]®í\x16 ¨\x17 /â "
b"\x01 V\x0F ¦²\x1D A\x1A ©)ı░³ÅyG "
b"\x01 g▀\x1C /%J<éçRìáJ=¤ "
b"\x01 ŠÜ[òÎFR æ¬zÜnd "
b"\x02 aïí_zL¬©Ã÷Þä&Œ "
b"\x02 Œ–£‚“G\x13 ½s\x07 ºÚJé\f "
b"\x02 ©Å┤0WLUëîV─A!ðN "
b"\x03 é|ÜÑ\x14 BxüS\x12 ípx0¬ "
b"\x03 Ç>\x03 жLs¥Ž‚¥·;*4 "
b"\x05 ,Ë\x00 SçB\f Îé7ãŒáú "
b"""
\x05 ‹\%âRLÒ¥>]\n
ŒñPâ
"""
b"\x05 تñJ2Lè×ÌýË┌\x16 _÷ "
b"\x05 £>/I¦O1Ÿe\v q Híô "
b"\x05 ┘ƒL▒äAÙ░ÚLØ░ù\\x18 "
b"\x05 ¸¢KîµLçØÇ?øy\x12\x1A ý "
b"\x06\v åm\x18 ÿAå©À‗v¤Åý{ "
b"\x06 TÑŽ?"A/›Þ\x15\x05\x00 ¤$_ "
b"\x06 ÅIÕGMBþÖò.#ë\v ɾ "
b"\x06 ê+î{+IM¼·Ÿ@*–EÕ "
b"\x07 :▓/$ìM¹émÍS{wrñ "
b"\x07 ”K·=ÝD¦±aºÏ†üI\x01 "
b"\x08 E}²\x02 VF?┤\x1C \e ÑôXÉ "
b"\t ÜUï1\x1C IØ’45ð“ç{ï "
b"\t ÿçì>0Oî¨zbsÀ"æð "
b"""
\n
(\f üÐ#Aä«Å├Æ1Õ¸!
"""
b"""
\n
Õ¾ï…\x14 BÝ”:…:Z\x1D ÓÍ
"""
b"\v g8Oµ\t NB³\x18 É)í‡pÅ "
b"\v Ü`\x07 ],BÜ€Ò\x1C\x1A ½\x06 s´ "
b"\f ˆoJ`jD‡™œ\x12 öŒ~°z "
b"\r ù┼Õ┤ÒJ4ɪ\x07 æNé\x15 ╝ "
b"\x0E xCìD–LJ»z\x14 šÿjâ· "
b"\x0E ï~ÝÅzC3»àŒ?¸µžÉ "
b"\x10 $ü“°˜Jx•!nÔ¯D›µ "
b"\x10 qŒb\x18 ‰NÊžx0õ- ”‚ "
b"\x11 ‘\x10 ð„úJ/§‚\x19 w\x04\x12\e 6 "
b"\x12 ╗ÅÛÌ┘H.┤´Û,Ú\x12 n) "
b"\x12 Þ%`”ØI\x13 ‚ÛGˇl\x16 ï "
b"\x13 Žm\t …\x04 I\x15 ¸ÿ¯Xô\x00 Öd "
b"\x14\x11\x16 üØ®J?±ÞE\x03 Ê^\x0F † "
b"\x15 nñÛ¢•E\x1E ’µ\x1F LûrÎ "
b"\x15 Ȭ\x00 |ñOV²,å\n àz¶® "
b"\x15 ▀┴3█cB(«\x15 W\x03 ■~\x14 É "
b"\x16 ¢÷‚ØOKQ³B1œ¸#\x07 Ë "
b"\x16 ú\x11\x0F e\x15 E£µÖOU\x02 ˜wz "
b"\x17\x04 ˜õ\x15 ¼LTµ¿.ç~HIr "
b"\x17 CÏÚ\x10 ´Kb˜+\x11 …•²& "
b"\x17 ºó{yÄI°ˆàäX85:. "
b"\x18 &ÞDìÝE>”|Ìø\x19 ÜÕÁ "
b"\x18 `ª╠VØO▓É`qÏßþñC "
b"\x18 ’GÒµ\x0E Ju¢üô\x16 ¨±b "
b"\x18 ¤åè–ËAóŽ~‹É:0š "
b"\x18 Î}\x13 ¨$Mäø¡/·\e )€ "
b"\x19 $)¡dYE9¯šà\x1E ¸l¶Þ "
b"\x19 Àç܃#NEº!XÁlv\x01 X "
b"\x1A #‰\f «\x13 Hu¸(È27Žäs "
b"""
\e\x1C \n
ˆ¥ôG%¯çi®\x10 &J€
"""
b"\e wý} ÑO\x0E ·D\)\x03\x14 tI "
b"\e Ŭr×€B§¤;Ë깘›È "
b"\x1C ìSzÖ\x03 Bm»ú´Û#Ái "
b"\x1D }ª²Z‹Lï¤Ùîn¯H6Õ "
b"\x1E\x10 }œúØL±ª!«dÞ\x03\x1F á "
b"\x1E IÉ─¤ºH§│c═¨¼H. "
b"\x1E œe[a&Eg¯ýgÆ„ß\x13 O "
b"\x1E ¬8c, F²Ÿ.þÎ/üy "
b"\x1E ÉXÝ\e tLœ¸Xºv`$&! "
b"\x1F ê$þ2Ä@]ì4ß\x12 2ÀØd "
b"\x1F ªM\x05 uHCë˜CxK'¬¹: "
b"\x1F ÷\f ºÔJMk¼N\x15 Ǿ>½O "
b" n±Ãv,J,©‡éŸ\f v\x07 à "
b"!oÈ\x18 âºLa‘œ°v"@\x17\x13 "
b"!‹òÉ8TM…Œ\x0F ’ÿF\x0E\x03 e "
b"!’Ý,ʼnH.¸¨œ§ùÀ‹¹ "
b"!┬ cØøF*ô2e¸IH¸Õ "
b""\x19 Á‡`]I\x1A ¦g\x12\x11 ÎiK½ "
b""â3ª#£Fغ¬1!"±\x14 ¸ "
b""æ9Ì€«Jwµê‡\x01 ¥M’¶ "
b"#s-Øw¤E\t ‹à«Õî•\x19 é "
b"#õ\x0F N¦B\x14 ╣üUW\x1C ü▀ß "
b"$/>)\x01 {Hײá÷ôÕî%\x7F "
b"$DPÞ¿0CV±ñ¾9\x01 ¨Ñà "
b"$«²Ê¤"HS–h¿]k#qõ "
b"$ó}´„DJ(Žâ\x02 [º~\x1F l "
b"%u\x11 BD¶O‰§\x19 jÕñEô\x03 "
b"%Úå0üßNÞ”Eþ9\x11\x17\x06 v "
b"&×é\x04 FÇIq£ÇëTŽä|Õ "
b"'4\x10 `tÙBäé!\x1A &ûy$ "
b"'5\x03 Ør_@ü—¦¥ñnå$M "
b"'?0¼\x12\x01 EŸ© ¾˜ä‚šU "
b"""
'Äõ\n
Q+J$£âš‚\x10\v ù\x0E
"""
b"'Ù\x00 ±0\x7F H(®õW\x11 XY™¯ "
b"(ƒoüV¯GÅ©ý0à\x07\x7F ╦Q "
b")cDÙù±Hν\x7F Û[Jè\x06 r "
b")¼‘îßìNQ–.J\x1A ±Ö\W "
b"*&¨¥jnE#¦\\x13 |\x1E üh\x1F "
b"*B]«ÖÌC±¸\x14 Lé\x10 S0Æ "
b"*€u©ÂZAý–J\x1F š´ÅT¼ "
b"""
*Ã\n
±¥@¹Å0M®éà×▒
"""
b"*ÐV\x00 i™K\¬Q\\x11\x1F ¥Øí "
b"+;█bmJLØü┘øÜ2WV\x05 "
b"+²'Äç H\x07 ¿É┌J>ü¦É "
b"+■ƒàiqNá│Å├░▀┘¨\x13 "
b",ê½Ð|KJîŒ7&d\x00 {BÐ "
b"-+6ŒþBMщ\x12\x7F äëb\t "
b"-0²7ã@K\x14 €\x18\x0E ‡¤Á£> "
b"-E»÷fDH摼¦Bk\x1C n` "
b"-la¦*\x11 DP‰©wxZn¾Z "
b".\x13 Û«u¤F%”\x1A Áâ^Ÿ\x1C ½ "
b".Ó×1ØTGíò¦îí_K╔à "
b"/9¢½nüE²┐oá+\x0F z?\x16 "
b"/eÜ+B³MjüHÑóp╣Z: "
b"0\t ” ¢aDF³ŒÀ‘¢ræ\x1A "
b"0|¡+õ&IÖƒÀ\x1A ¶ti\x05 "
b"0è࿘\x03 O@§÷îòOªí\x02 "
b"2ž)Ž<EKu›B꼄\x17 š0 "
b"2ò[*\x15 9J“‘\t ¯TwW$Ä "
b"3\x07 Òû]˜C\r ‰%ÒåX+•Z "
b"3æäÇjËIu ov!86\x1F "
b"4îN.N┬Kü╗╝ ÇM;E¡ "
b"4ÛµøŸ\x17 Cܳ÷å¾¾¦!\x1A "
b"4ÜßQm÷LG¨xŽG]¦ÇI "
b"6¬F,îÅO\x17 ¶ÿòüj;±% "
b"6ËNSl¢IsˆÓKñ©aü\x1A "
b"7{'ÅzM\x06 ×þbæQÌa\x08 "
b"9OEÐþpG±Ž\x10 ¶y\x0E ÚP½ "
b":R7\x10 O\x19 @ÓüÒFy╬]þ\x11 "
b":Tm•\f pNžšÖ\x16 ™á[¦Š "
b":^OpþXJ”‹î!áo\x1C\x0E ³ "
b"""
:q¸zÛ\x1A Aü┤¼ï¸Ø\n
w
"""
b";ŽYT¹´Hn‡Ið¯[îçÆ "
b";×-\x7F œO@/ºÚ·z1\x16 _Ø "
b"<h¤¬:\x16 I¹¬îÆœ˜G|‘ "
b"<‰ý-\f\x15 N#²‚å ”8”· "
b"""
<║£╣ËIM\n
ìv¢\x0F pNw■
"""
b"=k²ª•\x1D H,§ƒ¾·1´«, "
b"=á░¦~øEJ│õͪü\x00 ~x "
b">7\x0E f{/GT¤™\x0F ã±Õ}Š "
b">ZûoUÓHÖœlK\x14 ®$¸ "
b"?Š#£DøJX½O|®qôªª "
b"?ðNÈ„ÖD)ŒE9"ÜÄ8à "
b"@\x01 2ÈIïED§\x7F З\f ;Ë¥ "
b"@~¼´g@HÕœ¢9ß\x19 xÒÆ "
b"@¨\x13 §Ðû@P©ñ\e B\x1E AÊ¡ "
b"@õp}á)Fô«5U\x07 OY\x11 Å "
b"A5šê;ÊL'•\x08\x1E ˜\x01\x1C e\x16 "
b"AJˆø²%O\«*IÕ¶¿ì; "
b"AY¼®WŸ@ÈœI?e÷\x05 —\x0E "
b"""
Au\n
‚«˜Lâ¦có£ð<W\x10
"""
b"Aì¬ïÈNDw½‗(¨L█┤\ "
b"BC§;\x1A –Hæ°\r Ù]:*\x1C r "
b"Br|W KL>ØJO┐±õ\x0F ╗ "
b"B·Ÿ¦kðF䎉у>—’’ "
b"C5Þ\x19 íþM¨˜5´Ã¢b "
b"CÄ\x05 ð\x05 øK_„¾À\x03 ‹ºUÍ "
b"CÚ÷çšÐDR³7²c,øôr "
b"DYÏ6KpKØ¥Øo "ø_\x1C "
b"DªÍ\ê]G\x12 ¼e*W~\x08 §ž "
b"E–\x08 fîCKs \f ¬Ã¼Ý\h "
b"E¢2i6AGú†&‡ÌãI•ª "
b"F\x1C =eÅúEzäà \x1A µ┬º- "
b"F]\x1F\x0F .\x1A GA”T<þ/[iÎ "
b"F‹¹û5åMù©QMþT¥JW "
b"HNUâ07BŰ\x18 sÕõÕ'[ "
b"HÄa¾¹\x0F O[│Ú"YìÆâu "
b"JM\x11 *œõM\x0F ž–cõøâ\x0E = "
b"JS;\x19 iÛC~®(h8ªÉþ" "
b"Jòî4¼¤JU¤]ÏU\x01 €§‰ "
b"K\f ½b1EC¯²ùèYŶ¢B "
b"K\x12 ñÆ\x19 †EP¥ß[f01ƒC "
b"K–\f ½Žˆ@Û‘Ü&(bÁ’\t "
b"KÛ@Ç\x04 Ñ@&œÕ\x10 O\x08\x01 ‰‰ "
b"L)ÇYŠBN6³~hcBozE "
b"""
M¿ïU•|K\x04 €æ¹pL+\n
P
"""
b"MÚE▀ö³MPÇÉ@¸Iƒ\x18\x7F "
b"NCþt\v VF[µÐâ›ýnz\x19 "
b"N¸)&vìL:¡\x1F ×uI\x02 %Â "
b"O‹ÿ\e\x02 rC»‰¤WFÌ\x13 r\x1F "
b"Oû\x16 ╠ïkAqÜ┤▄¼─¹Íü "
b"P5s¥\v ›M¬‡Í q!›ÁÎ "
b"P¸_Ñ\x0E DB@´®_×\x1C ¤¬Þ "
b"Q“ÿ¥Þ†H¡¼û¡úŠ&À+ "
b"QÖƒêbíB¤±\x11 RNö…|J "
b"REM²ùB²¬\x07 š)oEJ\x10 "
b"Rø²ƒúâIï‰ÐÔ‹X\x02 Dc "
b"SýüäÇùJjº¼!5┴5þx "
b"TE K\x02 ÕB)’+ËâÈ‘vk "
b"TR£Àa├M\x00 ü+Wé\x01 à0ý "
b"T\x7F '†ï\x0F AܹºÍ˱œ´s "
b"U(|ÿ¢ªNa¤'|™yƒï\x15 "
b"U7Ê‘}ÓI†”XõžZÐÊá "
b"UD’³\x19\x7F A̧0†\x13 +»\x13 Ô "
b"Ux¦i§\e G—·c)X³ª{, "
b"UØKÅ╩;LıÖ\x01 Ø\x0F -8fq "
b"V\x18 _gÙ\f C²ž—nzÈ\x19 ¿P "
b"V\x1A 0“^ñ@Ò¹çÜ\x02 Ñ }ø "
b"V&áØ}ÍN'ë$UG)ûÑÄ "
b"VCÉ\x1D èéAtüh╩╬YÚ╠┬ "
b"WEÌ\x1E ò\x02 Fr¡ÿ"<('ç\x1D "
b"WÈnê~ÙAŒ˜‚±~–Àif "
b"WõŸ|£IOK‚hDz<Œþ "
b"X̽}\x06\x0F G‗ì│Å▒\x11 *;§ "
b"Y\x16 [ü(ëC2×ò\x06 ô"©÷ÿ "
b"Y\x19 «ÎH6F\x1C ˜<Gë\x17\x05 è# "
b"Y"œ\x06 ž“Mö±¥\x1F Rì¼\x03 5 "
b"Ye\x04 ¯\x1F RFœ…OUVG¨<Ö "
b"Yqº9ÏGCj±ŠŽ\x1F ;6ùÙ "
b"Y£Õ■░\x1D L▄üGÌ\x16 ╣ÁP¦ "
b"Yã~;D\x03 B¤¸\x07 »3×SÌÀ "
b"ZûŸ°éåF}ر\x05\x0F *+ë "
b"[ì*\x04 Q\v @\x18 ▒Iä \x02 d\x1A t "
b"[ºæÎšy@Õ¸Q+Ç^\v …_ "
b"\[\x0E k\f .ATò`▓[ìɤ? "
b"\dÇÄØRG\x13 óc▀\x14 n1ï╠ "
b"]\x0E ▓î´=IW¥?ÂxÀÇÉQ "
b"]\x1C\x01 $1óFó6¼I\x16 .ÂH "
b"]TH†ã\x10 D0‚½ÐÞþR¾. "
b"]é7n╗─D]æÏÇÚþÞÅø "
b"]ÕÕ/\x07\v IlœUi¹/Aƒ£ "
b"]áï¯^\x16 By’\x1C v…ÁyCL "
b"^{öŠs‡N¦½Ñ7H\x17 y¤ß "
b"_\x01\x1C !\x02 »Muä├W©Å±¥v "
b"_\e ÃÌ\x15 dEÇÉëP▄pÉÚû "
b"_~q\x06 ] A{“õÕv¶ïôª "
b"_Ÿ‰Œ\x03\v I–ÿ1\x03 Áa\x06 M "
b"aÕêié[G╔Å╝3\x08 4áÎ} "
b"bÜhª┬JD╣╝·\x08 a┌ü\x03 r "
b"bÌ\v 6®±B\x13 ÉÆ\t ║ÞÆ×\x19 "
b"c'é@¤\x08 A·®ßÛÄT¤\x10 ½ "
b"cF\f\x17 4ÌC`¥If¥¦\x0E ‘, "
b"cì–Ó\x01\x00 I‡‚ió•t~É "
b"""
dí$VoÔLý«ÂÉ\n
Î}┴└
"""
b"e[¼ØÜËMtï zaô\x07 Ø\x0E "
b"e’¤?³L@S‹`kú’SéÄ "
b"f\x03\f —‰\x7F Oܼ¶\x01 €#)J/ "
b"f\x10 Jç¢Ì@Á”ŒvG\x14 £œ¼ "
b"g{\x18 ´«ªE2˜Ë\x0F\x11 áÕÇf "
b"gÀì\x01 …VG\x06 «µáIÁ̸³ "
b"gÓ¶½b½F¿½ºx~œ\x05 }e "
b"h\v fÅQ·G8×\x04 ┐ª¨LÄa "
b"h\x13 €aó½A\x1C ¾ï‰6Ñ\r IÔ "
b"h\x19 kà[ÇKkŒ'¦|;£z "
b"h”ññÒñOù§Au¹MÉ\x0E ¶ "
b"iMÙNk<N#³˜Ã%3\x18 1\v "
b"ižŠÖ/\x12 C]¨ßfX‰µ>\x1C "
b"j!C–ÿ9FI‹"v\x06 n€ÐN "
b"j/xG£\x17 AÝßVt’\x17 a¶ "
b"j;Tá|öG\x13 ºŽx\x03 ¹À¾« "
b"je8ùš³I0•‚Ÿ\x7F ÀI®ò "
b"jÓ═Î/ÇI┌ëÎzØM´\x05 Ó "
b"k┌1µÄ±F■½¼2s¦\x10 êì "
b"kóMfÆKJ5–Y~’ð40Ù "
b"l%·G›\x18 N½”é\x7F\x1C ¼\x1E\f ? "
b"lˆ\x1A ‡\x11\x03 A¢ C¼š|\x02 ?ª "
b"mxø\x1F ?˜AW¦äØ\x06 r¿\x13 ´ "
b"m£A͇úIΕ.ì¥êQZç "
b"n2R{‰\x12 N*½ÞZ‰?½rÚ "
b"ni©¸DYFpŒì ߆ShØ "
b"nmœ0ZZBO¾{Ø„àP³z "
b"n}\x0E ‘c\x13 JS›Ð\x11 ê©\x02 \\x01 "
b"n®Ë\t ™š@\r ¬X±\x19 3go "
b"n¯=!Æ\x10 F—”[o\x00 ›\e\x13\x1A "
b"oˆa@íoK2…ÓÔƒÿvW’ "
b"pe÷+>NF]¦SØn\x05 Î\x17 é "
b"p¢\-ýäD† “„G#\x12 µ± "
b"pÞ¦kemJKÉ{\x0F ÃJ¯u= "
b"pðx,Ù‡@%Œcˆ\x0E aíÎ: "
b"q\x1C Sò\x03 &I┴ü|6Që´*█ "
b"qâ\x04 XÄwCà‡ïCOx:œÛ "
b"s\x0F ZP'\x17 G|┤Ê6¬░ÅR\x00 "
b"sI┬J?}H{üìHî%9XÎ "
b"s[\v R\x05 ¬O\f µ!BÙ¶Q,² "
b"si4ÚYûF×ù|░êLìÇ╠ "
b"sÝHލaDGŸc9L7*–› "
b"tI\x18 ZS+Fº³™|>Ûíú´ "
b"t®’\x06 ÝgHH’‹@Á’_ƶ "
b"u'\x01 åÎwJì»\x7F f§V—à "
b"uÕoO\x7F fLš·¨Kù/ÒL\x11 "
b"vØÅþ░èMÉÂñðgÒ¼\x18 » "
b"v¶µ‹–®@\x01 Ÿ.Lއz’? "
b"w8╣Ï\x05 ┤Aúûì[\x04 iÙæ¦ "
b"xo°.\r \x19 C\x01 ”€¥[ó\x08\x19 1 "
b"x„ÆÔØøM1 ÔR\x1F &áT~ "
b"xÅ\x0E p-;B<«\x0E GlQgÐV "
b"xéTМÖJî¢årgA¦š\x1C "
b"xõO\x16 š>LáŸV99êú«¹ "
b"y\x0E ƒ#Í\x1E AH’ÕAÆm\x17\x07 – "
b"y5ü═ñ\x11 D\t ëAÅh`ÄXv "
b"y˜zwi¨FL¼\x1E\x06 &d]¡µ "
b"yÙsŸã¼H\x7F ¨\x01 †—3#,N "
b"yù*\x07 \x1D J\x15 ©¬6Qæ\x02 4ž "
b"zcsÊì[F òëßP¹9²░ "
b"{\x0E ŸzÔúC_»ªßX\x1C P\x18 H "
b"{uwH\x18 %Kš¾EÆcœKî› "
b"|mõwï5MI³ôÆ\x11 ,ä…7 "
b"|¼\\x00 H\x02 H┴üù\e ±║E└; "
b"}5\x02 +·ÉEykªœèBŒ’ "
b"}S\x10 bM║N ¥ÅvÙ─*½\x1A "
b"}° ›´\t KÎ’'7FAq¥– "
b"~\x05 ©ŠÓQB2šÙðÿ0]ƒ• "
b"~så\x12 Q\x13 E/–òÎèÿ%>‹ "
b"~àŸ>†uMV“\x10 ˆuî\x1C [ "
b"\x7F U!ÆvLL^¸\x05 ²Ij¸ƒ( "
b"€\x1F þò—øD¨PßÓÿ<ô´ "
b"€8(¤\x02 ªF\x17 ˆÎ¹ñ\x16 á%± "
b"Ç@\x13 <«\x04 M>×ϱÙì\f\x1F c "
b"€j\x17 ‘€îEÞ¤xH\x19\x1E ù2D "
b"üf`\x15\x19 ;G$Ø┌(Çü▒9$ "
b"ü~Í\x06 ÒÓM║äZP:8Þ╩à "
b"‚0RKˆ"I\x1E ¬—]9»V~w "
b"ƒp]Ì\x0E ^Bd€-•pÀ™[× "
b"„\x10 Ë\x1D\x13 ßD\x06 °“¦/-ö¤Ÿ "
b"ädº:▄\x1E LeÉ\x10 ┤│Ó╔79 "
b"äü9µÉ<Lpâ"7\x1F sØ|° "
b"„Õh\x1F\x05 ;M\x11 °BŸµNk0# "
b"„à¡E ÅO\x08 ¿\x18\x13 0ß½™Ê "
b"àR▄1¨▓NñûЪ¥¬Ìì× "
b"…aÐb£‡N6¥øÁõýè\x06 û "
b"‡VŠ+3¡CtŸó8É\x15 az( "
b"‡bº:\t +O\x18 ©,,“B°¬Ÿ "
b"‡²ðg±gDe³™PXíÍ[ "
b"ˆ$.lS-Gœ—æy~ÍWùA "
b"ˆœc§ù[MÚ˜³Ð¡\x04 Ù¶¿ "
b"ê×>v¤{N¸üݧzL▓\x01 ¬ "
b"ˆÇÿ¡MÂIfŠúF/¼Ö4Å "
b"êÊ\x1E <Þ0AfØ÷\f Ò¾|╝¶ "
b"‰k©j¬iKVšƒ¿Y\x12 ‡©# "
b"‰ŒÜ©®CMb¨$\x1D š¤¹û% "
b"èeÉ┌ÌÑH,ø9\x11\x17 £äí┘ "
b"ï[ Áp└A*ÁìÇ»ò«ƒ\x05 "
b"ïÅJ%ÒnE¥ü\x02 \ú5mf° "
b"ïôcÓéÞN╝▒Åål\x18 j8Ä "
b"Œ~\x19\f "vDÝÈŽø%”B9 "
b"ì:!ôà¼KTØe à¾lk\x0F "
b"ìé\x7F Ã╣ÏCV╝\x02 ç>ñä\x15 F "
b"ì©\x03 \t ñ@█éª╚»Aûèñ "
b"Äv\e a0E\x1A Å;§býEQ§ "
b"Å£D╔®»H:Ñ\x1F\x07 ®ø‗\x0F d "
b"Åð└\x0F ■\e B\x14 ╝=aØ´pà/ "
b"Å▄H╗U(C°Üh×?ΫA┼ "
b"ÉÏþiÍ─@<ê\x11 ö╦G"ný "
b"É█ÄW.ÛNúû!TW■¢É╩ "
b"’\x19 A\x01 Q¸Dl·Sè]ÅmB> "
b"’j¯³\x07 \Ll£6=ª\x1D Âjd "
b"ÆÂ├Æ\t ┐LIì%\r \x17 Xð\x18 ) "
b"ôfí\x1A ╝ÍG╩ÄÉ▒`\x05 ╬Â■ "
b"”¨@\x13 §ÊBfˆ^ŠgÀ¶®t "
b"•>\x02 H{åJ0–B2A\x18 ¬å\t "
b"—O$&[hI5£¦Ê7º+\x01 × "
b"—XÖ=Ç£N’ƒ¸ü°•\x19 k% "
b"ùZ_\x7F Ú\x1A M╔©Âgê╬ÉÂ\v "
b"—dyÐÛSE…‡J0€ÙòH³ "
b"—fPRžñKNžÒ\x06 ¨\x19 >íE "
b"—›†YžÉ@0‘ìá9ÐØ\x07 È "
b"—æ0y<ÅDë²½gn²z!è "
b"˜W2‡NEH1¹\v ✙ûÎè "
b"˜šóÓÏVD¯œ\f |ï„ëE "
b"˜Ý\x1E à±$G%‘˜3Õ¡\x10 ÙX "
b"™\x08 E€¯wE˜½·•ˆ\x18 )BE "
b"™R–\x00 ¹ÿHdzYé˜\x18 «M¯ "
b"™Ö¡fšªGé¨gÉ\x12 ¬ïo4 "
b"™ä\t •\v \Mú¨ ¼çde#V "
b"™üIï²óE°»bÙ?\x1F c\x02 — "
b"Ü\e %ìÓÿCàûÓÈQ╝\v\e ─ "
b"ÜS1)ü7C└ûìî\e ª\x1D\e ^ "
b"šðÍ\x11 ÒkK,œõizš„\x1F w "
b"ø\x05 °ÄÛ╣H¶üäËZï§à¯ "
b"ø\x15 ²«_┬F\x18 ëk{ß`\x06 Å┌ "
b"""
›c~·³¶E\n
¬»Ç÷L0Ì\x1A
"""
b"ø▒/cÅFJ\x10 ¼m,e\r \x15 $¯ "
b"£12╚¶\x19 N*ò±ü*(╔&~ "
b"""
œÊƱ\x19 ÅNU£\n
5YyžìM
"""
b"£÷\x02 cõ&C▒Å\x1F eÊnßþ\x12 "
b"Ø/¤¾¨BN\ñê=æ÷_˰ "
b"ž„ç·ó,IÔ‘G1\x1C K\x1D Ü\x0E "
b"žº‰%‹.N\x0F ¼\x02 Ó7§{ð| "
b"ƒM_SÀIN▓ûÅP°ÿ▀¼µ "
b"Ÿ\x02 W|\x14 KJ¼ÒÔa\dVa "
b" \x18 :+ˆÒL\x10 ‰h>)žðå "
b" 4šÅ`M‡†¦\x00 Èÿr{{ "
b" IŠ|\x05\x14 I\x1D ¦lMÁu\x05 ;· "
b" _eξˆM¹ ¨Ñ½ÉœeŠ "
b" ¶B|÷îD÷¹\x1A ƒ©ÿÙ˜\x7F "
b"""
ØÐ\x16 E3EM·\n
ÝKæ/¶I
"""
b"""
¡f\n
$ó‚F—©\x0F ¥ˆï\t Ú\x14
"""
b"óeýÊʳO¢êúiìü¥<õ "
b"£aµö\x06 ÎFz‹Ruž\e 9Aì "
b"£†oý@\D\x03 ·'YS~ä$4 "
b"£š|’À½GÀ™pÓ˜œþÒÊ "
b"¤‰B¹\x1E\x07 BQ›Ê{\x16 fzùŽ "
b"¤øŠß\x12\x1F HÉŸÓë)à›\x1F ñ "
b"¥ìje>ëM›Ž9ýeXG÷y "
b"ª░p\x13 ÒìB╣Ö\t 3±╩»\x08 N "
b"º┬6¸YnFmª╩Á┘2'æì "
b"§Ê\r ©à E\x06 ¥¤C¬4Œ\9 "
b"¨\e Ê%4ÿG[¢Ï\x04 “s\x0E\x01 – "
b"¨<„r?lI;œ¿\x00 ƒ Ãú– "
b"¿É«Ê·A\x03 áÿ\x06 \Ë┴é "
b"¿Î\x12\x10 wD¢Ü┌ØE"~zµ "
b"©k4ÛH#N˜˜ËŽŠd^Y¬ "
b"®ó«▒█\x13 M/¿Ùɱ9ú©\x01 "
b"ªÙ\x14 ”õCC8¸î\f Ásv\r © "
b"¬■×█¾õBÉø3*ôy\x1D rÈ "
b"«'‡Œ…‰G¿›ó÷3y\x10 Q\r "
b"""
½¢x4¼\x1D HqÅs,¯Ùñ\n
\x14
"""
b"«Ëf–»aB¶©;=I†LËå "
b"¬\x1F\x11 Ó\x17 ÓH~–â06·&MÙ "
b"¬ºß®?\x0E Dð´KÀ\e hàˆ\x1A "
b"¬ýã^ö©O?™(è\x02 1\r CÖ "
b"ÿôÛ)pEc®1С\x1A –ô” "
b"®ExÞk\x7F E%¼²J ãóÜž "
b"®aÚ“Ñ,BïŽ>%+N¥[O "
b"®ä¦yz%B–ºÉãÿü"˜] "
b"¯\x11 ´|$FA\x03 ˆZ«[©À®| "
b"»ÉƒÏvÑHçô½V©▄~¾Z "
b"""
░\x14 æ?IîM\n
åO┬Ô±\x1D pÉ
"""
b"▒ÅqÓ{áL1àì2R+\x15 /┌ "
b"²5W\x11 ÜÜHتÚÇá\x03\t €\f "
b"²’{Ÿ,FAǾ\x1D ®ïlæ\x0F 6 "
b"²Ó‰¿\f g@³¯ÁE²ìòXk "
b"▓Í«C'\x00 Dõƒ¹.╠TõÅÜ "
b"³Œ!ìy‘A‡¶…Ø…\e áy@ "
b"³ºõÛñßD§»\x1C æÞ‚—§ž "
b"´3?\x7F\x15\x07 @\x11 žé¸Çp]I” "
b"´;‚ZdÆNq¨\x18\x05 ؃£åç "
b"´MtšàfOP§6\x01 ²œxQ< "
b"""
´†àÂGÐAí„Ìã\n
\f âˆ\x1F
"""
b"µb«\x08\t ¿Eâ›CzqÎ?Ù "
b"µ”\îßœJ\x1F ²/F<®E¶æ "
b"µùú²{½G”ŒËÕê»"< "
b"Â\x0E ¹Z[ÀI$▓Îì7u<I\x1D "
b"""
ÂŪ┴ú\n
OÝåÿf»|?ó\x11
"""
b"ÂØ Xà│LÌ│eÏÞd░X├ "
b"¸\x11 ´fÔÂLY¨6%þ0é%” "
b"¹b\x15 MïNEWº\t â\x1A\x1C éèÐ "
b"║ ─└ªEOÈѹ\v à#^É« "
b"╗\x01\x16 ¡╣åHØæ0ëC$¸Ñ "
b"»\r Ÿc:ÍK”¨Ì±\x19\x1A ﹃ "
b"»-É«ÀùJ\x1F ®q\x07 ¿a‚[\x1F "
b"╗ëì└}®A÷ƒDx┌\x0F ÀÚÝ "
b"½ sžáxN?µ1‘öž•Ý• "
b"¢Îmàç░OCØñ¨aö§Yñ "
b"¥4TênmB²¼ÉV,w\x0F ▄v "
b"┐ ]AõúIì®Ö¦"╬┘|Ù "
b"¿5ž\x13 CÈI.‡JjIY,#³ "
b"┴YÂØY¨Bõ▒F: î¤╦+ "
b"Á”90\f Ò@\x07 ˜Bÿ¨\x14 Cžr "
b"""
┬r░Ò\n
]Jõàõ░\x04 U>Ém
"""
b"Âx=8WŸC-•ò\x1C îR5ÕW "
b"ÂÒn;©ÈIk”OÁ—kM\x15 • "
b"Ã<öd£¤Mtª\x7F ¯9X\x1F ¸\x7F "
b"Ãäñ\x12 \r BF´£\x16 Ÿ¶ê›7T "
b"ž^?mÆH\x13 ¬K‹\x18 jH¥· "
b"Åȳ³¢ÃC\x1D ´Á|pWqu‚ "
b"ãMäp{ J ú\x1D 3 Ëüê0 "
b"Ã#hõ-ZBTü\x11 iP«BÞª "
b"Ç“çÉytN´¡ßŸ\x06 ”i9\x05 "
b"È~!§vuM{¢‘ؘ¼ñ+ß "
b"È’\f 9ÃìFºš¿*’\x00 ÖdÙ "
b"ÈòÂø'ÈGߟøQHÄ\x18 íæ "
b"ÉUÏ!=1J¼‡”…΂Ç_; "
b"╔£¿Ø«²C ┤±\x05\x02 Ùº─\ "
b"Ê1"ß \x0E K\x10 “IŸË¼˜i; "
b"ÊÝ`/d„L\x7F ¥ÆÆ†¼Ê“ "
b"ÊêkØ#mEˆ£óFÃ;ìµ\x05 "
b"Ëuø¸äqHs˜Ôø0Û‹îº "
b"╦æ┼bØé@d¢Tq ù¤Z¼ "
b"╦║ÿa\x08\x1F @ÉÁb¸Ã─Ø▒A "
b"ËÒN›B8Fѵ\x10 |\x04 ž\x08 -Ï "
b"Ëè$'l–Gâ½wSâ4W9È "
b"Ì2Nc¶€I®«.ݦ]Ì¥* "
b"Ìh¸w$ŒG\t ‚ŽìEþξ' "
b"╠\x7F\x03 m¶HYéØj@æ½■\e "
b"ÍACxÞgLÜ‹S˜gŒ\x16 žû "
b"ÍYª‘gýD3¶; ¢=¾"æ "
b"ÍŽ’}6ñNk‡¡È¸ªô}¢ "
b"ÎþžÛºÇI»“ÖE•d\x18 p+ "
b"ÏDNë WF—‚KŒù\x00 3ŸÊ "
b"Ï‚”ðïqH=›ä\x0F Ÿ!lÛý "
b"Ï»-Xa[F´–ë›þÜffå "
b"¤ÚÍü╬ÜB▓║Êý▓Õ\x08 ÐÑ "
b"¤§î\x04 skD\x0E òþqºØ¬\x0F ½ "
b"Ð+\x04 c:îN ®P\x17 E&”‘\x1C "
b"Ð>“¶å!A–œT,¨\x1C ¡¨~ "
b"Ðþ†ñI©Fߘo¸E \v W\x14 "
b"Ðpg·§ºMVº\x0F X'Å╬Ã, "
b"ÒB*:h;J&©,½¹J±ÍÄ "
b"Ó\t ¬”«ôI\x1E ¹\Ò>\x15 HœÇ "
b"Ó6óµùæIU±øDŽÄLc§ "
b"Ó@º-z8N\x16 ¦\x11 Î!ºPQò "
b"Ó¼ëM»NOšœi9×Ä¡G‰ "
b"Óæ|‚\x03\x1E D2¢7^D'ˆ›\x1C "
b"Ô)\v „ûÇGx¹}ê¼äRÇ\x13 "
b"""
ÈÅ\n
móëHÍå'╝\r Vê\e |
"""
b"ÈñØèeµK`ØÈéáÏsEº "
b"Ô« ÓòœI²—`t:•¿Å_ "
b"ıcÑ(è\x1F F¤ìÔéàW\x10 :£ "
b"ıÃÎ0█ÖN\x1F ì¤ÏË╝òÖ "
b"ÖXg—ß\x12 @Á®9C`o¿\x1C "
b"Ö“8ÝìôIn™úéj©X|â "
b"Ö¹Ÿã=XF¥´Yíå\x13 üî» "
b"×Ç[ƒ *DÇžaÆ<Žƒ¿\x06 "
b"Τ¦öÀÖGªÉ<4N=§Ôƒ "
b"Øgw7*CCvä˜ÞûÙ–G "
b"Øœü]ãdH3¡£Ñ.X®£š "
b"ÙŽ\x17 r\x1D RK@œm_Y\x02 ßÒ\x12 "
b"ÙÅGÇ®\t FDº&D—÷3\x06 ý "
b"ÚZ¿:\x19 lM ¾Ü &Œ€\x1F ¾ "
b"Û\x1E A\t\x00 ŸCz¸`ùü\x04 z¶€ "
b"Ûl\x04 ;ß'H\x1F §R üàÕ“I "
b"""
Û¾o\n
ÅÒMu¼k£8cj8m
"""
b"ÛèÜþ£\f AﬣÍxtmõN "
b"█ý³Ü¥nO}î\x1E ãi¾ØÌù "
b"Ü\x00 ±\x01\x1E PIŒ½Ç\x19 ï\x10 R)b "
b"ܬ4…\x06 ‡K7¾\t\x1C À\x1A ¹ýM "
b"▄┐âE\x1A ºFàØMõÀÛMæà "
b"¦\ÃCÏrH╠ÿüêqCì╗\t "
b"""
Þ\n
F`¯ÈAÚƒ½»kà€\x17\x12
"""
b"Þ\r ý‡Ö @š¨‘TÁͤÀ\r "
b"Þƒ'ºîZB¿£\x11 ”AΟ\x04\x00 "
b"Ó4âMµ■G╝ïÍÅB\x16 ¤ÙØ "
b"ߨ¸B┬\r DÞì`g\x11 ê\x17 ]\x01 "
b"â•Y@ëÇE\x13 ¡¯ö0ö\e ÞŠ "
b"Ô│Å/ÃúAã┐─V│└S©╬ "
b"ãe\x1D ±à\x06 @;ƒ\r A,? È@ "
b"""
ã˜Å…‡\n
Fx†ÀóX\x17 Ž>(
"""
b"ä\v 0—ó³N¤Œ×\x15 ~^2Ș "
b"äÙ':2¼Ke¿«qêÅš\x13 Ê "
b"æ*·˜ìwAe¬¢$\x03 ˜{\x05 "
b"悉aNíF¸œ‹¶^÷ï3L "
b"çpŠô‹ôK\¼Ó¨¢Oc6ö "
b"þÑ\x0E ¿Æ¥DeÉ¿CBÊ6û\x12 "
b"ç©¡\x14 üÏA5®O†Ñ—oʬ "
b"è\x17 Ëtq\x18 M\x01 ˜‹lyë\x15 úf "
b"è#\x06 Ç>ðC×–ç"û\f è¼Ò "
b"Þ╚¸\x01 ▓ÖGæè÷\x11 n½║\r É "
b"Þ╔u\x07 Ì\x10 Hqìñ\r Ú¢ë\x13 { "
b"Þ´1╠Äb@rØÍA'┴-^\x13 "
b"ÛÅälñcC@âõ[ª>▄78 "
b"êö!\x11 áGð‡æÚô4{Þæ "
b"Û├£»ünH\x16 ÅFãļþ░O "
b"ë\f\x07\x19 ÈFHá ƒ.ÀLPÿ0 "
b"ëJbPƒàJ˜ƒ&¡Ñ$;ñI "
b"붬½ˆ\x0E F)žmúÎVïJŽ "
b"ì&f¯\x07 :Gý›¨\r Í‚óSò "
b"ìø\x15\x13 èB;žL‘\x1D b즿 "
b"ÝÈÅèoÊF\x17 ñÐç┘\x13 ƒ´Ä "
b"îÑvádzBç¯áúAüÏ{² "
b"ï\t ÜÁñØLþ–²f)—TØù "
b"ïw\x1D jå_M Ž\x00 *‚Z¢Ìp "
b"´Ó9Ä çK\r âêBɳs§° "
b"ð\x10 è\x06 \r ÞJÓ¿¶ö¯Ñ—\x08 "
b"𢠤voK\x06 §Ô\t ‚\x1E ÷Ì\x18 "
b"▒:©_·ELÑÒåþìËäS "
b"ðç#}\\r Hhª&¨®ˆ6ð@ "
b"ðö¿±Ü<Mn™Ê¡Ý\v Ã*y "
b"ñQOË\x05 •@ù’G«“Õˆ+ "
b"òªÏ\x00\x7F\x05 Nÿ‡w±´háÖ_ "
b"ó$ç9Ç|Hâ–¯‘ø0>jO "
b"ó€ãyFòB\x00 ˆ¼Ì€¥Tñž "
b"¾─Çb▒\x12 J§Ø8■NI]£║ "
b"¾Ú╣×Ì\x1E B©É<|eã&\e\x12 "
b"ô\x18 O\x07 ›?D$½¦–\x17 ÇÀᘠ"
b"¶Yy¦-@$ìD¡Ëï\x19 !ý "
b"õùb;ï\x1E Mr£û×Iºsᜠ"
b"ö¶\x1E =MæM+¸\t z6žÏ™û "
b"÷\x01 Lj6^G)€îÝ}¬Õl– "
b"""
¸\n
w\x03 ÄÇB_®ÅF:\x1F ÈDs
"""
b"÷4Dï\x08\x1A Jó€Î\x05 Ôô\t T= "
b"÷Y^a¹¦@°‰D\x0E É”~\x0F š "
b"¸Ù\v æsFFZ│Ò╣\x01 írü\ "
b"øï½™|ŠDA¿Ó0@î™Ç\f "
b"°¸'╦┬ÚNF▓pì:(×Ü\ "
b"¨k─@N\e C÷Å\x10 Û\x1C vÀÓ─ "
b"úHŠ™ñºD΄Ô\x01 Š@\x0F äb "
b"úP™,!=G…€¬\x0E A/Lÿ™ "
b"·ò╔\x12 ├\x14 C·«^\x17 Ø\x00 V¬ð "
b"ú—mÉœêOà¨\x00 ßw]º:ò "
b"ú°@yÊ€Hÿ¼=§ÕVÿôR "
b"üI\x15 ¯oÚI’¥\x11\x16\x00 Ç7Ü5 "
b"üdq¿è\x04 KÚœ\x03\x07 ÉÁcûô "
b"üiXÕ†XEršbPFÇèKõ "
b"ü„\x05\x14 L×KÜ´¡ž>Cþs! "
b"ü›Hìâ5JŸ´³$Åk\x7F Má "
b"ü¡Sûµ`Kdª#&É>Ä÷‡ "
b"ü¶ãcù9Bã€o¥ã]ÚÂ{ "
b"ý\r œÖÿE†’U\x10 <\x00 Ú\f Ü "
b"þ\x00 #šPüFœ¼’ÎØ´<È» "
b"þ\x05\x1A cä´Lå“ÙuE÷&\x1D ä "
b"þ„šÕ‚ý@-¿Àž,-«\x7F \ "
b"ÿ\x06 ~\x17\f \r L\x1E ‰È®r\x13 Ëêð "
b"ÿϳË,»H‰¯Œ”ùêQ€¯ "
b" ÷|x\x1A ¼@3ÉuÂ▀sj°@ "
]
SELECT
`property_group_option` . `id`
FROM
`property_group_option`
LEFT JOIN `property_group` `property_group_option.group` ON `property_group_option` . `property_group_id` = `property_group_option.group` . `id`
WHERE
(
(
`property_group_option.group` . `filterable` = ?
)
)
AND (
`property_group_option` . `id` IN (
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
?
)
)
ORDER BY
`property_group_option` . `id` ASC
LIMIT
500
Copy
SELECT `property_group_option` . `id` FROM `property_group_option` LEFT JOIN `property_group` `property_group_option.group` ON `property_group_option` . `property_group_id` = `property_group_option.group` . `id` WHERE ((`property_group_option.group` . `filterable` = 1 )) AND (`property_group_option` . `id` IN (0x0000C5DC07BA49C3A020438522C70CE9 , 0x005448D447F04B38AC243BD9184CAB80 , 0x005B7D79E6954928BDCC73416CB4CB14 , 0x0092907944F8487998F903520D6DE049 , 0x00F08D438BBD497CB435338F80928F8A , 0x0160BD9EE4D540028B1E7320BBAB99D8 , 0x01A4A0C730314B73AB9CA42CE780A76E , 0x01BF970534B3413283CBFB1EBF02D0A4 , 0x01C14272CCDE417A848A3C5CF7A8FD2C , 0x01E6153D53CE427ABF814C252860C642 , 0x02887F8A5A8A4F3499AE6956BD1E5AD3 , 0x02905F599AE845F3A0513383AAAB50D2 , 0x031BB94463704F3294F2C81C24A9AB34 , 0x033E6E60024043EC9AE81638D64078DB , 0x034A2E7D79FF456B9F951337A588D0EF , 0x034B6F719296401790665CD8833989D0 , 0x0356C4A5EEC74283B22CDDCFA7C062BD , 0x03DBA70AEA9149DABB26663B14E118D0 , 0x0412C9743A564C39BB49DDCB8A84424A , 0x04378725CDD54C5A9FB17AFF0A30A6B0 , 0x046BFA12896043FA91414F39A37D33C8 , 0x04CC5E9E69D447E4BA8B4776F35354F0 , 0x053BBC4041EE483D96C0DF3E7F2B6255 , 0x058378CE0D7247A38FF65FF42EC3F361 , 0x065EB38C72B14452B10E90EB2BADC0B4 , 0x06D5F40C1C4A4DEB91342F221F50161D , 0x0817803E425248E7AAF7C92450D5BCC6 , 0x08221DD723084DDF982B962A6458EC37 , 0x08391AC7169049668B56BA15C6DA90E6 , 0x085685CF627B491D8269547C96B2FA7B , 0x0862BCCBABA44A129F8DA21FED27F7BB , 0x08E99EA4931D43BB98E95F52A0149F6E , 0x08FBEDF6526241BC9E26FE90DD81496D , 0x0949936EB7E140B19B668581AAAD128F , 0x09774C77ED64480F9ABE95867B0F3948 , 0x0A1B9522AF9B4BFF9D535B3350FC48D2 , 0x0A22D8AB2206487183578A575B0CC744 , 0x0A5FDF2742F04D78A2913DB534266D03 , 0x0A673255B5B54CEBA83FE1AE455205D9 , 0x0A798B7716084A8B8C3ED5A380544187 , 0x0AA70F414FBD4544BCDDEC2C31A9489A , 0x0AD798E6C2A1417682C1714AF0F98DCC , 0x0C1744064352412CBD893EB3D927CF9A , 0x0C18DFECA6E846F4B7586E5B48E1EFF3 , 0x0C4E0ADE44624E9387025E366239C0A5 , 0x0C95783733D3439C8BBDD773382976B1 , 0x0CFF334E027D48A381EA83E65BBE92BC , 0x0D2B872DEDCC4A40BC9F1077F24DFCC2 , 0x0D96688CFECB40D5844BCA7EC61F4C8F , 0x0F138CF259E848EBB210D9704605EF5A , 0x103494C52546405DAD18E65EC316EAF7 , 0x10C5262E62A04F2DBCE924A6CA426A0E , 0x112B694D67C9482E851EADB27BEBB737 , 0x116EF02A2B7D4D6284C1A44BD26A73BA , 0x11EB3629A7B7490C8825E2C45BD645FA , 0x12E92776FD054EE9AB55FCA24A21C002 , 0x1319CA299ADD4C399D558D73A79B1505 , 0x13301F2EE49F4EBFB4586F45961DD22B , 0x1366C9B381D145F7B1050C87585DEA5E , 0x13B8A6C5A6F74D34B9DF10A69C01B62F , 0x14048F011AEE466882774BC15F1FBC6D , 0x1432CE667DD74CE1B7EB95F75FF2129D , 0x144707C8494C478A8056A04F5274F34B , 0x14A471DFAD7A4519910064EC64C04896 , 0x14A73D5663BB43D3821621A379B80F66 , 0x157B0C38A348439881796524015C890C , 0x15B06E7AFE334167B66BF268253AAC47 , 0x168832DD0DA140138668E44298E8B47D , 0x16BA7B9E4E0445B5BE6153C1F727C40B , 0x16FF470C4B6D475B83079258CC247740 , 0x1750F8B0740F463F895E5B94610FED72 , 0x1767EF4B74084E58B5D48B7368A9126E , 0x198CA28F08C3492AA911DE8560EFE7A6 , 0x1A58221CCFFB4EB080467DBFDD615578 , 0x1B4CB5B5D6184165B7DCEB349C13382B , 0x1BB5F62417C34220934129DD7B7BB539 , 0x1C8601CBA2F94432BABF1008092D8A3D , 0x1D1FC4F66A1645CEAE0BD42A94EF5E04 , 0x1D9C4F300D6647BBB3F7CA3944A0C965 , 0x1E5A4495498049849A7800B90975BD2C , 0x1E69B642B7B94CFDB53E93D7282A7617 , 0x1EB5FFAE56D74A5484FBA21EA1539CF7 , 0x2015F78EE7574440BE2FF98E853426E8 , 0x20517A60D7DD43F6866AB76889361D0C , 0x205343F4793047ADB29E3C8D632A7F84 , 0x20959155CBDD4311895DA013E2411C34 , 0x20B6199CFDF54F3E9C7B21C3BDB3B6DB , 0x20D926FFC472414EB5AB86C3C367023F , 0x20F197CEB19241CC85A5FF3BE802D337 , 0x218E4C4D3223483CB6405DAEC7C92DC5 , 0x21E39E38DD6C4F6B8BB265D759C32398 , 0x2212A930392542E7AA6414B39D6F7467 , 0x223C2FB8C74D48AF8062860CEE57AC8C , 0x223D22547D124A98897D3F6ECDE84ACD , 0x228AF76A04CD4710B1D54C91C19D0606 , 0x22AB0E3A4B4C4C84B96EB482787C2646 , 0x22E30144BB2B41658BE64AC5B61B477C , 0x22E9B2FD915048CEB8482E578A850FE3 , 0x22EC1CF49E1047E1B4775DAEF3B8190C , 0x23B3F42F53884946BD2AEE795A0454AE , 0x23C061770EFA43E1910B70591F07895B , 0x23E97090B22A4E308B071144989745E8 , 0x23F2F787928D47CBBB9C365590EDDBF0 , 0x2410815DEB5843ADB797524E184067FD , 0x243423BE0E524E6FB62E726AC839019C , 0x24428662CD6840878881205E722C74D7 , 0x24D3E96F3A12442F86D27151836EEDB4 , 0x250108567E2342A493806810EE81BB6A , 0x252532AE21EB4B1BAAB0FDC8AB166531 , 0x255AD3160E634B49970D598E3C80C281 , 0x25605580A932477DB82088EB1BFBCBE9 , 0x25C03E5608464BCF9FA48C5489C58638 , 0x25D6298763664D66AAEF6C4C5E449549 , 0x26A2B0610A324D09A65FFEBCF8B2A890 , 0x270CA9E5A5284EDF958FFB0CF1D3D33F , 0x274CCC2C37924354B9AF38F6474CE460 , 0x276AA041F75A4C56A0F6DB8A0B83057E , 0x2858057E2FE94B46BEA9CFC46CA58B98 , 0x2886E4681E4C49D9AB838B77BBEEC4BC , 0x28ADF3FF8E2B4F2C85ABDA2412E7356D , 0x28F3D42AE2E94A468B34F756D565FFCE , 0x2958B45BEAFF45CB97F3ECA63C22963F , 0x29943FADFD1F46F2BA243012A000AADE , 0x29AB1EA994AB4FAEA09635A83D8EA9B6 , 0x29BD5A6BA5574299AEC53CDE88150271 , 0x29DA0541EBAD448A8F85C225B6FE4359 , 0x2A19407F352B4387A59C64AFF6F2171E , 0x2A575A27957847B092BEF275E43F46B9 , 0x2B9E8F7C33F243D8ADBFF838BDB4CAFC , 0x2BA7E13873E148588238024ECCEAD22E , 0x2C38229BB776400E8EB6C3C306851200 , 0x2C6AD70160764E9883B8FB1F0C9B3E5E , 0x2CD9E5A582BB41289B5C560240FB54D6 , 0x2D262610B94441B5A322B2EEA27E6A4C , 0x2D9E7EB1859A4B2FBCD1BB4810795912 , 0x2DC4A2F040F04DB8A2C7350625C65192 , 0x2E1827FF70124547A91234EA02CBE47B , 0x2E458F338D2845E7A6F1E22F9887D6A8 , 0x2E47FD6E67754451BE3EA5594BF55163 , 0x300384FBA05F4066829E46411570A417 , 0x30758B4E25F74594A8B0142D835EB350 , 0x30889333868841FE9209387A88513303 , 0x30FDA5DB3BCC4B268D0A2BF3B05922BE , 0x31C8E3CF71BE414A916CB5F5DB7D7EB8 , 0x31FFA29607644FFDB679E0951B2C8648 , 0x3246F9E841664EBBA457FD24EC37D74E , 0x3277E1641814460C9E84D189A72BC0D5 , 0x329EFEECFD1540A987DE24B888BF703F , 0x32F5AAFDAED54D92B7054A73AD50E113 , 0x33404BBDDDC640FA85D028B236B91E25 , 0x337502930E8D4EF7BD6E2C0D25A75437 , 0x3399A6A9A3B645C79DC3D30BF467C772 , 0x34D381490CC44E678DCC35E70AD537FA , 0x3549AF4E1134475E8A9B7E3CCF82F99F , 0x359A9B7923A5464C8AA59BC7E7BBC79D , 0x35B8903680AC4DB1940F466268D06F6A , 0x35F7AB780FEC43C7A247C25897A3B400 , 0x36839DB9C0FA4104A312E37CD2CFCDE0 , 0x36DEC35BB92F4FA6B243B65AFBCA8E84 , 0x36E0E40CEF594D96B9ACFA9D53D4A273 , 0x36F5771C765E46ABADE0AF1AD4C795DF , 0x375B79E1343E4EF18AFD3AEAB469FEF3 , 0x389237806DE748EB922294F9E7EA9E90 , 0x392F4330055D46D283BC5106C7E9F1D0 , 0x3B26E0C79B294ACA9731973A44CB7795 , 0x3B3AEAC5927A4F0A8C8A3A0BE53B8370 , 0x3B6FE7F9E4FB47249D8E197D8C13F140 , 0x3BC958776BAB469F943DE71E367A0665 , 0x3C173B6D3D044058A53906617166CF57 , 0x3C2C6BC12A6A425A87A510459CE1ECF5 , 0x3C4B17F0F9E5411E8BD1A8D17B3262F0 , 0x3CACD004CF554A9DAABAE6660675A57B , 0x3CDBDE9E51D34BE09DC2A9D5AB4B7C57 , 0x3D602B0A6B5A4C76803D05FDF19B1798 , 0x3E67CCCFEAFD41DC8D5D9B1A8AA69399 , 0x40DF59D2781F4ACC88BF3444478377A7 , 0x4117FE180EC64EB08034AF8BB3B50A79 , 0x411C329899F04535B1FCBAF625D7B66E , 0x4170782D49DA40678A09E7E105A3183D , 0x419263AA092C40A5A72C03CD35AB5107 , 0x41E5013B67D64D3A92B7A275DA8AF441 , 0x427DE6A4AA484954BF943C44D40E3FE6 , 0x4306D9251F4E4700B4C92ED465CCEDD2 , 0x4316A85F35EF4BCCB4101DA2042F6165 , 0x4318940305E343C4ACC1398B0EAF8BFF , 0x4331D91D3C8D477DB04E8392FF1B71B1 , 0x4335686CAC4646FAB5E122AD9963B093 , 0x435C520CE15843A7A2BB26BBBF0811E5 , 0x438F6D28299A4442BDEB91DDD9CEC881 , 0x43ECE38C934B4481B401BFC61F2C16FB , 0x43F2863898F347E287B01703DE500FFB , 0x44270BA673724480B16DE602B0C4C6D1 , 0x4479295B6B0A4FB18399A23C8F8BAE48 , 0x44C040B77D854606B11F453C83B6AAF4 , 0x45145E3045CC490B9D5D5728A72D0345 , 0x454F753AA001437CA99CEC7E8BAC5135 , 0x45AF1DD1E93A4B2FBFA251F4D3A4C475 , 0x4602CEAAA8E14E6EAEEA0D2574D4A871 , 0x46DE7085CE4A45A28296FF7309DAA523 , 0x46EBCCF4F1684360908DD10E0838EEAB , 0x4718FEA3D5764E969E2E78786F9EFA84 , 0x4747EC36E6D141EEBA7A58BFCCE42FD4 , 0x47DEAEED987D4C1096FE08680F7FDCDB , 0x484F6615EAE94CDD980CAB9D025B3F8D , 0x4937F0C1F93A4D22AC39AF71BFA2ED77 , 0x4A3005A00A524AD1BC6A3B30BF81A00E , 0x4AB5B38D6039431EB6C2050C2400FE6C , 0x4B3E748F29604E4DAACBA90EAC9526D3 , 0x4C224BC961DB44BE9E32627637264440 , 0x4CF033F1AFA846208BA04BEADED9990F , 0x4D36517A48D443C58C2809288697AC62 , 0x4D45F631A9114B8EB0A0E2BF03DC760C , 0x4DB600BE63164A74B12E25C6A440821C , 0x4E1CB5B26BB14444B6B1BB0C3E914DF5 , 0x4E48F30156964CC88C867F87B03713C5 , 0x4F4BD89BE6A74FCD887A689C03E02CD2 , 0x4F51F8033A9749CFA30CFE46997D38B2 , 0x4FDA9BFE26184313A64E67F013D27C2F , 0x5053FC713FE14B9797CF672C3E719344 , 0x5098347CC45E41DDBF6C9D37E9AD0FFA , 0x50ECCFC69E92455095EFD10CF7238A0C , 0x5134205E28C14D24B34AA3CB2BDB069F , 0x5159D18CE46744199A2111FE8099CE2C , 0x51804B09A3C940C58B68FED31BC4B4A3 , 0x51A0CF4F1C1348179999E3F326886DE4 , 0x53005687C04345DDAC37FA37B820D1FC , 0x5348971D6F3342A9AE06344F855BF426 , 0x5348C511717549F1891789929E721659 , 0x540879704F9F4560A1812E4EF9297631 , 0x54147692CBFB43419A6D11E26CAD44DC , 0x54ED861E1D224CA292EE73A86EA5F09D , 0x5593F934CD364C78AEBA91A42078F31C , 0x5599868E15F0459D9CFC637B9BD19DF8 , 0x5685EDD54C284994A09025166DEFD453 , 0x5700E5A39AD3425C8306DBB1D6BE59C6 , 0x5751B83F92D3402EA1399A68FB75AF08 , 0x58175CC55E3F4F078C4DE76043EBB6A2 , 0x58F5CC37F7B84AAE8538BEFC26A7D2C8 , 0x59742B6C257B41CD8493B93826998288 , 0x59898FF2C3404878A0990F33CD7C60BF , 0x5997D91DC0784997BDEF68DFC5A08912 , 0x59CAA3674B61458AB2A6B04B7E83AF70 , 0x5AB7AECA88644E2E952902F601AF964D , 0x5ADC9C2E10E546909D0CEC57AE1B6923 , 0x5B10B306B8054BB8B210B1CF1E294DDD , 0x5B2E75D2981E411FAEDACD38F0AA5056 , 0x5BBC78B8F1EA4A42AA35ED189A6B845B , 0x5C238D79E31548C4A24CAC2F8CDB1000 , 0x5CD42FB513264BD4AC90CB3C9E6F9E01 , 0x5E548441967D4DD68DB010D87DF81486 , 0x5E749DCDD6D94540AEF4708AECF022C1 , 0x5FCBEBBB118042499ABEEC2CC4346EFD , 0x5FCF5B01D4D942609855E95E13CBD2D8 , 0x5FFB7D34AD5A4FEF8D6A3D6A4C0ED6C1 , 0x601EBD39866442929C4C465C1758575C , 0x60E6B1B07FED47C2A1F75420AD74748F , 0x612D3D7429D6424CB58CC9F1C2CD306D , 0x618A0DC60CB94DDEAB8379AC8DD865BA , 0x61EAFB01EEC745498A7F579FC0A620FA , 0x621C78C502B74A80A2047860ED3D6156 , 0x62479E3ABBF94DEEB7F2DA9877BC9BBC , 0x630C949AE0224BC7970BEAF77D84356A , 0x633F00A29FB84821BCD5A93B407B6A42 , 0x63A0266F47C14D6BA188CDC1705A98A7 , 0x64D8CE56DE054F22883C674DA7E3BB47 , 0x65A246E9B4234F79A378DDDEC45A32BF , 0x65C01AF4790F4F4EB2A4E2539A04A1D7 , 0x660950C3779F424EABD2BC78EEDA51FA , 0x66235016E0DA4382A777FD37D445D872 , 0x663BA0F9DE284525A533446CA1ECB79A , 0x6789981EC3CC431EA4626F2A5D7D7062 , 0x68702AA585C74900BD1A240D4FB92532 , 0x68EE16BDB9794830B34C49A09B740106 , 0x697EFAF4B08C4EAFBDD32A0908B07CAA , 0x6A032F858F164CA7BA7C00490C7E2799 , 0x6A278F4CB2134647AF7958725F378253 , 0x6AD3E8EB4C2B4B60A18A6E93140DEDFC , 0x6ADF02B8FEDE463EA69CB386FCE035F1 , 0x6AE006DBC6454D32B18396AA05799722 , 0x6B466513A87C486F961220AE2E116ADC , 0x6B82FFBB83AD471F96BB4B69C414D780 , 0x6B8628AFBA1C4F968B4A01D263E730D2 , 0x6BE33AC2474A46E5AF71D3C2C5B053E4 , 0x6BFE061718784FB1BAA8FDD78406985E , 0x6CBE3CE5C33946A68F1BAA139F204446 , 0x6D1C83B5F2BA4DF29EFFA468F833CECF , 0x6D77CCC6075E4F7CA650F1A80C7D9920 , 0x6DF252B66E3D41A1BA1509DC814BFE36 , 0x6E144CB9CD4A48839B8BA4DA6A9B04E2 , 0x6EE367760F9A42D1A9B7116A0F428FEF , 0x6FE4E05E5D3D413DAC97E1712A7EDEE7 , 0x70311B28272B403C973CA5732A77DDA2 , 0x716CD774FAC94B089DDE73E71CC749B6 , 0x7182B9570BED424F910D8749DEA2AB3F , 0x728921CECFC843E48B3DEF5315F262EA , 0x738251919EC346FAACD8AD6C9D0E567A , 0x73F150A35E724117A28C1CED9498D01F , 0x743F6BE3D8E14C03BE4043340852D0AA , 0x74BA42C8B7BF481A81ACF5B43242CF25 , 0x7520523B5F2947D088B64E3B4F129C10 , 0x76B71E3F558849939AE03FE605B47424 , 0x76CFB01B9645440CAB753B756DCF4E96 , 0x76D756C280034D33AECC8896D9B4E125 , 0x76E16C236826460CAB20320EDD834255 , 0x76E4E1944AD24BD78AD561802073F780 , 0x7834138D86AC4DCBB51EE90A3B784353 , 0x7849BD2B1B78484FBA489222B84D9DF4 , 0x787C9537BB6244F5AB9FD2C008CB0DD9 , 0x789F43402B8C409FB2EEB4329F4A20B7 , 0x78D2FDF1D5E84C96A6336ACFFDFBEA1A , 0x78D3D64F945C48329F2D63E59AE3EC63 , 0x78D705084A0E47AB899FF22E15923C2B , 0x792D5F235EAB485685CD2AD976330F46 , 0x796A8927B25240D2A7400A6E3CA17EAB , 0x7A4DDA46F8DF4E75ACA64CF82720054E , 0x7A9F4878AB17473993212D5A0CE03CB7 , 0x7B8680344B3A4F7F99DA176E9F951127 , 0x7C5B11B0BC9C46629F592FED30162088 , 0x7CC1E6BA47FC4BE8AE8B6923AD987EAA , 0x7E57596CF49A460BBA0CD0FD94DCD7E4 , 0x7F4D6C86245249A0838B72DA8F9FE726 , 0x7F67C86A4AB3485CAD959E24C664F6BD , 0x7F81838628CF4232BC1ABA55A18A90C7 , 0x7FBD2BF5EDEC43039F9D645D856C10E7 , 0x7FE2361E8E594C3B97DB8DBD39A2F75F , 0x801555315E6046089F2BE685EEF50680 , 0x8030086FADF744869187B3C7ED6EA6D3 , 0x803096C5E62C44B28D7AE8F636E80BE1 , 0x804576A0D7934CF9BF62E01227C16F54 , 0x806C1216EFD345FEA4585708A3978599 , 0x8353424C6AB246EFAD78D8F5D86B0E51 , 0x83ECDF1915C3432FB96C3728F63F6D8E , 0x8479C393E87F4B759DDCDE1863B27BF5 , 0x847CEA893EC4412CACA4E72175E22DF1 , 0x84FC5A60241A432B9E668AB86B5CC4EB , 0x85CB6BE2B9F84CA899FD95D5BBBE0A63 , 0x85FDC41F34484AA7925C63E768C8C3F2 , 0x8648F84FC1F34A8AA782490B9B077483 , 0x866BB9251A6940F7B452212516133970 , 0x86C15B3562424B83BE122225E1EFCBAD , 0x87641EB681D4417FB5F22592130EEA44 , 0x8786DB920B334822AE89C10428DE64B8 , 0x88A00397227E4FBB960D95C2CB605CC6 , 0x896F31689D7E4AE1B93D368154B7FFC5 , 0x8A2A7402FA3A4A638C4383402553095A , 0x8AB1D87B8E1E49E197F10DC8345E5097 , 0x8B2AFE5DC482449D90B03AD04B8C42FF , 0x8BB4913F5FB14E6EBAD3119D59B267F0 , 0x8BCBCEF3080B4521A43FD4C5AA7A0A34 , 0x8BDF2168FCB74F75BEBB294868E53136 , 0x8E01B6EC0EAF4A2491303C2CCF2E1213 , 0x8E11BB55D5164FE4B4B9D6B98AFC72B7 , 0x8E30641C37B7434982586E980853258B , 0x8E469308DB724CC48DB2E4214DB9F1CD , 0x8E46BD6536E0489DAAFC2164676B0AD1 , 0x8E48C6A766034FCFA31EF55C21C26C6C , 0x8ED1BCC23B9A448B9F3DDF3233FE9343 , 0x8EEC18E5090045918BF38822A89095F3 , 0x8F69CC127538424E913B218777C4A0A3 , 0x8F6E748BB9134690A2C1600D0CE03178 , 0x8FBD242FA0B2411ABF16EBE6C97C54CB , 0x900DE6D957604BAD83EF64007152574A , 0x90127020BB14410F884D8E27BCD6BDA8 , 0x9026B149063F4C1A985A81B2A2B1532E , 0x90A1911F60584B62BE72C0BCA266D83F , 0x918E3D930C7A4C96AD9112D423E6EB86 , 0x9254323B8D0C4579A89CA9135937B2BF , 0x92746FDD2BC54F02B7D8CA4DE230140E , 0x92DE8D8AFC0349DB958614D99053E789 , 0x931A3526302243459A86D519E21E9829 , 0x93AFADE503974BF68150875C20FF98B8 , 0x93CFA2107B184FA398922862770B25AD , 0x94166CCE97A74DC5AE9F6EC549815839 , 0x945C21F8920C4224A78579E044F3B499 , 0x947742C47E534508A4667B65D5A1067A , 0x94990F71B3434CF5A57B64339FF4EA3E , 0x94DFEE026D3242E5BA2A78A043B2DF83 , 0x95328E3731F94EFD8043336CD4E275EA , 0x953E4D5AF5864532A166435455666CC6 , 0x95CAA97BCDF84C658388380ED5922C93 , 0x95D94E0C0A244130972F6970F16EEF11 , 0x96E2CCEB3C4B43A3843D7F12A700F500 , 0x97303977ECE54D829EA799C63B2A6D5B , 0x988CD8CB631B4C08BAD5CF68AFBEC39C , 0x989603140DA042AC8E033E95458B3785 , 0x98A46977CBED403D8EEAAC7CDD190149 , 0x98BDFF925E9F4EC092EA91EEF736B9E7 , 0x994F6D566A4142559C147C7FDDAF15BD , 0x9963CB659AA54374A5A8B27BEF1FA416 , 0x99F6700613544419AF205FB375016AA7 , 0x9A464F3D363C4CB382165E9CBB4C53C3 , 0x9A50A84AB1D9449BACD5A9ECB11F859D , 0x9A644573660F4E3CB45BCE25FF321E1D , 0x9AA14DE78CBB40A0BB434CE1FA93E948 , 0x9AA236479142499D9E00B2C7A50B2AC1 , 0x9B1FFA06B94145F58F0A70BC2DAD111F , 0x9BB6FED98296409EAC1457917A417575 , 0x9BBDDBBED9BD4786A8576732068E4965 , 0x9BC2B3D8AA18489E89EE2AF8569E017B , 0x9C07D88E2DA34A3C974DA50F37102521 , 0x9C283D90F08A4DC989955CDBC07B20E0 , 0x9CA9A6D58A504A8E99C612AFAB147ACE , 0x9D7E764DF7FD48A2A6AD43A7DF4B211F , 0x9E3E972C53A34BCA8E8D4E83992F4EC0 , 0x9EF8EBF088D44F6381111538039DCEBD , 0xA0346C99508D4637849CC182BC4C90A2 , 0xA08A5C18929D40F6B1893B25D4D114B7 , 0xA16CF594E7E84125BF555AF550D2F298 , 0xA172313FC4C74F9C86009A41FEC37D58 , 0xA19A2E0DF3494D49B492A08478566ED9 , 0xA1C395832E234F66A402488F64F8D02C , 0xA1C8C6B9B4D846F38AB5177178484A19 , 0xA26C00A3E48442E188F672E0F035E08F , 0xA3A84E93B98C4FDBA8AF6E4FDB11F7AC , 0xA4A28DC7DC384970B68F19F926410B62 , 0xA4BA75390266463794DBE14500260766 , 0xA52BCD559DD94B97979A7B83E6604890 , 0xA595B09B05E04977BBC2DBD1C236AB29 , 0xA59DDDB64D5043E4B01A750BF947A2FD , 0xA5DEFC92E2624DCFA975CC8885C55B78 , 0xA652567D3D5041DCA3D13B4289EEFC0A , 0xA6743728219547D59AE23519B6FE77E2 , 0xA67AE00F357F4C528BF8B17A08DE2A1E , 0xA747F60181C541E68153500D7EF3E6E0 , 0xA7933F5B32F34A1C8CC72F69E19FE0C1 , 0xA7A865927C5E447F9C7F8AA6D9BEE9C8 , 0xA7AD6A9665EA4033A8E5E1070A8DEB44 , 0xA94E117037A94E218550F8E8E454F72D , 0xAA597CA5E8C640F4AF43B20A624C3C04 , 0xAA9C9715012349DF80B7A12E945534F7 , 0xAB5411C7FB8743CCB2DD183B47C715FB , 0xABB485E23A6C42538C2DE7FD2D9D4329 , 0xAC5C9531801B4A60B139808E0CBF0A1E , 0xAC5D5954C56F43548BFC4E4144B020A0 , 0xAC96A1F31C574FC89AD8316AB633C026 , 0xAC9B7119868C4CFF862049D97036F16E , 0xACFD7586D02848F1AC801F4776EFA414 , 0xAD20B35EECAC43CA8AC2F0CC3E06CC3E , 0xAD3846E00CE847E080AC7BD3E912DDB1 , 0xAD547BDDFACE47A1ACC257EAA87A91DA , 0xAD735AF1EBFB421E93E408B073C4A89A , 0xAD9A5C4C130341BDBA345ECA895110C2 , 0xAE59B5BB529F4DB889CC60BAB828A5B2 , 0xAE9DC35E222147D1AE7CA9BD01292674 , 0xAECF04B1A1C84A4385E9E65C4615643C , 0xAF123FA863CA4401AC3159A59A2DF3AC , 0xAF695351A56B49B58250292554C5FFB2 , 0xAF69900EA6E34364B9827C9AD03CC4DC , 0xAF9E19715E034E94B5BD9DB6B8A3B132 , 0xAFB7CBC7E602430AA255221722FD2B10 , 0xB016965020ED45D6877546D0DFAFD08C , 0xB1CFA3D6F1F243EB88715C21E668CD1A , 0xB23E7E543FD64A1097449A6E1C6E3E83 , 0xB40630DD572941959EE34D753CB5700F , 0xB5145D6B3D5F41D3B0105F2FF4186E8A , 0xB5DEE5EBE0D14E16A246DB536B069E57 , 0xB5DFA9E542EC4FECBF3DCD968BF99B13 , 0xB63B162D56554FA69FF479AD24820452 , 0xB68EFC7F595842989EDBDD42184B9DF3 , 0xB6DECF25801544489BAFFE10B69500BF , 0xB7098EFAD39848FF94F3079DA24C0B4E , 0xB7A3B4D35CB74C75A6F39476399144DA , 0xB854BDC7A9EC49E8AE7090A4BFAF4BDE , 0xB88D327575E74D51B24358CD04CC2590 , 0xB8EB179B1054446FBA765A050A0866BA , 0xB9053404F18547CA80356BCD5A056E0D , 0xB98884E3A084422E84AA59851575C75A , 0xB9D13C49802B40B8BD9A34E8CA3075E8 , 0xBA4138CE12F64CE3A64DE43A510DA936 , 0xBAD88AC403DE4371B48DE604AC51A01B , 0xBB998F422DAB443EABB6CAC1640CE6C2 , 0xBC5038B31A9A4766A9F8FCDC1BBE59BB , 0xBDD502083B5C4CFD8EFB1156D656BA15 , 0xBEA9BB64AAA1434ABBC0EDCB624C6518 , 0xC1FE0633E5244658AE245E1A11B9F887 , 0xC20F943866E74D1EAE5B3F0838BA60BD , 0xC23ED21669A8449D8AF0650FCBC15998 , 0xC3C396E968A548F9A4FEC005B3239209 , 0xC47E1725895040E097FB61DF69F0AF2B , 0xC4EEF08FDF8D451DB24F60E084B6D5B4 , 0xC5298C9021FE41818C6C89232B169FEF , 0xC5875411C4B24FF48BE7964122A10B55 , 0xC5F884861F914309A76837AE1CFB32CB , 0xC654DBE8064049A2A377EF69AB65D633 , 0xC74439171D6F488A95916F2AA7F06F6B , 0xC7A9ADC6393E48EF9CE8E7CBE13CE6F5 , 0xC7E39CD05F144D01B5930069EC4AECDF , 0xC891DA8FE266471AA83634CB5B436724 , 0xC8FEF06EF6144EF8B5098555837095CE , 0xCA599C12EB174C2587D735E3112E7784 , 0xCAAB35BAED0943788863D9AC916A60C1 , 0xCAD420DB8AA743A2BC48140515D1A996 , 0xCB1EA02BBEAB422F9757D63BD48AE687 , 0xCB634190E3664F7E8CFD52B193744F98 , 0xCB76A3C150B84A428B9D277B924164C2 , 0xCBC82329E5144D568E24005B2616A920 , 0xCBE07660008B463DBCBD128DBC0A4CE0 , 0xCC0A574F9DFA4ECFB2DF234DA716A6AE , 0xCC7C725BA6C0469CACCED57E7C12A2A0 , 0xCCEF6480E98C4EB48494C2BC53C6EB4C , 0xCD2ECB1BBB5C484882B64E95F8BDDC5C , 0xCDC174667DB4489D8478B0F76066A684 , 0xCDF7881EE1C94F809CA27718237035C9 , 0xCE1F2DBC3A7F42BDB4894D63ADB4EC12 , 0xCE2B2E10CEC14062A8C978FB6AF523A1 , 0xCECDC9821782467D9C4E11A7D90C5A1B , 0xCF39715286F249389094896DD8DB8B2B , 0xCF5CA0C6CE894DA7B265EE976C2042B9 , 0xCF6BF562C83E445DA5676EC9CF29E66F , 0xD02DDB5E68824DC0B764D0A7309B59CB , 0xD042561B61F648B49471B61EA7477963 , 0xD0B200C760FF40BA9B37050C2DE60632 , 0xD14DF177CCC044EF9EECF0D9BC1538A7 , 0xD19C8D7299E949DB9F4B7919FFC2C0B4 , 0xD1E6334C6A3E41D1BB0212368B6255A7 , 0xD22377B9ABBF4F26B2B84DD78AE27995 , 0xD2BEA05C94B54BD6A23CB5161663ECFA , 0xD31A12B2FF244775B463745344D2950D , 0xD362523913E6414E98BDB01E1D901417 , 0xD37BCB05EAD44C8A87B72A5154CD376B , 0xD389CEE74A54442CA597810CE8403E4A , 0xD3AF2E5DE8744C79AFE3707A8157EC4C , 0xD3F778965CFA46018D63DA24130D222D , 0xD47479B83431467B9F1115768F9C12CA , 0xD49A7FE6170B4B8CA04F4133BEEAD72C , 0xD4B70EA3F9534609B4B9D03FB4618E03 , 0xD52DE3258DEF488991DC5E0BBE6D5731 , 0xD577C9EEDCDC48E2A307884ABAA275E4 , 0xD584B504D76642C5BEF8312C63790729 , 0xD5CBF612A70A473080AC1E7DD80C7601 , 0xD5E853E9A3F4499D98DD1EF81E9C70BD , 0xD5F9A8F04DF449D58FD6B0271F95316F , 0xD6980496E9504B14A15F5E34B8263DB1 , 0xD72B2E8241024CB999E07F5548BFD207 , 0xD74DFFFC8C1047C49541401C815D8AA6 , 0xD7FD9A67187B400FB909B0D512DFD5DF , 0xD8283942B03C4961AD219B6D11EB576B , 0xD839824AD12F476895BE5A7747ACEAB8 , 0xD8582C1538164D159450F6AF54348680 , 0xD87B888E860A4875A238E2611157FB36 , 0xD892B1FB7D344536817847A71E94B210 , 0xD8C147B1414149078123836603C46C41 , 0xD8FD4AFAAD314DAF8473A892B68AA960 , 0xD9DC80B408AC4BEE960A1CD51A9AEEBE , 0xDA651462ED394CA89AC7781BBB1D924C , 0xDA8C986DB0EF46188AEA9C5378026093 , 0xDB4F62E617554CCFA497F902ABA8362B , 0xDB5AAE42691140A8B7D2B3363EEC10A3 , 0xDB5CE61E09A2476290EBA46EEC6EF1B4 , 0xDC1A812274C341858B101A846BBF39FE , 0xDC708B2727C94F85AE726208DCDD022E , 0xDCFE925A20D14A88A3E4B761C772BDD5 , 0xDD017B04049B4C03B9D081573D684C4C , 0xDDC3FE95A1B14C898B5FB231FF911BD2 , 0xDDCF6D47E68340BEBD65567BCC6B93A7 , 0xDDF11815E1174B05BD96FE5A032389E6 , 0xDE2AD4D2D5904964B5B4E0EFA33216F6 , 0xDEC40250270249F2970AB1290EBE89CB , 0xDEE64FB515434339BD257FB9D32CCD3F , 0xDF70AC9EECED472393CF9ABF88FE7E08 , 0xDF87FDC52FD64907B2B0B49B5BC89211 , 0xE03B1F01728740EDA99947D7A89008A3 , 0xE03B622BA19E4B5E8388E10DB982642F , 0xE09160BED1654DEF9D35F620410BBCC5 , 0xE0F39626E29047869DF3F6174C4DD781 , 0xE2066736826E40B28F9ACE2CBF1B3516 , 0xE2168221B403447EB0D038E5A355F8F8 , 0xE2BEA6F57AAF4F229D5F91A959F068FF , 0xE307B4A9B10341C3A920368CEAF34377 , 0xE481596C42A441328899D4722FAABECA , 0xE4EDBF4D92F74FEEBB92B6BBC106B0BA , 0xE53C37D814504BF9B3BC7A0FD1CF6A16 , 0xE5D6F7D5F59B4D2E8918B07FD65CE519 , 0xE6AD80CC7E6D40E6A502DCEA3CBB23A4 , 0xE6B6CE545FD7415EB9893EA1FE287A14 , 0xE768118752764987983318ABE999D5A5 , 0xE87A0E6119954ACD858F1B43E300DADC , 0xE979F83130514A6A94F57888B58BB69C , 0xE9906E3C4E8E4FAD9C6DDADAD071EDCC , 0xE9FE9C29232E4A0E9F899616DBF7D6D7 , 0xEA2433A4864642198FCF2028E63ED34A , 0xEB5099BDE654455C842F33027EF1271A , 0xEBB04DBCBF844CDEB4CC66CEE3DBEDA8 , 0xECA7F6859EE74DA39DAB42B1BFF96B4C , 0xECF2C56A297747E384E9CC0EBE98A1D5 , 0xED0E30FD7D054ABA891DA6E3946919C0 , 0xED915A7E1FB84FACA7CFB6DE0EE91C62 , 0xEE1556D8DE7F4DF693BCBDB1267D5EF5 , 0xEE1818D80C3A46EAB4EFB5DDE2B5D427 , 0xEE40E99F12DF4415894F3DBD4F20A59C , 0xEF148AEB9C2A42EEAFA451E1314DF749 , 0xEF371BA6C4044348A019055C8320963A , 0xF02FE01B7C5E49CBA96AB5485356E59B , 0xF03E5DCAF92240FE81F3FF09C2DAA86C , 0xF10F8015A01340DFBC036D0DBFD64E52 , 0xF1B7BF3D8DCE492B87B2C27DBD2D696F , 0xF2896DB43C5F40C0AED48FA22C6788AB , 0xF2DE6965CEFD47B4BA76F62C50942E9C , 0xF303A71733B641689C9D514E3D73B8AA , 0xF3692CF51C114977B1FDEF6E55DAA950 , 0xF39258CF6D01425180E11AC51FC7DE07 , 0xF394F59493E54CD5AA58003E5E9BDF17 , 0xF3D168C357F04072AAA4786CA49A71BF , 0xF4A3406D645A4A84B93BD0E057BC2892 , 0xF4AC81D7520346EB863800094C5AFC61 , 0xF6117DF70AE84D2D99E0EC6E935AC4D0 , 0xF615E4F136124CDA985615C64446724B , 0xF799421B479F477998BF4F14A513B162 , 0xF7C132ECF9A24630B9D6E38B385932F3 , 0xF8BD6A16B0374D62AD03B986718DAC8D , 0xF900B1C8B44A442BBF68B7A45F91906A , 0xF92BB6C5D5A04A849624B35C9D96E95E , 0xF9FC981492464250B0BAE770D85C4E14 , 0xFAAD3EB211914309BBF39F88D2F13C85 , 0xFBCD87C9DB134FB6BF7D66C70D85DAD8 , 0xFC701E04CE234DDEB066DDE4CD809C04 , 0xFCD9EDE601274D3484292D9E53E15515 , 0xFCE0AE8B66BD47738EC2B7EC7154AAA5 , 0xFD9368B256804D7C833BC7FB6105A73B , 0xFE191C929B0F4B5FA29469C9F3D72054 , 0xFE42708368D94D87AB265BCC570246C9 , 0xFEADDF9D2479485E938FA4C0B0430EAC , 0xFEB3127BA826431B952289DA6E9697BE , 0xFF9CAA3A09084C25B16B5022A395F691 , 0xFFD1F311E8FB4EECA4292B25B6F6B773 , 0xFFDB37DCE1B74798B35C0EEBA4FC309A , 0xFFE35A143A9F4F8295F9B0187D7E1AD3 , 0x000D0B736BBE49BF9FE06BE1EFE0D72F , 0x0151545F0B2E405DAEED16ADA8172FE2 , 0x01560FDDFD1D411AB829D5B0FC8F7947 , 0x0167DF1C2F254A3C8287528DA04A3DCF , 0x018ADC5BF2CE4652A0C3A6AC7ADC6E64 , 0x0261EFED5F7A4CACA9C3ADF7DEE4268C , 0x028C96A382934713BD7307BADA4AE90C , 0x02B88FB430574C55898C56C44121D04E , 0x03827C9AA5144278815312A1707830AA , 0x03C73E038AB64C73A58E82A5B73B2A34 , 0x052CCB0053E7420CA0CEE937E38CE1FA , 0x058B5C25E2524CD2A53E5D0A8CF150E2 , 0x059DA6A44A324C8A9EDEECD3DA165FF6 , 0x05A33E2F49A64F319F650B712048EDF4 , 0x05D99F4CB18441EBB0E94C9DB0975C18 , 0x05F7BD4B8CE64C879D803F9B79121AEC , 0x060B866D18984186B8B7F276CF8FEC7B , 0x0654D18E3F22412F9BDE150500A4245F , 0x068F49E5474D42E799952E23890B90F3 , 0x06EA2BEE7B2B494DBCB79F402A9645D5 , 0x073AB22F248D4DFB826DD6537B7772A4 , 0x07944BB73DDD44A6B161BACF86FC4901 , 0x08457DFD0256463FB41C201BA5935890 , 0x09DC55EF311C49D8923435F093E77BEF , 0x09FFE7EC3E304FEEA87A6273C022E6F0 , 0x0A280C81D1234184AE8FC39231E5F721 , 0x0AD5BEEF851442DD943A853A5A1DD3CD , 0x0B67384FB5094E42B318C929ED8770C5 , 0x0BDC60075D2C42DC80D21C1ABD0673B4 , 0x0C886F4A606A4487999C12F68C7EB07A , 0x0D97C5E5B4E34A3490A607914E8215BC , 0x0E7843EC44964C4ABB7A149AFF6AE2B7 , 0x0EEF7EDDC57A4333BBE08C3FB8B59EC9 , 0x1024FC93B0984A7895216ED4AF449BB5 , 0x10718C6218894ECA9E7830F52D209482 , 0x119110F084FA4A2FA782197704121B36 , 0x12BB8FEADED9482EB4EFEA2CE9126E29 , 0x12DE256094D8491382DB47CB876C16EF , 0x138E6D0985044915B8FFAF58F400D664 , 0x141116FCD8AE4A3FB1DE4503CA5E0F86 , 0x156EF1DBA295451E92B51F204CFB72CE , 0x15C8AC007CF14F56B22CE50AE07AB6AE , 0x15DFC133DB634228AE155703FE7E1490 , 0x16A2F782D84F4B51B342319CB82307CB , 0x16FA110F651545A3B5D64F550298777A , 0x170498F515BC4C54B5BF2EE77E484972 , 0x1743CFDA10B44B62982B118595B2AD26 , 0x17BAF37B79C449B088E0E45838353A2E , 0x1826DE44ECDD453E947CCCF819DCD5C1 , 0x1860A6CC569D4FB2906071D8E1E7A443 , 0x189247D2B50E4A75A2FCF416A8B162A0 , 0x18A4E5E896CB41F38E7EAD8BC93A309A , 0x18CE7D13A8244DE4ADF8A12FB71B2980 , 0x192429A164594539AF9AE01EB86CB6DE , 0x19C0E7DC83234E45BA2158C16C760158 , 0x1A23890CAB134875B828C832378EE473 , 0x1B1C0A88A5F44725AFE769AE10264A80 , 0x1B77FD7DA0D14F0EB7445C2903147449 , 0x1BC5AC72D78042A7A43BCBEAB9989BC8 , 0x1CEC537AD603426DBBFAB4DB23C169AD , 0x1D7DAAB25A8B4CEFA4D9EE6EAF4836D5 , 0x1E107D9CFAD84CB1AA21AB64DE031FE1 , 0x1E4990C4CFA748F5B3F063CDF9AC482E , 0x1E9C655B61264567AFFD67C684DF134F , 0x1EAC38632CA046ADB29F2EFECE2FFC79 , 0x1EC958DD1B744C9CB858BA7660242621 , 0x1F8824E7328E405D8D34E11232B79D64 , 0x1FAA4D05754843EB9843784B27ACB93A , 0x1FF70CBAD44A4D6BBC4E15C7BE3EBD4F , 0x206EB1C3762C4A2CA987E99F0C7607C3 , 0x216FC818E2BA4C61919CB07622401713 , 0x218BF2C938544D858C0F92FF460E0365 , 0x2192DD2CC589482EB8A89CA7F9C08BB9 , 0x21C220639D9B462A933265F74948F7E5 , 0x2219C187605D491AA6671211CE694BBD , 0x228333A6239C469DA7AA312122F114F7 , 0x22E639CC80AB4A77B5EA8701A54D92B6 , 0x23732DD877A445098BE0ABD5EE9519E9 , 0x23E40FFF4EDD4214B98155571C81DFE1 , 0x242F3E29017B48D7B2E1F7F4D5EE257F , 0x244450DEBF304356B1F1BE3901A8D1E0 , 0x24ABB2CAA42248539668BF5D6B2371F5 , 0x24F37DB484444A288EE2025BBA7E1F6C , 0x2575114244B64F89A7196AD5F145F403 , 0x25DAE530FCDF4EDE9445FE3911170676 , 0x26D7E90446C74971A3C7EB548EE47CD5 , 0x2734106074D942C3A4E9211A26FB7924 , 0x273503D8725F40FC97A6A5F16EE5244D , 0x273F30BC1201459FA920BE98E4829A55 , 0x27C4F50A512B4A24A3E29A82100BF90E , 0x27D900B1307F4828AEF55711585999AF , 0x289F6F8156EE478FB8EC3085077FCB51 , 0x296344D9F9B148CEBD7FDB5B4AE80672 , 0x29BC91EEDFEC4E51962E4A1AB1D65C57 , 0x2A26A8A56A6E4523A65C137C1EFC681F , 0x2A425DABD6CC43B1B8144CE9105330C6 , 0x2A8075A9C25A41FD964A1F9AB4C554BC , 0x2AC70A20F1BE40FB8F304DA982859EB1 , 0x2AD0560069994B5CAC515C111FA5D8ED , 0x2B3BDB626D4A4C9D81D99B9A32575605 , 0x2BFD278E87204807A890DA4A3E81DD90 , 0x2BFE9F8569714EA0B38FC3B0DFD9F913 , 0x2CEABDD07C4B4AEE8C372664007B42D0 , 0x2D2B368CFE424DD189127F20E4EB6209 , 0x2D30B237E3404B1480180E87A4C1A33E , 0x2D45BBF7664448E691BCA6426B1C6E60 , 0x2D6C61A62A11445089A977785A6EBE5A , 0x2E13DBAB75A44625941AC1E25E9F1CBD , 0x2EE09E319D5447A195DD8CA15F4BC9C7 , 0x2F39BDAB6E8145FDBF6FA02B0F7A3F16 , 0x2F659A2B42FC4D6A8148A5A270B95A3A , 0x30099420A2614446B38CC091A272E61A , 0x307CA12BF52649D683C01AB6AD746905 , 0x30E8E0BF98034F40A7F7EEF24FAAED02 , 0x329E298E3C454B759B42EABC84179A30 , 0x32F25B2A15394A939109AF54775724C4 , 0x3307D2FB5D98430D8925D2E5582B955A , 0x33E6E4C76ACB4975A06F76AD2138361F , 0x348C4E2E4EC24B81BBBC20804D3B45AD , 0x34DBB5F89F1743DCB3F7E5BEBEA6211A , 0x34DCDF516DF74C47A8788E475DA6C749 , 0x36AC462CEEC54F17B6FFF2FC6A3BB125 , 0x36CB4E536CA2497388D34BF1A961FC1A , 0x377BF0278F7A4D069EE7629151DE6108 , 0x394F45D0FE7047B18E10B6790EDA50BD , 0x3A5237104F1940E081E34679CE5DE711 , 0x3A546D950C704E9E9AD61699E15BA68A , 0x3A5E4F70FE584A948BEE21E16F1C0EB3 , 0x3A71F77AEA1A4181B4AC8BF0F79D0A77 , 0x3B8E5954B9B4486E8749F0AF5BEEE7C6 , 0x3BD72D7F9C4F402FBADAB77A31165FD8 , 0x3C68A4AC3A1649B9ACEEC69C98477C91 , 0x3C89FD2D0C154E23B282E5A0943894B7 , 0x3CBA9CB9D3494D0A8D76BD0F704E77FE , 0x3D6BB2AA951D482CA783BEB731B4AB2C , 0x3DA0B0DD7E9B454AB3E4D6A681007E78 , 0x3E370E667B2F4754A4990FE3B1D57D8A , 0x3E5AFB6F55D348D69C6C4B14AE24C2B8 , 0x3F8A23A344F84A58BD4F7CAE71F4AAAA , 0x3FF04EC884D644298C453922DCC438E0 , 0x400132C849EF4544A77FD0970C3BCBA5 , 0x407EBCB4674048D59CA239DF1978D2C6 , 0x40A813A7D0FB4050A9F11B421E41CAA1 , 0x40F5707DE12946F4AB3555074F5911C5 , 0x41359AEA3BCA4C2795081E98011C6516 , 0x414A88F8B2254F5CAB2A49D5B6BFEC3B , 0x4159BCAE579F40C89C493F65F705970E , 0x41750A82AB984CE2A663F3A3F03C5710 , 0x418DAA8BD44E4477ABF228F94CDBB45C , 0x4243A73B1A9648E6B00DD95D3A2A1C72 , 0x42727C57FF4B4C3E9D4A4FBFF1E40FBB , 0x42B79FA66BF046E48E89D1833E979292 , 0x4335DE19EDFE4DA898AD35B4C3ADA262 , 0x43C405F005F84B5F84BEC0038BBA55CD , 0x43DAF7E79AD04452B337B2632CF8F472 , 0x4459D8364B704B9DBE9D6FFF229B5F1C , 0x44AACD5CEA5D4712BC652A577E08A79E , 0x45960866EE434B73A00CACC3BCDD5C68 , 0x45A23269364147FA862687CCE34995AA , 0x461C3D658FA3457A84C7FF1AE6C2A72D , 0x465D1F0F2E1A474194543CFE2F5B69CE , 0x468BB9FB35E54DF9A9514DFE54A54A57 , 0x484E55E2303742C5B01873D5F5D5275B , 0x488E61F3FB0F4F5BB3E922598D928375 , 0x4A4D112A9CF54D0F9E9663F5F8E20E3D , 0x4A533B1969EA437EA9286838A690E722 , 0x4AF2EE34BCA44A55A45DCF550180A789 , 0x4B0CBD62314543AFB2F9E859C5B6A242 , 0x4B12F1C619864550A5DF5B6630318343 , 0x4B960CBD8E8840DB91DC262862C19209 , 0x4BDB40C704D140269CD5104F08018989 , 0x4C29C7598A424E36B37E6863426F7A45 , 0x4DBFEF55957C4B0480E6B9704C2B0A50 , 0x4DE945DF94FC4D50809040F7499F187F , 0x4E43FE740B56465BB5D0E29BFD6E7A19 , 0x4EB8292676EC4C3AA11FD775490225C2 , 0x4F8BFF1B027243BB89A45746CC13721F , 0x4F9616CC8B6B41719AB4DCACC4FBD681 , 0x503573A50B9B4DAC87CDA071219BC1CE , 0x50B85FD10E444240B4AE5FD71CA4ACDE , 0x5193FFA5DE8648A1BCFBA1FA8A26C02B , 0x51D683EA62ED42A4B111524EF6857C4A , 0x52454DB2ADF942B2AC079A296F454A10 , 0x52F8B283FAE249EF89D0D48B58024463 , 0x53EC818480974A6AA7AC2135C135E778 , 0x5445204B02D54229922BCBE2C891766B , 0x54529CB761C34D00812B5782018530EC , 0x547F2786EF0F41DCB9BACDCBB19CB473 , 0x55287CFFA2AA4E61A4277C997983EF15 , 0x5537CA917DD349869458F59E5AD0CAE1 , 0x554492B3197F41CCA73086132BBB13D4 , 0x5578A669A71B4797B7632958B3AA7B2C , 0x559D4B8FCA3B4CD599019D0F2D386671 , 0x56185F67D90C43B29E976E7AC819BF50 , 0x561A30935EF140D2B9E7DC02D1A07DF8 , 0x5626A09D7DD64E27892455472996A58E , 0x5643901D8A8241748168CACE59E9CCC2 , 0x5745CC1EF2024672A1FF223C2827E71D , 0x57C86EEA7ED9418C9882B17E96C06966 , 0x57F59F7CA3494F4B8268447A3C8CFEAD , 0x58DEAB7D060F47F28DB38FB1112A3BF5 , 0x59165B81288943329E95069322B8F698 , 0x5919ABCE4836461C983C47EB1705E823 , 0x59229C069E934DF6B1A51F52ECBC0335 , 0x596504AF1F52469C854F555647A83CD6 , 0x5971BA39CF47436AB18A8E1F3B36F9D9 , 0x599CE5FEB01D4CDC8147DE16B9B550DD , 0x59E37E3B440342A4B807BB33D753CCC0 , 0x5AFB9FB0E9E5467DADD8B1050F2A2BEB , 0x5B8D2A04510B4018B149842002641A74 , 0x5BBAE6CE9A7940D5B8512BC75E0B855F , 0x5C5B0E6B0C2E41549560B25B8D90CF3F , 0x5C64808E9D524713A263DF146E318BCC , 0x5D0EB28CEF3D4957BE3FB678B7809051 , 0x5D1C012431F346C3B336BC49162EC248 , 0x5D544886E310443082BDD0DEFE52BE2E , 0x5D82376EBBC4445D91D880E9E7E88F9B , 0x5DD5D52F070B496C9C5569B92F4183A3 , 0x5DE1EFAF5E164279921C7685C179434C , 0x5E7BF68A73874EA6BDD137481779A4DF , 0x5F011C2102AF4D7584C357B88FF1BE76 , 0x5F1BC7DE15644580908950DC7090E996 , 0x5F7E71065DA0417B93F5D576B6EFF4AA , 0x5F9F898C030B49C296FF3103C161064D , 0x61E58869825B47C98FBC330834A0D77D , 0x629A68A6C24A44B9BCFA0861DA810372 , 0x62DE0B36A9F14213909209BAE8929E19 , 0x6327E940A40841B7AEDFDBC454A410BD , 0x63460C1734CC4360A54966A5A60E912C , 0x63EC96D3010049878269F39574AD7EC9 , 0x64A124566FE24CECAEB6900AD77DC1C0 , 0x655BAC9D9AD34D748B207A6193079D0E , 0x6592A43FB34C40538B606BFA9253E9C4 , 0x66030C97897F4FDCBCB6018023294A2F , 0x66104AE7A2CC40C1948C764714A39CBC , 0x677B18B4ABAA453298CB0F11E1D5C766 , 0x67C0EC0185564706ABB5E149C1CCB8B3 , 0x67D3B6BD62BD46BFBDBA787E9C057D65 , 0x680B668F51FA47389E04BFA6F94C8E61 , 0x68138061F3BD411CBEEF8936D10D49D4 , 0x68196BE05BC74B6B8C27A6AD7C3BA37A , 0x6894F1F1D2F14FF9A74175B94DC90EB6 , 0x694DD94E6B3C4E23B398C3253318310B , 0x699E8AD62F12435DA8DF665889B53E1C , 0x6A214396FF3946498B2276066E80D04E , 0x6A2F7847A31741DDADDF5674921761B6 , 0x6A3B54E17CF64713BA8E7803B9C0BEAB , 0x6A6538F99AB3493095829F7FC049AEF2 , 0x6AE0CDD72F8049DA89D77A9D4DEF05E0 , 0x6BDA31E68EF146FEABAC3273DD10888D , 0x6BF34D66C64B4A3596597E92F03430D9 , 0x6C25B7479B184EBD94E97F1CBC1E0C3F , 0x6C881A87110341A2A043BC9A7C023FAA , 0x6D78F81F3F984157A6E4D80672BF13B4 , 0x6DA341CD87FA49CE952EECA5EA515AE7 , 0x6E32527B89124E2ABDDE5A893FBD72DA , 0x6E69A9B8445946708CECA0DF865368D8 , 0x6E6D9C305A5A424FBE7BD884E050B37A , 0x6E7D0E9163134A539BD011EAA9025C01 , 0x6EAECB09999A400DAC58C2B11933676F , 0x6EAF3D21C6104697945B6F009B1B131A , 0x6F886140ED6F4B3285D3D483FF765792 , 0x7065F72B3E4E465DA653D86E05CE17E9 , 0x70A25C2DFDE44486A09384472312B5B1 , 0x70E8DD6B656D4A4B907B0FC74AEE753D , 0x70F0782CD98740258C63880E61EDCE3A , 0x711C5395032649C1817C365189EF2ADB , 0x71E20458C47743E087EF434F783A9CDB , 0x730F5A502717477CB4D236AAB08F5200 , 0x7349C24A3F7D487B818D488C253958D7 , 0x735B0B5205AC4F0CB52142D9B6512CB2 , 0x736934E95996469E977CB0884C8D80CC , 0x73DD488EA86144479F63394C372A969B , 0x7449185A532B46BAB3997C3EDBEDFAB4 , 0x74AE9206DD674848928B40C1925FC6B6 , 0x752701E5CE774AECBB7F66A756C297C3 , 0x75D56F4F7F664C9AB7A84BF92FD24C11 , 0x769D8FE7B08A4D90B6A4D067E3AC18AF , 0x76B6B58B96AE40019F2E4C8E877A923F , 0x7738B9D805B441A3968D5B0469EB91DD , 0x786FB02E0D1943019480A55BF3081931 , 0x7884C6D4D8F84D31A0D4521F26E1547E , 0x788F0E702D3B423CAE0E476C5167D156 , 0x78E954D09CD64AEEA2E5726741A69A1C , 0x78F54F169A3E4CE19F563939EAFAABB9 , 0x790E8323CD1E414892D541C66D170796 , 0x793581CDA411440989418F68608E5876 , 0x79987A7769A8464CBC1E0626645DA1B5 , 0x79D9739FE3BC487FA801869733232C4E , 0x79F92A07AD1D4A15A9AC3651E602349E , 0x7A6373D28D5B46209589E150FB39FDB0 , 0x7B0E9F7AD4FA435FBBAADF581C501848 , 0x7B75774818254B9ABE45C6639C4BEE9B , 0x7C6DF577EF354D49B3F4C6112CE48537 , 0x7CAC5C00480248C181971BF1BA45C03B , 0x7D35022BB7C94579AD6BAA9CE8428C92 , 0x7D5310624DBA4EFFBE8F76EBC42AAB1A , 0x7DB0A09BB4094BCE922737464171A596 , 0x7E05A98AD35142329AD9F0FF305D8395 , 0x7E73E5125113452F96F2CEE8FF253E8B , 0x7EE09F3E86754D5693108875EEAD1C5B , 0x7F5521C6764C4C5EB805B2496AB88328 , 0x801FFEF297F844A8AD50DFD3FF3CF4B4 , 0x803828A402AA461788CEB9F116E125B1 , 0x8040133CAE044D3E9ED8F1EB8D0C1F63 , 0x806A179180EE45DEA47848191EF93244 , 0x81666015193B47249DDA288081B13924 , 0x817ED606E3E04DBA845A503A38E8CAC7 , 0x8230524B8822491EAC975D39BB567E77 , 0x83705DCC0E5E4264802D9570C0995BD7 , 0x8410CB1D13DF4406B093A62F2DF6A49F , 0x8464A73ADC1E4C659010B4B3E0C93739 , 0x848139E6903C4C708322371F739D7CF8 , 0x84D5681F053B4D11B0429FB54E6B3023 , 0x84E0A14520C54F08BF181330DFBD99CA , 0x8552DC31F9B24EA496D1A6BEAADE8D9E , 0x8561D062A3874E36A5F8C1F5FDE806FB , 0x87568A2B33A143749FF338C915617A28 , 0x8762BA3A092B4F18A92C2C9342B0AC9F , 0x87B2F067B1674465B3995058EDCDAD5B , 0x88242E6C532D479C97E6797ECD57F941 , 0x889C63A7F95B4DDA98B3D0A104D9B6BF , 0x889E3E76CF7B4EF781EDF57A4CB201AA , 0x88C7FFA14DC249668AFA462FBCD634C5 , 0x88D21E3CE83041669DF60CE3F37CBCF4 , 0x896BA96AAC694B569A83BF591287A923 , 0x898CDCA9AE434D62A8241D9AA4B9FB25 , 0x8A6590DADEA5482C9B3911179C84A1D9 , 0x8B5B20B570C0412AB58D80AF95AE9F05 , 0x8B8F4A25E36E45BE81025CA3356D66F8 , 0x8B9363E082E84EBCB18F866C186A388E , 0x8C7E190C227644DDADC88EF825944239 , 0x8D3A219385AC4B549D65FF85F36C6B0F , 0x8D827FC7B9D84356BC02873EA4841546 , 0x8DB803FF09A440DB82A6C8AF41968AA4 , 0x8E761B6130F0451A8F3BF562EC4551F5 , 0x8F9C44C9A9AF483AA51F07A99BF20F64 , 0x8FD0C00FFE1B4214BC3D619DEF70852F , 0x8FDC48BB552843F89A689E3FD7AE41C5 , 0x90D8E769D6C4403C881194CB47226EEC , 0x90DB8E572EEA4EA396215457FEBD90CA , 0x9219410151B8446CB753E85DC56D423E , 0x926AAFB3075C4C6CA3363DAA1DC26A64 , 0x92B6C39209BF4C498D250D1758D01829 , 0x9366A11ABCD647CA8E90B16005CEB6FE , 0x94A84013A7CA4266885E8A67C0B6AE74 , 0x953E02487BE54A309642324118ACE509 , 0x974F24265B684935A3A6CA37BA2B01D7 , 0x9758D63DC7A34E9283B8FCB095196B25 , 0x975A5F7FE91A4DC9B8B66788CE90B60B , 0x976479D0DB534585874A3080D9F248B3 , 0x976650529EF14B4E9ED206A8193EED45 , 0x979B86599EC9403091ECE139D0D807C8 , 0x97E630793CC544EBB2BD676EB27A21E8 , 0x985732874E454831B90BE29C99FBCEE8 , 0x989AF3D3CF5644AF9C0C7CADEF84EB45 , 0x98DD1EE0B1244725919833D5A110D958 , 0x99084580AF774598BDB7958818294245 , 0x99529600B9FF48C7B359E99818AB4DAF , 0x99D6A1669AAA47E9A867C912ACEF6F34 , 0x99E409950B5C4DFAA820BCE764652356 , 0x99FC49EFB2F345B0BB62D93F1F630297 , 0x9A1B258DE098438596E0D451BC0B1BC4 , 0x9A533129813743C0968D8C1BA61D1B5E , 0x9AF0CD11D26B4B2C9CF5697A9A841F77 , 0x9B05F88EEAB948F48184D35A8BF585EE , 0x9B15FDAE5FC24618896B7BE160068FDA , 0x9B637EB7B3B6450AACBBC7F74C30CC1A , 0x9BB12F638F464A10AC6D2C650D1524EE , 0x9C3132C8F4194E2A95F1812A28C9267E , 0x9CCAC6B119C54E55A30A3559799EEC4D , 0x9CF60263E42643B18F1F65D26EE1E712 , 0x9D2FCFF3F9424E5CA4883D91F65FD3F8 , 0x9E84E7B7F32C49D49147311C4B1DDC0E , 0x9EBA89258B2E4E0FBC02D337A77BF07C , 0x9F4D5F53B7494EB2968F50F898DFACE6 , 0x9FAD02577C144B4ABCD2D4615C645661 , 0xA0183A2B88D24C1089683E299EF0E5A0 , 0xA034AD9AC5604D8786A600C8FF727B7B , 0xA0498A7C0514491DA66C4DC175053BB7 , 0xA05F65CEBE884DB9A0A8D1BDC99C658A , 0xA0B6427CF7EE44F7B91A83A9FFD9987F , 0xA0D8D0164533454DB70ADD4BE62FB649 , 0xA1660A24F3824697A90FA588EF09DA14 , 0xA265ECD2D2FC4FBD88A3698D81BE3CE4 , 0xA361B5F606CE467A8B52759E1B3941EC , 0xA3866FFD405C4403B72759537EE42434 , 0xA39A7C92C0BD47C09970D3989CFED2CA , 0xA48942B91E0742519BCA7B16667AF98E , 0xA4F88ADF121F48C99FD3EB29E09B1FF1 , 0xA5EC6A653EEB4D9B8E39FD655847F779 , 0xA6B07013E38D42B9990933F1CAAF084E , 0xA7C236F7596E466DA6CAB5D93227918D , 0xA7CA0DA9E0204506A5A443AC348C5C39 , 0xA81BCA2534FF475BA2CF0493730E0196 , 0xA83C84723F6C493B9CBF0083A0C3FA96 , 0xA890AED2FAF04103A098065CD3C182F0 , 0xA8D71210207744BD9ADA9D45227E7AE6 , 0xA96B34DB48234E9898CB8E8A645E59AC , 0xA9A2AEB1DB134D2FA8EB90F139A3B801 , 0xAAD91494F5434338B8EE0CC173760DA9 , 0xAAFE9EDBF3E442909B332A93791D72D4 , 0xAB27878C858947BF9BF3F7337910510D , 0xABBD7834AC1D48718F732CEEEBA40A14 , 0xABCB6696BB6142B6A93B3D49864CCBE5 , 0xAC1F11D317D3487E96E23036B7264DD9 , 0xACBADFAE3F0E44F0B44BC01B68E0881A , 0xACFDE35EF6A94F3F9928E802310D43D6 , 0xADFFF4DB29704563AE31D0A11A96F494 , 0xAE4578DE6B7F4525BCB24AA0E3F3DC9E , 0xAE61DA93D12C42EF8E3E252B4EA55B4F , 0xAEE4A6797A254296BAC9E3FFFC22985D , 0xAF11B47C24464103885AAB5BA9C0AE7C , 0xAF909FD876A5488793AB56B8DC7EF35A , 0xB014913F498C4D0A864FC2E2F11D7090 , 0xB18F71E07BA04C31858D32522B152FDA , 0xB2355711DCDC48D8AADAC7E10309800C , 0xB2927B9F2C4641C7BE1DAEEF6CE60F36 , 0xB2D389BF0C6740B3AFC145B2ECF2586B , 0xB2D6AE43270044E49FFB2ECC54E48F9A , 0xB38C21EC79914187B685D8851BE17940 , 0xB3BAF5DBF1DF44A7BB1CE6DE8297A79E , 0xB4333F7F150740119EE9B8C7705D4994 , 0xB43B825A64C64E71A81805D883A3E5E7 , 0xB44D749AE0664F50A73601B29C78513C , 0xB486E0C247D041ED84CCE30A0CE2881F , 0xB562AB0809BF45E29B437AAD71CE3FD9 , 0xB5945CEEDF9C4A1FB22F463CAE45B6E6 , 0xB5F9FAB27BBD47948CCBD5EAC2BB223C , 0xB60EFB5A5BB74924B2D78D37753C491D , 0xB68FA6C1A30A4FED869866AF7C3FA211 , 0xB69D205885B34CDEB365D8E864B058C3 , 0xB811B466D4C24C59A83625FE30E92594 , 0xB962154DEF4E4557BA09E21A1CE9E8D0 , 0xBAFFC4C0A6454FD4A5FB0B85235E90AE , 0xBB0116ADB986489D9130894324F7A5FF , 0xBB0D9F633ACD4B94A8CCB1191AEFB983 , 0xBB2DC9ABC0F94A1FAE7107BF61825B1F , 0xBB898DC07DA941F69F4478DA0FB7E9ED , 0xBDA0739EE1784E3FB53191F69E95DD95 , 0xBDD76D8587B04F439DA4F96194F559A4 , 0xBE3454886E6D42FDAC90562C770FDC76 , 0xBF205D41E4A3498DA999DD22CED97CEB , 0xBF359E1343C8492E874A6A49592C23B3 , 0xC159B69D59F942E4B1463AFF8CCFCB2B , 0xC19439300CD240079842FFA814439E72 , 0xC272B0E30A5D4AE485E4B004553E906D , 0xC2783D38579F432D95F21CEE5235D557 , 0xC2D26E3BA9C8496B944FC1976B4D1595 , 0xC33CF664A3A44D74AA7FAF39581FB87F , 0xC3E4F1120D4246B4A3169FB6EA9B3754 , 0xC5BE5E3F6DC64813AC4B8B186A48A5B7 , 0xC5C8B3B3A2C3431DB4C17C7057717582 , 0xC64D84707B204AFFA31D3320D3818830 , 0xC72368E42D5A425481116950AE42E8A6 , 0xC793E7C979744EB4A1DF9F0694693905 , 0xC87E21A776754D7BA291D898BCF12BDF , 0xC8920C39C3EC46BA9ABF2A9200D664D9 , 0xC8F2C2F827C847DF9FF85148C418EDE6 , 0xC955CF213D314ABC879485CE82C75F3B , 0xC99CA89DAEFD43FFB4F10502EBA7C45C , 0xCA3122DF200E4B1093499FCBBC98693B , 0xCADD602F64844C7FADA5C6C686BCCA93 , 0xCAEA6BD8236D4588A3F346C33BECB505 , 0xCB75F8B8E471487398D4F830DB8BEEBA , 0xCB91C5629D824064BD54712097CF5AAC , 0xCBBA9861081F4090B562F7C7C49DB141 , 0xCBD24E9B423846D1B5107C049E082DCF , 0xCBE824276C9647E2BD7753E2345739C8 , 0xCC324E63B68049AEAB2EDDA65DCCA52A , 0xCC68B877248C4709828EEC45FECEBE27 , 0xCC7F036DF4F04859829D6A4091ABFE1B , 0xCD414378DE674CDC8B5398678C169EFB , 0xCD59AA9167FD4433B63BA0A23DBE22E6 , 0xCD8E927D36F14E6B87A1C8B8AAF47DA2 , 0xCEFE9EDBBAC749BB93D645956418702B , 0xCF444EEBA0574697824B8CF900339FCA , 0xCF8294F0EF71483D9BE40F9F216CDBFD , 0xCFBB2D58615B46B496EB9BFEDC6666E5 , 0xCFE9D681CE9A42B2BAD2ECB2E508D1A5 , 0xCFF58C04736B440E95E771A79DAA0FAB , 0xD02B04633AEE4E20AE5017452694911C , 0xD03E93B6E52141969C542CA81CA1A87E , 0xD0FE86F149A946DF986FB845A00B5714 , 0xD17067FAF5A74D56A70F58278FCEC72C , 0xD2422A3A683B4A26A92CBDB94AB1CDC4 , 0xD309AC94ABF4491EB95CD23E15489CC7 , 0xD336F3B5F9E64955B1F8448EC44C63A7 , 0xD340BA2D7A384E16A611CE21BA5051F2 , 0xD3BCEB4DBB4E4F9A9C6939D7C4A14789 , 0xD3E67C82031E4432A2375E4427889B1C , 0xD4290B84FBC74778B97DEABCE452C713 , 0xD48F0A6DA28948D68627BC0D56881B7C , 0xD4A49D8A65E64B609DD482A0D87345A7 , 0xD4AB20D3F29C49B29760743A95BFC55F , 0xD563A5288A1F46CF8DE2828557103A9C , 0xD5C7D730DB994E1F8DB6CFD8D3BC9599 , 0xD6586797DF1240C1AEAD3943606FBF1C , 0xD69338DDECF4496E99FAE96AA9587CE2 , 0xD6B99FE33D5846A5B459EDE513FCEEBB , 0xD7C75B83202A44C79E61C63C8E83BF06 , 0xD7CFDD94B79947A6903C344E3DF5E29F , 0xD86777372A434376ADE498DEFBD99647 , 0xD89CFC5DE3644833A1A3D12E58AEA39A , 0xD98E17721D524B409C6D5F5902DFD212 , 0xD9C547C7AE094644BA264497F73306FD , 0xDA5ABF3A196C4D20BEDC20268C801FBE , 0xDB1E4109009F437AB860F9FC047AB680 , 0xDB6C043BDF27481FA752A0FCE0D59349 , 0xDBBE6F0AC5D24D75BC6BA338636A386D , 0xDBE8DCFEA30C41EFACA3CD78746DF54E , 0xDBECFC9ABE6E4F7D8C1EC669F39DDE97 , 0xDC00B1011E50498CBDC719EF10522962 , 0xDCAC348506874B37BE091CC01AB9FD4D , 0xDCBF83451AA746859D4DE4B7EA4D9185 , 0xDD5CC743D87248CC98818871438DBB09 , 0xDE0A4660AFC841DA83BDBB6BE0801712 , 0xDE0DFD87D6A0409AA89154C1CDA4C00D , 0xDE8327BAEE5A42BFA3119441CE9F0400 , 0xE034834DE6FE47BC8BD68F4216CFEB9D , 0xE19DF742C20D44E88D60671188175D01 , 0xE2955940EBC74513A1AFF630F61BDE8A , 0xE2B38F2FC7A341C6BFC456B3C053B8CE , 0xE3651DB1E006403B830D412C3FA0C840 , 0xE398C585870A467886C0F358178E3E28 , 0xE40B3097F3B34EA48CD7157E5E32C898 , 0xE4D9273A32BC4B65BFAB71EAC59A13CA , 0xE62AB798EC774165ACA224AD03987B05 , 0xE68289614EED46B89C8BB65EF7EF334C , 0xE7708AF48BF44B5CBCD3A8A24F6336F6 , 0xE7A50EA892BE446590A84342D2369612 , 0xE7A9A114FCCF4135AE4F86D1976FCAAC , 0xE817CB7471184D01988B6C79EB15FA66 , 0xE82306C73EF043D796E722FB0CE8BCD2 , 0xE8C8F701B29947918AF6116EABBA0D90 , 0xE8C97507DE1048718DA40DE9BD89137B , 0xE8EF31CC8E6240729DD64127C12D5E13 , 0xEA8F846CA463434083E45BA63EDC3738 , 0xEAADF62111E147F087E6DAF4347BDEE6 , 0xEAC39CAF816E48168F46C68EACE7B04F , 0xEB0C0719C84648E1A0832EC04C50FF30 , 0xEB4A625083E04A988326A1D1243BF149 , 0xEBB6ACBD880E46299E6DFACE56EF4A8E , 0xEC2666AF073A47FD9BA80DCD82F353F2 , 0xECF81513ADE8423B9E4C911D62ECA6BF , 0xEDD48F8A6FD24617A4D187D9139FEF8E , 0xEED176E1647A42E7AFE1FA41FCCF7BB2 , 0xEF09DCC1F1D84CFE96B266299754D8F9 , 0xEF771D6AE55F4D208E002A825AA2CC70 , 0xEFE0398E20874B0D83884290FC73F5F8 , 0xF010E8060DDE4AD3BFB6F6AFD1970820 , 0xF0A2A0A4766F4B06A7D409821EF7CC18 , 0xF0B13AB85FFA454CA5E386E78DD38453 , 0xF0E7237D5C0D4868AA26A8AE8836F040 , 0xF0F6BFB1DC3C4D6E99CAA1DD0BC32A79 , 0xF1514FCB059540F99247AB93D588AD2B , 0xF2AACF007F054EFF8777B1B468E1D65F , 0xF324E739C77C48E296AF91F8303E6A4F , 0xF380E37946F2420088BCCC80A554F19E , 0xF3C48062B1124AF59D38FE4E495D9CBA , 0xF3E9B99EDE1E42B8903C7C65C6261B12 , 0xF4184F079B3F4424BDA69617C7C0E198 , 0xF4F05979DD2D40248D44ADD38B1921EC , 0xF5F9623BEF1E4D72A3FBD749BA73E19C , 0xF6B61E3D4DE64D2BB8097A369ECF99FB , 0xF7014C6A365E472980EEDD7DACD56C96 , 0xF70A77038E80425FA98F463A1FD44473 , 0xF73444EF081A4AF380CE05D4F409543D , 0xF7595E61B9A640B089440EC9947E0F9A , 0xF7EB0B917346465AB3E3B901A172815C , 0xF8EFBD997C8A4441BFD33040EE99C70C , 0xF8F727CBC2E94E46B2708D3A289E9A5C , 0xF96BC4404E1B43F68F10EA1C76B7E0C4 , 0xFA488A99F1BA44CE84D4018A400FE462 , 0xFA50992C213D478580AC0E412F4CFF99 , 0xFA95C912C31443FAAE5E179D0056AAD0 , 0xFA976DC99CEA4FE0A800DF775DBA3AF2 , 0xFAB04079CA8048FFBC3DA7D556FFF452 , 0xFC4915AF6FDA4992A5111600C737DC35 , 0xFC6471BFE8044BDA9C0307C9C163FBF4 , 0xFC6958D5865845729A625046C7E84BF5 , 0xFC8405144CD74BDCB4A19E3E43FE7321 , 0xFC9B48ECE2354A9FB4B324C56B7F4DE1 , 0xFCA153FBB5604B64AA2326C93EC4F787 , 0xFCB6E363F93942E3806FA5E35DDAC27B , 0xFD0D209CD6FF45869255103C00DA0CDC , 0xFE00239A50FC469CBC92CED8B43CC8BB , 0xFE051A63E4B44CE593D97545F7261DE4 , 0xFE849AD582FD402DBFC09E2C2DAB7F5C , 0xFF067E170C0D4C1E89C8AE7213CBEAF0 , 0xFFCFB3CB2CBB4889AF8C94F9EA5180AF , 0xFFF67C781AAC40339075B6DF736AF840 )) ORDER BY `property_group_option` . `id` ASC LIMIT 500 ;
Copy
62
11.60 ms
SELECT `property_group_option` . `id` as `property_group_option.id` , `property_group_option` . `property_group_id` as `property_group_option.groupId` , `property_group_option` . `color_hex_code` as `property_group_option.colorHexCode` , `property_group_option` . `media_id` as `property_group_option.mediaId` , `property_group_option` . `created_at` as `property_group_option.createdAt` , `property_group_option` . `updated_at` as `property_group_option.updatedAt` , `property_group_option.group` . `id` as `property_group_option.group.id` , `property_group_option.group` . `display_type` as `property_group_option.group.displayType` , `property_group_option.group` . `sorting_type` as `property_group_option.group.sortingType` , `property_group_option.group` . `filterable` as `property_group_option.group.filterable` , `property_group_option.group` . `visible_on_product_detail_page` as `property_group_option.group.visibleOnProductDetailPage` , `property_group_option.group` . `created_at` as `property_group_option.group.createdAt` , `property_group_option.group` . `updated_at` as `property_group_option.group.updatedAt` , `property_group_option.group.translation.name` , `property_group_option.group.translation.name` as `property_group_option.group.name` , `property_group_option.group.translation.description` , `property_group_option.group.translation.description` as `property_group_option.group.description` , `property_group_option.group.translation.position` , `property_group_option.group.translation.position` as `property_group_option.group.position` , `property_group_option.group.translation.customFields` , `property_group_option.group.translation.customFields` as `property_group_option.group.customFields` , `property_group_option.media` . `id` as `property_group_option.media.id` , `property_group_option.media` . `user_id` as `property_group_option.media.userId` , `property_group_option.media` . `media_folder_id` as `property_group_option.media.mediaFolderId` , `property_group_option.media` . `mime_type` as `property_group_option.media.mimeType` , `property_group_option.media` . `file_extension` as `property_group_option.media.fileExtension` , `property_group_option.media` . `uploaded_at` as `property_group_option.media.uploadedAt` , `property_group_option.media` . `file_name` as `property_group_option.media.fileName` , `property_group_option.media` . `file_size` as `property_group_option.media.fileSize` , `property_group_option.media` . `media_type` as `property_group_option.media.mediaTypeRaw` , `property_group_option.media` . `meta_data` as `property_group_option.media.metaData` , `property_group_option.media` . `config` as `property_group_option.media.config` , `property_group_option.media` . `path` as `property_group_option.media.path` , `property_group_option.media` . `private` as `property_group_option.media.private` , `property_group_option.media` . `thumbnails_ro` as `property_group_option.media.thumbnailsRo` , `property_group_option.media` . `file_hash` as `property_group_option.media.fileHash` , `property_group_option.media` . `created_at` as `property_group_option.media.createdAt` , `property_group_option.media` . `updated_at` as `property_group_option.media.updatedAt` , `property_group_option.media.translation.title` , `property_group_option.media.translation.title` as `property_group_option.media.title` , `property_group_option.media.translation.alt` , `property_group_option.media.translation.alt` as `property_group_option.media.alt` , `property_group_option.media.translation.customFields` , `property_group_option.media.translation.customFields` as `property_group_option.media.customFields` , `property_group_option.translation.name` , `property_group_option.translation.name` as `property_group_option.name` , `property_group_option.translation.position` , `property_group_option.translation.position` as `property_group_option.position` , `property_group_option.translation.customFields` , `property_group_option.translation.customFields` as `property_group_option.customFields` FROM `property_group_option` LEFT JOIN `property_group` `property_group_option.group` ON `property_group_option` . `property_group_id` = `property_group_option.group` . `id` LEFT JOIN `media` `property_group_option.media` ON `property_group_option` . `media_id` = `property_group_option.media` . `id` LEFT JOIN (SELECT `property_group_option.translation` . `property_group_option_id` , `property_group_option.translation` . `name` as `property_group_option.translation.name` , `property_group_option.translation` . `position` as `property_group_option.translation.position` , `property_group_option.translation` . `custom_fields` as `property_group_option.translation.customFields` FROM `property_group_option_translation` `property_group_option.translation` WHERE `property_group_option.translation` . `language_id` = ? ) `property_group_option.property_group_option_translation` ON `property_group_option.property_group_option_translation` . `property_group_option_id` = `property_group_option` . `id` LEFT JOIN (SELECT `property_group_option.group.translation` . `property_group_id` , `property_group_option.group.translation` . `name` as `property_group_option.group.translation.name` , `property_group_option.group.translation` . `description` as `property_group_option.group.translation.description` , `property_group_option.group.translation` . `position` as `property_group_option.group.translation.position` , `property_group_option.group.translation` . `custom_fields` as `property_group_option.group.translation.customFields` FROM `property_group_translation` `property_group_option.group.translation` WHERE `property_group_option.group.translation` . `language_id` = ? ) `property_group_option.group.property_group_translation` ON `property_group_option.group.property_group_translation` . `property_group_id` = `property_group_option.group` . `id` LEFT JOIN (SELECT `property_group_option.media.translation` . `media_id` , `property_group_option.media.translation` . `alt` as `property_group_option.media.translation.alt` , `property_group_option.media.translation` . `title` as `property_group_option.media.translation.title` , `property_group_option.media.translation` . `custom_fields` as `property_group_option.media.translation.customFields` FROM `media_translation` `property_group_option.media.translation` WHERE `property_group_option.media.translation` . `language_id` = ? ) `property_group_option.media.media_translation` ON `property_group_option.media.media_translation` . `media_id` = `property_group_option.media` . `id` WHERE `property_group_option` . `id` IN (? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? )
Parameters :
[
b"\x02 0¨(çñA —O®8ͬÞÛ "
b"\x02 0¨(çñA —O®8ͬÞÛ "
b"\x02 0¨(çñA —O®8ͬÞÛ "
b"\x00\x00 ÅÜ\x07 ºIÃ C…"Ç\f é "
b"\x00 \r \v sk¾I¿Ÿàkáïà×/ "
b"\x00 THÔGðK8¬$;Ù\x18 L«€ "
b"\x00 [}yæ•I(½ÌsAl´Ë\x14 "
b"\x00 ÆÉyD°Hyÿ¨\x03 R\r mÓI "
b"\x00 ìCï¢I|┤53ÅÇÆÅè "
b"\x01 QT_\v .@]®í\x16 ¨\x17 /â "
b"\x01 V\x0F ¦²\x1D A\x1A ©)ı░³ÅyG "
b"\x01 `½žäÕ@\x02 ‹\x1E s »«™Ø "
b"\x01 g▀\x1C /%J<éçRìáJ=¤ "
b"\x01 ŠÜ[òÎFR æ¬zÜnd "
b"\x01 ¤ Ç01Ks«œ¤,瀧n "
b"\x01 ¿—\x05 4³A2ƒËû\x1E ¿\x02 Ф "
b"\x01 ÁBrÌÞAz„Š<\÷¨ý, "
b"\x01 µ\x15 =S╬Bz┐üL%(`ãB "
b"\x02 aïí_zL¬©Ã÷Þä&Œ "
b"\x02 ˆ\x7F ŠZŠO4™®iV½\x1E ZÓ "
b"\x02 Œ–£‚“G\x13 ½s\x07 ºÚJé\f "
b"\x02 É_YÜÞE¾áQ3⬽PÊ "
b"\x02 ©Å┤0WLUëîV─A!ðN "
b"\x03\e ¹DcpO2”òÈ\x1C $©«4 "
b"\x03 >n`\x02 @Cìšè\x16 8Ö@xÛ "
b"\x03 J.}yÿEkŸ•\x13 7¥ˆÐï "
b"\x03 KoqÆû@\x17 Éf\Ïâ9ëð "
b"\x03 VÄ¥îÇBƒ²,ÝϧÀb½ "
b"\x03 é|ÜÑ\x14 BxüS\x12 ípx0¬ "
b"\x03 Ç>\x03 жLs¥Ž‚¥·;*4 "
b"""
\x03 Û§\n
ê‘IÚ»&f;\x14 á\x18 Ð
"""
b"\x04\x12 Ét:VL9»IÝËŠ„BJ "
b"""
\x04 7‡%ÍÕLZŸ±zÿ\n
0¦°
"""
b"\x04 kú\x12 ‰`Cú‘AO9£}3È "
b"\x04 Ì^žiÔG事GvóSTð "
b"\x05 ,Ë\x00 SçB\f Îé7ãŒáú "
b"\x05 ;¼@AîH=–Àß>\x7F +bU "
b"\x05 âx╬\r rGúÅ÷_¶.├¾a "
b"""
\x05 ‹\%âRLÒ¥>]\n
ŒñPâ
"""
b"\x05 تñJ2Lè×ÌýË┌\x16 _÷ "
b"\x05 £>/I¦O1Ÿe\v q Híô "
b"\x05 ┘ƒL▒äAÙ░ÚLØ░ù\\x18 "
b"\x05 ¸¢KîµLçØÇ?øy\x12\x1A ý "
b"\x06\v åm\x18 ÿAå©À‗v¤Åý{ "
b"\x06 TÑŽ?"A/›Þ\x15\x05\x00 ¤$_ "
b"\x06 ^│îr▒DR▒\x0E ÉÙ+¡└┤ "
b"\x06 ÅIÕGMBþÖò.#ë\v ɾ "
b"\x06 Õô\f\x1C JMë‘4/"\x1F P\x16\x1D "
b"\x06 ê+î{+IM¼·Ÿ@*–EÕ "
b"\x07 :▓/$ìM¹émÍS{wrñ "
b"\x07 ”K·=ÝD¦±aºÏ†üI\x01 "
b"\x08\x17 €>BRHçª÷É$PÕ¼Æ "
b"\x08 "\x1D ×#\x08 Mߘ+–*dXì7 "
b"\x08 9\x1A Ã\x16 ÉIfïV║\x15 ã┌ɵ "
b"\x08 E}²\x02 VF?┤\x1C \e ÑôXÉ "
b"\x08 V…Ïb{I\x1D ‚iT|–²ú{ "
b"\x08 b╝╦½ñJ\x12 ƒìó\x1F Ý'¸╗ "
b"\x08 鞤“\x1D C»˜é_R \x14 Ÿn "
b"\x08 ¹Ý÷RbA╝×&■ɦüIm "
b"\t IônÀß@▒øfàü¬¡\x12 Å "
b"\t wLwídH\x0F 𾕆{\x0F 9H "
b"\t ÜUï1\x1C IØ’45ð“ç{ï "
b"\t ÿçì>0Oî¨zbsÀ"æð "
b"""
\n
\e ò"»øK ØS[3P³HÊ
"""
b"""
\n
"Ø«"\x06 HqƒWŠW[\f ÇD
"""
b"""
\n
(\f üÐ#Aä«Å├Æ1Õ¸!
"""
b"""
\n
_ß'BðMx¢‘=µ4&m\x03
"""
b"""
\n
g2UµµLë¨?á®ER\x05 Ù
"""
b"""
\n
y‹w\x16\x08 J‹Œ>Õ£€TA‡
"""
b"""
\n
§\x0F AO½ED¼Ýì,1©Hš
"""
b"""
\n
Õ¾ï…\x14 BÝ”:…:Z\x1D ÓÍ
"""
b"""
\n
Îÿµ┬íAvé┴qJ¨ì╠
"""
b"\v Ü`\x07 ],BÜ€Ò\x1C\x1A ½\x06 s´ "
b"\f\x17 D\x06 CRA,½‰>³Ù'Ïš "
b"\f\x18 ßì¦èFô·Xn[Háïó "
b"""
\f N\n
ÞDbN“‡\x02 ^6b9À¥
"""
b"\f ˆoJ`jD‡™œ\x12 öŒ~°z "
b"\f •x73ÓCœ‹½×s8)v± "
b"\f 3N\x02 }HúüÛâµ[¥Æ╝ "
b"\r +‡-íÌJ@¼Ÿ\x10 wòMü "
b"\r ûhî■╦@ıäK╩~ã\x1F LÅ "
b"\r ù┼Õ┤ÒJ4ɪ\x07 æNé\x15 ╝ "
b"\x0E xCìD–LJ»z\x14 šÿjâ· "
b"\x0E ï~ÝÅzC3»àŒ?¸µžÉ "
b"\x0F\x13 ŒòYèHë²\x10 ÙpF\x05 ïZ "
b"\x10 $ü“°˜Jx•!nÔ¯D›µ "
b"\x10 4”Å%F@]\x18 æ^Ã\x16 ê÷ "
b"\x10 qŒb\x18 ‰NÊžx0õ- ”‚ "
b"\x10 Å&.b O-¼é$¦ÊBj\x0E "
b"\x11 +iMgÉH.…\x1E ²{ë·7 "
b"\x11 nð*+}Mb„Á¤KÒjsº "
b"\x11 ‘\x10 ð„úJ/§‚\x19 w\x04\x12\e 6 "
b"\x11 ë6)§·I\f ˆ%âÄ[ÖEú "
b"\x12 ╗ÅÛÌ┘H.┤´Û,Ú\x12 n) "
b"\x12 Þ%`”ØI\x13 ‚ÛGˇl\x16 ï "
b"\x12 é'vý\x05 Né«Uü¢J!À\x02 "
b"\x13\x19 ╩)ܦL9ØUìsºø\x15\x05 "
b"\x13 0\x1F .äŸN¿´XoE–\x1D Ò+ "
b"\x13 f╔│üÐE¸▒\x05\f çX]Û^ "
b"\x13 Žm\t …\x04 I\x15 ¸ÿ¯Xô\x00 Öd "
b"\x13 ¸¦Å¦÷M4¹ß\x10 ¦œ\x01 ¶/ "
b"\x14\x04 Å\x01\x1A ¯FhéwK┴_\x1F ╝m "
b"\x14\x11\x16 üØ®J?±ÞE\x03 Ê^\x0F † "
b"\x14 2╬f}ÎLßÀÙò¸_‗\x12 Ø "
b"\x14 G\x07 ÈILGŠ€V ORtóK "
b"\x14 ¤qßzE\x19 ‘\x00 dìdÀH– "
b"\x14 §=Vc»CÓ‚\x16 !£y¸\x0F f "
b"\x15 nñÛ¢•E\x1E ’µ\x1F LûrÎ "
b"\x15 {\f 8úHCÿüye$\x01 \ë\f "
b"\x15 °nzþ3Ag¶kòh%:¬G "
b"\x15 Ȭ\x00 |ñOV²,å\n àz¶® "
b"\x15 ▀┴3█cB(«\x15 W\x03 ■~\x14 É "
b"\x16 ˆ2Ý\r ¡@\x13 †häB˜è´} "
b"\x16 ¢÷‚ØOKQ³B1œ¸#\x07 Ë "
b"\x16 º{žN\x04 Eµ¾aSÁ÷'Ä\v "
b"\x16 ú\x11\x0F e\x15 E£µÖOU\x02 ˜wz "
b"\x16 ÿG\f KmG[ƒ\x07 ’XÌ$w@ "
b"\x17\x04 ˜õ\x15 ¼LTµ¿.ç~HIr "
b"\x17 CÏÚ\x10 ´Kb˜+\x11 …•²& "
b"\x17 Pø°t\x0F F?‰^[”a\x0F ír "
b"\x17 gïKt\x08 NXµÔ‹sh©\x12 n "
b"\x17 ºó{yÄI°ˆàäX85:. "
b"\x18 &ÞDìÝE>”|Ìø\x19 ÜÕÁ "
b"\x18 `ª╠VØO▓É`qÏßþñC "
b"\x18 ’GÒµ\x0E Ju¢üô\x16 ¨±b "
b"\x18 ¤åè–ËAóŽ~‹É:0š "
b"\x18 Î}\x13 ¨$Mäø¡/·\e )€ "
b"\x19 $)¡dYE9¯šà\x1E ¸l¶Þ "
b"\x19 îóÅ\x08 ├I*®\x11 Ìà`´þª "
b"\x19 Àç܃#NEº!XÁlv\x01 X "
b"\x1A #‰\f «\x13 Hu¸(È27Žäs "
b"\x1A X"\x1C ÏûN°€F}¿ÝaUx "
b"""
\e\x1C \n
ˆ¥ôG%¯çi®\x10 &J€
"""
b"\e LµµÖ\x18 Ae·Üë4œ\x13 8+ "
b"\e wý} ÑO\x0E ·D\)\x03\x14 tI "
b"\e µö$\x17 ÃB “A)Ý{{µ9 "
b"\e Ŭr×€B§¤;Ë깘›È "
b"\x1C †\x01 Ë¢ùD2º¿\x10\x08\t -Š= "
b"\x1C ìSzÖ\x03 Bm»ú´Û#Ái "
b"\x1D\x1F Äöj\x16 Eή\v Ô*”ï^\x04 "
b"\x1D }ª²Z‹Lï¤Ùîn¯H6Õ "
b"\x1D œO0\r fG»³÷Ê9D Ée "
b"\x1E\x10 }œúØL±ª!«dÞ\x03\x1F á "
b"\x1E IÉ─¤ºH§│c═¨¼H. "
b"\x1E ZD•I€I„šx\x00 ¹\t u½, "
b"\x1E i¶B·¹Lýµ>“×(*v\x17 "
b"\x1E œe[a&Eg¯ýgÆ„ß\x13 O "
b"\x1E ¬8c, F²Ÿ.þÎ/üy "
b"\x1E µÿ®V×JT„û¢\x1E ¡Sœ÷ "
b"\x1E ÉXÝ\e tLœ¸Xºv`$&! "
b"\x1F ê$þ2Ä@]ì4ß\x12 2ÀØd "
b"\x1F ªM\x05 uHCë˜CxK'¬¹: "
b"\x1F ÷\f ºÔJMk¼N\x15 Ǿ>½O "
b" \x15 ÷ŽçWD@¾/ùŽ…4&è "
b" Qz`×ÝCö†j·h‰6\x1D\f "
b" SC¶y0G¡▓×<ìc*\x7F ä "
b" n±Ãv,J,©‡éŸ\f v\x07 à "
b" •‘UËÝC\x11 ‰] \x13 âA\x1C 4 "
b" ¶\x19 œýõO>œ{!ý³¶Û "
b" Ù&ÿÄrANµ«†ÃÃg\x02 ? "
b" ñ—α’AÌ…¥ÿ;è\x02 Ó7 "
b"!oÈ\x18 âºLa‘œ°v"@\x17\x13 "
b"!‹òÉ8TM…Œ\x0F ’ÿF\x0E\x03 e "
b"!ŽLM2#H<¶@]®ÇÉ-Å "
b"!’Ý,ʼnH.¸¨œ§ùÀ‹¹ "
b"!┬ cØøF*ô2e¸IH¸Õ "
b"!ãž8ÝlOk‹²e×YÃ#˜ "
b""\x12 ®09%Bþ¬d\x14 │Øotg "
b""\x19 Á‡`]I\x1A ¦g\x12\x11 ÎiK½ "
b""</¸ÇMH¯€b†\f îW¬Œ "
b""="T}\x12 J˜‰}?nÍèJÍ "
b""â3ª#£Fغ¬1!"±\x14 ¸ "
b""è¸j\x04 ═G\x10 ▒ıLæ┴Ø\x06\x06 "
b""«\x0E :KLL„¹n´‚x|&F "
b""ã\x01 D»+Ae‹æJŶ\e G| "
b""æ9Ì€«Jwµê‡\x01 ¥M’¶ "
b""é²ý‘PHθH.WŠ…\x0F ã "
b""ì\x1C ôž\x10 Gá´w]®ó¸\x19\f "
b"#s-Øw¤E\t ‹à«Õî•\x19 é "
b"#³ô/SˆIF½*îyZ\x04 T® "
b"#Àaw\x0E úCá‘\v pY\x1F\x07 ‰[ "
b"#õ\x0F N¦B\x14 ╣üUW\x1C ü▀ß "
b"#ÚpÉ▓*N0ï\x07\x11 DÿùEÞ "
b"#‗¸çÆìG╦╗£6UÉÝ█ "
b"$\x10 ü]ÙXC¡ÀùRN\x18 @g² "
b"$/>)\x01 {Hײá÷ôÕî%\x7F "
b"$4#¾\x0E RNo¶.rjÈ9\x01 œ "
b"$Båb═h@çêü ^r,tÎ "
b"$DPÞ¿0CV±ñ¾9\x01 ¨Ñà "
b"$«²Ê¤"HS–h¿]k#qõ "
b"$Óéo:\x12 D/†ÒqQƒní´ "
b"$ó}´„DJ(Žâ\x02 [º~\x1F l "
b"%\x01\x08 V~#BñôÇh\x10 ¯ü╗j "
b"%%2®!ëK\e ª°ýÈ«\x16 e1 "
b"%ZË\x16\x0E cKIù\r YÄ<Ç┬ü "
b"%`U€©2G}¸ ˆë\e ûËé "
b"%u\x11 BD¶O‰§\x19 jÕñEô\x03 "
b"%À>V\x08 FKÏŸ¤ŒT‰Å†8 "
b"%Ö)‡cfMfªïlL^D•I "
b"%Úå0üßNÞ”Eþ9\x11\x17\x06 v "
b"""
&ó░a\n
2M\t ª_■╝°▓¿É
"""
b"&×é\x04 FÇIq£ÇëTŽä|Õ "
b"'\f ®ÕÑ(N▀òŹ\f ±ËË? "
b"'4\x10 `tÙBäé!\x1A &ûy$ "
b"'5\x03 Ør_@ü—¦¥ñnå$M "
b"'?0¼\x12\x01 EŸ© ¾˜ä‚šU "
b"'LÌ,7’CT¹¯8öGLä` "
b"'j A÷ZLV öÛŠ\v ƒ\x05 ~ "
b"""
'Äõ\n
Q+J$£âš‚\x10\v ù\x0E
"""
b"'Ù\x00 ±0\x7F H(®õW\x11 XY™¯ "
b"(X\x05 ~/éKF¾©ÏÄl¥‹˜ "
b"(†äh\x1E LIÙ«ƒ‹w»îļ "
b"(ƒoüV¯GÅ©ý0à\x07\x7F ╦Q "
b"(óÿŽ+O,…«Ú$\x12 ç5m "
b"(óÔ*âéJF‹4÷VÕeÿÎ "
b")X´[êÿEË—óì¦<"–? "
b")cDÙù±Hν\x7F Û[Jè\x06 r "
b")”?ý\x1F Fòº$0\x12 \x00 ªÞ "
b")«\x1E ©”«O® –5¨=Ž©¶ "
b")¼‘îßìNQ–.J\x1A ±Ö\W "
b")½Zk¥WB™®Å<Þˆ\x15\x02 q "
b")┌\x05 AÙ¡DèÅà┬%Â■CY "
b"*\x19 @\x7F 5+C‡¥œd¯öò\x17\x1E "
b"*&¨¥jnE#¦\\x13 |\x1E üh\x1F "
b"*B]«ÖÌC±¸\x14 Lé\x10 S0Æ "
b"*WZ'•xG°’¾òuä?F¹ "
b"*€u©ÂZAý–J\x1F š´ÅT¼ "
b"""
*Ã\n
±¥@¹Å0M®éà×▒
"""
b"*ÐV\x00 i™K\¬Q\\x11\x1F ¥Øí "
b"+;█bmJLØü┘øÜ2WV\x05 "
b"+×Å|3‗CÏ¡┐°8¢┤╩³ "
b"+§á8sáHX‚8\x02 NÌêÒ. "
b"+²'Äç H\x07 ¿É┌J>ü¦É "
b"+■ƒàiqNá│Å├░▀┘¨\x13 "
b",8"›·v@\x0E ޶ÃÃ\x06 …\x12\x00 "
b",j×\x01 `vN˜ƒ¸û\x1F\f ›>^ "
b",Ù奂»A(›\V\x02 @ûTÖ "
b",ê½Ð|KJîŒ7&d\x00 {BÐ "
b"-&&\x10 ¹DAµ£"²î¢~jL "
b"-+6ŒþBMщ\x12\x7F äëb\t "
b"-0²7ã@K\x14 €\x18\x0E ‡¤Á£> "
b"-E»÷fDH摼¦Bk\x1C n` "
b"-la¦*\x11 DP‰©wxZn¾Z "
b"-ž~±…šK/¼Ñ»H\x10 yY\x12 "
b"-Ä¢ð@ðM¸¢Ç5\x06 %ÆQ’ "
b".\x13 Û«u¤F%”\x1A Áâ^Ÿ\x1C ½ "
b".\x18 'ÿp\x12 EG©\x12 4ê\x02 Ëä{ "
b".EÅ3ì(Eþª±Ô/ÿçÍ¿ "
b".GýnguDQ¾>¥YKõQc "
b".Ó×1ØTGíò¦îí_K╔à "
b"/9¢½nüE²┐oá+\x0F z?\x16 "
b"/eÜ+B³MjüHÑóp╣Z: "
b"0\x03 „û _@f‚žFA\x15 p¤\x17 "
b"0\t ” ¢aDF³ŒÀ‘¢ræ\x1A "
b"0u‹N%÷E”¨°\x14 -ƒ^³P "
b"0|¡+õ&IÖƒÀ\x1A ¶ti\x05 "
b"0ˆ“3†ˆAþ’\t 8zˆQ3\x03 "
b"0è࿘\x03 O@§÷îòOªí\x02 "
b"""
0²Ñ█;╠K&ì\n
+¾░Y"¥
"""
b"1ÈãÏq¾AJ‘lµõÛ}~¸ "
b"1ÿ¢–\x07 dOý¶yà•\e ,†H "
b"2FùèAfN»¤Wý$ì7×N "
b"2wád\x18\x14 F\f ž„щ§+ÀÕ "
b"2ž)Ž<EKu›B꼄\x17 š0 "
b"2žþìý\x15 @©‡Þ$¸ˆ¿p? "
b"2ò[*\x15 9J“‘\t ¯TwW$Ä "
b"2õªý®ÕM’·\x05 JsPá\x13 "
b"3\x07 Òû]˜C\r ‰%ÒåX+•Z "
b"3@K½ÝÆ@ú…Ð(²6¹\x1E % "
b"3u\x02 ô\x0E ìN¸¢n,\r %ºT7 "
b"3Öª®úÂEÃØ├Ë\v ¶gÃr "
b"3æäÇjËIu ov!86\x1F "
b"4îN.N┬Kü╗╝ ÇM;E¡ "
b"""
4ËüI\f ─Ngì╠5þ\n
ı7·
"""
b"4ÛµøŸ\x17 Cܳ÷å¾¾¦!\x1A "
b"4ÜßQm÷LG¨xŽG]¦ÇI "
b"5I¯N\x11 4G^Š›~<Ï‚ùŸ "
b"5Üøy#ÑFLèÑøÃþ╗ÃØ "
b"5©É6ǼM▒ö\x0F Fbhðoj "
b"5÷«x\x0F ìCÇ¢GÂX—£´\x00 "
b"6âØ╣└·A\x04 ú\x12 Ò|ʤ═Ó "
b"6¬F,îÅO\x17 ¶ÿòüj;±% "
b"6ËNSl¢IsˆÓKñ©aü\x1A "
b"6ÞÃ[¹/O¦²C¶ZûÊŽ„ "
b"6Óõ\f ´YMû╣¼·ØSÈós "
b"6õw\x1C v^F«à¯\x1A ÔÇ•ß "
b"7[yá4>NñŠý:ê´iþó "
b"7{'ÅzM\x06 ×þbæQÌa\x08 "
b"8Æ7ÇmþHÙÆ"ö¨þÛ×É "
b"9/C0\x05 ]FÒƒ¼Q\x06 ÇéñÐ "
b"9OEÐþpG±Ž\x10 ¶y\x0E ÚP½ "
b":R7\x10 O\x19 @ÓüÒFy╬]þ\x11 "
b":Tm•\f pNžšÖ\x16 ™á[¦Š "
b":^OpþXJ”‹î!áo\x1C\x0E ³ "
b"""
:q¸zÛ\x1A Aü┤¼ï¸Ø\n
w
"""
b";&àÇ›)JÊ—1—:DËw• "
b"""
;:êÅ’zO\n
ŒŠ:\v å;ƒp
"""
b";oþ¨õ¹G$ØÄ\x19 }î\x13 ±@ "
b";ŽYT¹´Hn‡Ið¯[îçÆ "
b";ÉXwk«FŸ”=ç\x1E 6z\x06 e "
b";×-\x7F œO@/ºÚ·z1\x16 _Ø "
b"<\x17 ;m=\x04 @X¥9\x06 aqfÏW "
b"<,kÁ*jBZ‡¥\x10 Eœáìõ "
b"<K\x17 ðùåA\x1E ‹Ñ¨Ñ{2bð "
b"<h¤¬:\x16 I¹¬îÆœ˜G|‘ "
b"<‰ý-\f\x15 N#²‚å ”8”· "
b"<¼ð\x04 ¤UJج║µf\x06 uÑ{ "
b"""
<║£╣ËIM\n
ìv¢\x0F pNw■
"""
b"<█Ì×QËKÓØ┬®ı½K|W "
b"""
=`+\n
kZLv€=\x05 ýñ›\x17 ˜
"""
b"=k²ª•\x1D H,§ƒ¾·1´«, "
b"=á░¦~øEJ│õͪü\x00 ~x "
b">7\x0E f{/GT¤™\x0F ã±Õ}Š "
b">ZûoUÓHÖœlK\x14 ®$¸ "
b">g╠¤Û²A▄ì]ø\x1A èªôÖ "
b"?Š#£DøJX½O|®qôªª "
b"?ðNÈ„ÖD)ŒE9"ÜÄ8à "
b"@\x01 2ÈIïED§\x7F З\f ;Ë¥ "
b"@~¼´g@HÕœ¢9ß\x19 xÒÆ "
b"@¨\x13 §Ðû@P©ñ\e B\x1E AÊ¡ "
b"@ßYÒx\x1F J̈¿4DGƒw§ "
b"@õp}á)Fô«5U\x07 OY\x11 Å "
b"""
A\x17 þ\x18\x0E ÆN°€4¯‹³µ\n
y
"""
b"A\x1C 2˜™ðE5±üºö%×¶n "
b"A5šê;ÊL'•\x08\x1E ˜\x01\x1C e\x16 "
b"AJˆø²%O\«*IÕ¶¿ì; "
b"AY¼®WŸ@ÈœI?e÷\x05 —\x0E "
b"Apx-IÚ@gŠ\t çá\x05 £\x18 = "
b"""
Au\n
‚«˜Lâ¦có£ð<W\x10
"""
b"Aì¬ïÈNDw½‗(¨L█┤\ "
b"A’cª\t ,@¥§,\x03 Í5«Q\x07 "
b"Aå\x01 ;gÖM:’·¢uÚŠôA "
b"BC§;\x1A –Hæ°\r Ù]:*\x1C r "
b"Br|W KL>ØJO┐±õ\x0F ╗ "
b"B}椪HIT¿”<DÔ\x0E ?æ "
b"B·Ÿ¦kðF䎉у>—’’ "
b"C\x06 Ù%\x1F NG\x00 ´É.ÔeÌíÒ "
b"C\x16 ¨_5ïKÌ´\x10\x1D ¢\x04 /ae "
b"C\x18 ”\x03\x05 ãCĬÁ9‹\x0E ¯‹ÿ "
b"C1┘\x1D <ìG}░NâÆ \e q▒ "
b"C5hl¬FFúµá"™c°“ "
b"C5Þ\x19 íþM¨˜5´Ã¢b "
b"C\R\f áXC§¢»&»¿\x08\x11 å "
b"CÅm()ÜDB¢Ùæ¦┘╬╚ü "
b"CÄ\x05 ð\x05 øK_„¾À\x03 ‹ºUÍ "
b"CÚ÷çšÐDR³7²c,øôr "
b"CýÒîôKDü┤\x01 ┐ã\x1F ,\x16 ¹ "
b"Cò†8˜óG⇰\x17\x03 ÞP\x0F û "
b"D'\v ¦srD€±mæ\x02 °ÄÆÑ "
b"DYÏ6KpKØ¥Øo "ø_\x1C "
b"""
Dy)[k\n
O▒âÖó<Åï«H
"""
b"DªÍ\ê]G\x12 ¼e*W~\x08 §ž "
b"DÀ@·}…F\x06 ±\x1F E<ƒ¶ªô "
b"E\x14 ^0E╠I\v Ø]W(º-\x03 E "
b"EOu: \x01 C|©œì~‹¬Q5 "
b"E–\x08 fîCKs \f ¬Ã¼Ý\h "
b"E¢2i6AGú†&‡ÌãI•ª "
b"E¯\x1D Ñé:K/¿¢QôÓ¤Äu "
b"F\x02 Ϊ¨áNn®ê\r %tÔ¨q "
b"F\x1C =eÅúEzäà \x1A µ┬º- "
b"F]\x1F\x0F .\x1A GA”T<þ/[iÎ "
b"F‹¹û5åMù©QMþT¥JW "
b"FÞp…ÎJE¢‚–ÿs\t Ú¥# "
b"FÙ╠¶±hC`ÉìÐ\x0E\x08 8¯½ "
b"G\x18 þ£ÕvN–ž.xxožú„ "
b"GGì6æÑAîºzX¿Ìä/Ô "
b"GÞ®í˜}L\x10 –þ\x08 h\x0F\x7F ÜÛ "
b"HNUâ07BŰ\x18 sÕõÕ'[ "
b"HOf\x15 ÛÚL¦ÿ\f ½Ø\x02 [?ì "
b"HÄa¾¹\x0F O[│Ú"YìÆâu "
b"I7ðÁù:M"¬9¯q¿¢íw "
b"""
J0\x05 á\n
RJÐ╝j;0┐üá\x0E
"""
b"JM\x11 *œõM\x0F ž–cõøâ\x0E = "
b"JS;\x19 iÛC~®(h8ªÉþ" "
b"JÁ│ì`9C\x1E Â┬\x05\f $\x00 ■l "
b"Jòî4¼¤JU¤]ÏU\x01 €§‰ "
b"K\f ½b1EC¯²ùèYŶ¢B "
b"K\x12 ñÆ\x19 †EP¥ß[f01ƒC "
b"K>tÅ)`NM¬╦®\x0E ¼ò&Ë "
b"K–\f ½Žˆ@Û‘Ü&(bÁ’\t "
b"KÛ@Ç\x04 Ñ@&œÕ\x10 O\x08\x01 ‰‰ "
b"L"KÉaÛD¾ž2bv7&D@ "
b"L)ÇYŠBN6³~hcBozE "
b"Lð3ñ¯¨F ‹ KêÞÙ™\x0F "
b"M6QzHÔCÅŒ(\t (†—¬b "
b"MEö1©\x11 Kް â¿\x03 Üv\f "
b"M¶\x00 ¾c\x16 Jt±.%Ƥ@‚\x1C "
b"""
M¿ïU•|K\x04 €æ¹pL+\n
P
"""
b"MÚE▀ö³MPÇÉ@¸Iƒ\x18\x7F "
b"N\x1C µ²k±DD¶±»\f >‘Mõ "
b"NCþt\v VF[µÐâ›ýnz\x19 "
b"NHó\x01 V–LÈŒ†\x7F ‡°7\x13 Å "
b"N¸)&vìL:¡\x1F ×uI\x02 %Â "
b"OKØ›æ§O͈zhœ\x03 à,Ò "
b"OQø\x03 :—IÏ£\f þF™}8² "
b"O‹ÿ\e\x02 rC»‰¤WFÌ\x13 r\x1F "
b"Oû\x16 ╠ïkAqÜ┤▄¼─¹Íü "
b"OÚ›þ&\x18 C\x13 ¦Ngð\x13 Ò|/ "
b"P5s¥\v ›M¬‡Í q!›ÁÎ "
b"PSüq?áK——Ïg,>q“D "
b"Pÿ4|─^A¦┐lØ7Ú¡\x0F · "
b"P¸_Ñ\x0E DB@´®_×\x1C ¤¬Þ "
b"PìÏÆž’EP•ïÑ\f ÷#Š\f "
b"Q4 ^(ÁM$³J£Ë+Û\x06 Ÿ "
b"QYÑŒägD\x19 š!\x11 þ€™Î, "
b"Q€K\t £É@Å‹hþÓ\e Ä´£ "
b"Q“ÿ¥Þ†H¡¼û¡úŠ&À+ "
b"Q ÏO\x1C\x13 H\x17 ™™ãó&ˆmä "
b"QÖƒêbíB¤±\x11 RNö…|J "
b"REM²ùB²¬\x07 š)oEJ\x10 "
b"Rø²ƒúâIï‰ÐÔ‹X\x02 Dc "
b"S\x00 V‡ÀCEݬ7ú7¸ Ñü "
b"SH—\x1D o3B©®\x06 4O…[ô& "
b"SHÅ\x11 quIñ‰\x17 ‰’žr\x16 Y "
b"SýüäÇùJjº¼!5┴5þx "
b"T\x08 ypOƒE`íü.N¨)v1 "
b"T\x14 v’ËûCAšm\x11 âlDÜ "
b"TE K\x02 ÕB)’+ËâÈ‘vk "
b"TR£Àa├M\x00 ü+Wé\x01 à0ý "
b"T\x7F '†ï\x0F AܹºÍ˱œ´s "
b"TÝå\x1E\x1D "LóƯs¿nÑØ "
b"U(|ÿ¢ªNa¤'|™yƒï\x15 "
b"U7Ê‘}ÓI†”XõžZÐÊá "
b"UD’³\x19\x7F A̧0†\x13 +»\x13 Ô "
b"Ux¦i§\e G—·c)X³ª{, "
b"U“ù4Í6Lx®º‘¤ xó\x1C "
b"UÖåÄ\x15 EØ£³c{øÐذ "
b"UØKÅ╩;LıÖ\x01 Ø\x0F -8fq "
b"V\x18 _gÙ\f C²ž—nzÈ\x19 ¿P "
b"V\x1A 0“^ñ@Ò¹çÜ\x02 Ñ }ø "
b"V&áØ}ÍN'ë$UG)ûÑÄ "
b"VCÉ\x1D èéAtüh╩╬YÚ╠┬ "
b"VàÝıL(IöáÉ%\x16 m´ÈS "
b"W\x00 壚ÓB\ƒ\x06 Û±Ö¾YÆ "
b"WEÌ\x1E ò\x02 Fr¡ÿ"<('ç\x1D "
b"WQ¸?’Ó@.¡9šhûu¯\x08 "
b"WÈnê~ÙAŒ˜‚±~–Àif "
b"WõŸ|£IOK‚hDz<Œþ "
b"X\x17 \Å^?O\x07 ŒMç`Cë¶¢ "
b"X̽}\x06\x0F G‗ì│Å▒\x11 *;§ "
b"XõÌ7÷¸J®…8¾ü&§ÒÈ "
b"Y\x16 [ü(ëC2×ò\x06 ô"©÷ÿ "
b"Y\x19 «ÎH6F\x1C ˜<Gë\x17\x05 è# "
b"Y"œ\x06 ž“Mö±¥\x1F Rì¼\x03 5 "
b"Ye\x04 ¯\x1F RFœ…OUVG¨<Ö "
b"Yqº9ÏGCj±ŠŽ\x1F ;6ùÙ "
b"Yt+l%{AÍ„“¹8&™‚ˆ "
b"YëÅ‗├@HxáÖ\x0F 3═|`┐ "
b"Y—Ù\x1D ÀxI—½ïhßÅ ‰\x12 "
b"Y£Õ■░\x1D L▄üGÌ\x16 ╣ÁP¦ "
b"YÊ£gKaEв¦°K~ƒ¯p "
b"Yã~;D\x03 B¤¸\x07 »3×SÌÀ "
b"Z·®ÊˆdN.•)\x02 ö\x01 ¯–M "
b"Z▄£.\x10 ÕFÉØ\f ýW«\e i# "
b"ZûŸ°éåF}ر\x05\x0F *+ë "
b"[\x10 ³\x06 ¸\x05 K¸²\x10 ±Ï\x1E )MÝ "
b"[.uÒ˜\x1E A\x1F ®ÚÍ8ðªPV "
b"[ì*\x04 Q\v @\x18 ▒Iä \x02 d\x1A t "
b"[ºæÎšy@Õ¸Q+Ç^\v …_ "
b"[¼x¸ñêJBª5í\x18 šk„[ "
b"\#ìyÒ\x15 H─óL¼/î█\x10\x00 "
b"\[\x0E k\f .ATò`▓[ìɤ? "
b"\dÇÄØRG\x13 óc▀\x14 n1ï╠ "
b"\È/Á\x13 &KȼÉ╦<×o×\x01 "
b"]\x0E ▓î´=IW¥?ÂxÀÇÉQ "
b"]\x1C\x01 $1óFó6¼I\x16 .ÂH "
b"]TH†ã\x10 D0‚½ÐÞþR¾. "
b"]é7n╗─D]æÏÇÚþÞÅø "
b"]ÕÕ/\x07\v IlœUi¹/Aƒ£ "
b"]áï¯^\x16 By’\x1C v…ÁyCL "
b"^TäAû}MÍì░\x10 Ï}°\x14 å "
b"^tØ═Í┘E@«¶pèý"┴ "
b"^{öŠs‡N¦½Ñ7H\x17 y¤ß "
b"_\x01\x1C !\x02 »Muä├W©Å±¥v "
b"_\e ÃÌ\x15 dEÇÉëP▄pÉÚû "
b"_~q\x06 ] A{“õÕv¶ïôª "
b"_Ÿ‰Œ\x03\v I–ÿ1\x03 Áa\x06 M "
b"_Ëë»\x11 €BIš¾ì,Ä4ný "
b"_Ï[\x01 ÔÙB`˜Ué^\x13 ËÒØ "
b"_¹}4¡ZO´ìj=jL\x0E Í┴ "
b"`\x1E ½9†dB’œLF\\x17 XW\ "
b"`µ▒░\x7F ÝG┬í¸T ¡ttÅ "
b"a-=t)ÖBLµŒÉñÂÍ0m "
b"aè\r ã\f ╣M̽ây¼ìÏe║ "
b"aÕêié[G╔Å╝3\x08 4áÎ} "
b"aêû\x01 îÇEIŠ\x7F WŸÀ¦ ú "
b"b\x1C xÅ\x02 ·J€¢\x04 x`í=aV "
b"bGž:»ùMî·òÚ˜w¼›¼ "
b"bÜhª┬JD╣╝·\x08 a┌ü\x03 r "
b"bÌ\v 6®±B\x13 ÉÆ\t ║ÞÆ×\x19 "
b"c\f ”šà"KÇ—\v ê÷}„5j "
b"c'é@¤\x08 A·®ßÛÄT¤\x10 ½ "
b"c?\x00 ¢Ÿ¸H!¼Õ©;@{jB "
b"cF\f\x17 4ÌC`¥If¥¦\x0E ‘, "
b"c &oGÁMk¡ˆÍÁpZ˜§ "
b"cì–Ó\x01\x00 I‡‚ió•t~É "
b"""
dí$VoÔLý«ÂÉ\n
Î}┴└
"""
b"dØÎVÞ\x05 O"ˆ<gM§ã»G "
b"e[¼ØÜËMtï zaô\x07 Ø\x0E "
b"e’¤?³L@S‹`kú’SéÄ "
b"e¢Fé´#Oy£xÝÞÄZ2¿ "
b"eÀ\x1A ôy\x0F ON²¤âSš\x04 ¡× "
b"f\x03\f —‰\x7F Oܼ¶\x01 €#)J/ "
]
SELECT
`property_group_option` . `id` as `property_group_option.id` ,
`property_group_option` . `property_group_id` as `property_group_option.groupId` ,
`property_group_option` . `color_hex_code` as `property_group_option.colorHexCode` ,
`property_group_option` . `media_id` as `property_group_option.mediaId` ,
`property_group_option` . `created_at` as `property_group_option.createdAt` ,
`property_group_option` . `updated_at` as `property_group_option.updatedAt` ,
`property_group_option.group` . `id` as `property_group_option.group.id` ,
`property_group_option.group` . `display_type` as `property_group_option.group.displayType` ,
`property_group_option.group` . `sorting_type` as `property_group_option.group.sortingType` ,
`property_group_option.group` . `filterable` as `property_group_option.group.filterable` ,
`property_group_option.group` . `visible_on_product_detail_page` as `property_group_option.group.visibleOnProductDetailPage` ,
`property_group_option.group` . `created_at` as `property_group_option.group.createdAt` ,
`property_group_option.group` . `updated_at` as `property_group_option.group.updatedAt` ,
`property_group_option.group.translation.name` ,
`property_group_option.group.translation.name` as `property_group_option.group.name` ,
`property_group_option.group.translation.description` ,
`property_group_option.group.translation.description` as `property_group_option.group.description` ,
`property_group_option.group.translation.position` ,
`property_group_option.group.translation.position` as `property_group_option.group.position` ,
`property_group_option.group.translation.customFields` ,
`property_group_option.group.translation.customFields` as `property_group_option.group.customFields` ,
`property_group_option.media` . `id` as `property_group_option.media.id` ,
`property_group_option.media` . `user_id` as `property_group_option.media.userId` ,
`property_group_option.media` . `media_folder_id` as `property_group_option.media.mediaFolderId` ,
`property_group_option.media` . `mime_type` as `property_group_option.media.mimeType` ,
`property_group_option.media` . `file_extension` as `property_group_option.media.fileExtension` ,
`property_group_option.media` . `uploaded_at` as `property_group_option.media.uploadedAt` ,
`property_group_option.media` . `file_name` as `property_group_option.media.fileName` ,
`property_group_option.media` . `file_size` as `property_group_option.media.fileSize` ,
`property_group_option.media` . `media_type` as `property_group_option.media.mediaTypeRaw` ,
`property_group_option.media` . `meta_data` as `property_group_option.media.metaData` ,
`property_group_option.media` . `config` as `property_group_option.media.config` ,
`property_group_option.media` . `path` as `property_group_option.media.path` ,
`property_group_option.media` . `private` as `property_group_option.media.private` ,
`property_group_option.media` . `thumbnails_ro` as `property_group_option.media.thumbnailsRo` ,
`property_group_option.media` . `file_hash` as `property_group_option.media.fileHash` ,
`property_group_option.media` . `created_at` as `property_group_option.media.createdAt` ,
`property_group_option.media` . `updated_at` as `property_group_option.media.updatedAt` ,
`property_group_option.media.translation.title` ,
`property_group_option.media.translation.title` as `property_group_option.media.title` ,
`property_group_option.media.translation.alt` ,
`property_group_option.media.translation.alt` as `property_group_option.media.alt` ,
`property_group_option.media.translation.customFields` ,
`property_group_option.media.translation.customFields` as `property_group_option.media.customFields` ,
`property_group_option.translation.name` ,
`property_group_option.translation.name` as `property_group_option.name` ,
`property_group_option.translation.position` ,
`property_group_option.translation.position` as `property_group_option.position` ,
`property_group_option.translation.customFields` ,
`property_group_option.translation.customFields` as `property_group_option.customFields`
FROM
`property_group_option`
LEFT JOIN `property_group` `property_group_option.group` ON `property_group_option` . `property_group_id` = `property_group_option.group` . `id`
LEFT JOIN `media` `property_group_option.media` ON `property_group_option` . `media_id` = `property_group_option.media` . `id`
LEFT JOIN (
SELECT
`property_group_option.translation` . `property_group_option_id` ,
`property_group_option.translation` . `name` as `property_group_option.translation.name` ,
`property_group_option.translation` . `position` as `property_group_option.translation.position` ,
`property_group_option.translation` . `custom_fields` as `property_group_option.translation.customFields`
FROM
`property_group_option_translation` `property_group_option.translation`
WHERE
`property_group_option.translation` . `language_id` = ?
) `property_group_option.property_group_option_translation` ON `property_group_option.property_group_option_translation` . `property_group_option_id` = `property_group_option` . `id`
LEFT JOIN (
SELECT
`property_group_option.group.translation` . `property_group_id` ,
`property_group_option.group.translation` . `name` as `property_group_option.group.translation.name` ,
`property_group_option.group.translation` . `description` as `property_group_option.group.translation.description` ,
`property_group_option.group.translation` . `position` as `property_group_option.group.translation.position` ,
`property_group_option.group.translation` . `custom_fields` as `property_group_option.group.translation.customFields`
FROM
`property_group_translation` `property_group_option.group.translation`
WHERE
`property_group_option.group.translation` . `language_id` = ?
) `property_group_option.group.property_group_translation` ON `property_group_option.group.property_group_translation` . `property_group_id` = `property_group_option.group` . `id`
LEFT JOIN (
SELECT
`property_group_option.media.translation` . `media_id` ,
`property_group_option.media.translation` . `alt` as `property_group_option.media.translation.alt` ,
`property_group_option.media.translation` . `title` as `property_group_option.media.translation.title` ,
`property_group_option.media.translation` . `custom_fields` as `property_group_option.media.translation.customFields`
FROM
`media_translation` `property_group_option.media.translation`
WHERE
`property_group_option.media.translation` . `language_id` = ?
) `property_group_option.media.media_translation` ON `property_group_option.media.media_translation` . `media_id` = `property_group_option.media` . `id`
WHERE
`property_group_option` . `id` IN (
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
?
)
Copy
SELECT `property_group_option` . `id` as `property_group_option.id` , `property_group_option` . `property_group_id` as `property_group_option.groupId` , `property_group_option` . `color_hex_code` as `property_group_option.colorHexCode` , `property_group_option` . `media_id` as `property_group_option.mediaId` , `property_group_option` . `created_at` as `property_group_option.createdAt` , `property_group_option` . `updated_at` as `property_group_option.updatedAt` , `property_group_option.group` . `id` as `property_group_option.group.id` , `property_group_option.group` . `display_type` as `property_group_option.group.displayType` , `property_group_option.group` . `sorting_type` as `property_group_option.group.sortingType` , `property_group_option.group` . `filterable` as `property_group_option.group.filterable` , `property_group_option.group` . `visible_on_product_detail_page` as `property_group_option.group.visibleOnProductDetailPage` , `property_group_option.group` . `created_at` as `property_group_option.group.createdAt` , `property_group_option.group` . `updated_at` as `property_group_option.group.updatedAt` , `property_group_option.group.translation.name` , `property_group_option.group.translation.name` as `property_group_option.group.name` , `property_group_option.group.translation.description` , `property_group_option.group.translation.description` as `property_group_option.group.description` , `property_group_option.group.translation.position` , `property_group_option.group.translation.position` as `property_group_option.group.position` , `property_group_option.group.translation.customFields` , `property_group_option.group.translation.customFields` as `property_group_option.group.customFields` , `property_group_option.media` . `id` as `property_group_option.media.id` , `property_group_option.media` . `user_id` as `property_group_option.media.userId` , `property_group_option.media` . `media_folder_id` as `property_group_option.media.mediaFolderId` , `property_group_option.media` . `mime_type` as `property_group_option.media.mimeType` , `property_group_option.media` . `file_extension` as `property_group_option.media.fileExtension` , `property_group_option.media` . `uploaded_at` as `property_group_option.media.uploadedAt` , `property_group_option.media` . `file_name` as `property_group_option.media.fileName` , `property_group_option.media` . `file_size` as `property_group_option.media.fileSize` , `property_group_option.media` . `media_type` as `property_group_option.media.mediaTypeRaw` , `property_group_option.media` . `meta_data` as `property_group_option.media.metaData` , `property_group_option.media` . `config` as `property_group_option.media.config` , `property_group_option.media` . `path` as `property_group_option.media.path` , `property_group_option.media` . `private` as `property_group_option.media.private` , `property_group_option.media` . `thumbnails_ro` as `property_group_option.media.thumbnailsRo` , `property_group_option.media` . `file_hash` as `property_group_option.media.fileHash` , `property_group_option.media` . `created_at` as `property_group_option.media.createdAt` , `property_group_option.media` . `updated_at` as `property_group_option.media.updatedAt` , `property_group_option.media.translation.title` , `property_group_option.media.translation.title` as `property_group_option.media.title` , `property_group_option.media.translation.alt` , `property_group_option.media.translation.alt` as `property_group_option.media.alt` , `property_group_option.media.translation.customFields` , `property_group_option.media.translation.customFields` as `property_group_option.media.customFields` , `property_group_option.translation.name` , `property_group_option.translation.name` as `property_group_option.name` , `property_group_option.translation.position` , `property_group_option.translation.position` as `property_group_option.position` , `property_group_option.translation.customFields` , `property_group_option.translation.customFields` as `property_group_option.customFields` FROM `property_group_option` LEFT JOIN `property_group` `property_group_option.group` ON `property_group_option` . `property_group_id` = `property_group_option.group` . `id` LEFT JOIN `media` `property_group_option.media` ON `property_group_option` . `media_id` = `property_group_option.media` . `id` LEFT JOIN (SELECT `property_group_option.translation` . `property_group_option_id` , `property_group_option.translation` . `name` as `property_group_option.translation.name` , `property_group_option.translation` . `position` as `property_group_option.translation.position` , `property_group_option.translation` . `custom_fields` as `property_group_option.translation.customFields` FROM `property_group_option_translation` `property_group_option.translation` WHERE `property_group_option.translation` . `language_id` = 0x0230A828E7F14120974FAE38CDACDEDB ) `property_group_option.property_group_option_translation` ON `property_group_option.property_group_option_translation` . `property_group_option_id` = `property_group_option` . `id` LEFT JOIN (SELECT `property_group_option.group.translation` . `property_group_id` , `property_group_option.group.translation` . `name` as `property_group_option.group.translation.name` , `property_group_option.group.translation` . `description` as `property_group_option.group.translation.description` , `property_group_option.group.translation` . `position` as `property_group_option.group.translation.position` , `property_group_option.group.translation` . `custom_fields` as `property_group_option.group.translation.customFields` FROM `property_group_translation` `property_group_option.group.translation` WHERE `property_group_option.group.translation` . `language_id` = 0x0230A828E7F14120974FAE38CDACDEDB ) `property_group_option.group.property_group_translation` ON `property_group_option.group.property_group_translation` . `property_group_id` = `property_group_option.group` . `id` LEFT JOIN (SELECT `property_group_option.media.translation` . `media_id` , `property_group_option.media.translation` . `alt` as `property_group_option.media.translation.alt` , `property_group_option.media.translation` . `title` as `property_group_option.media.translation.title` , `property_group_option.media.translation` . `custom_fields` as `property_group_option.media.translation.customFields` FROM `media_translation` `property_group_option.media.translation` WHERE `property_group_option.media.translation` . `language_id` = 0x0230A828E7F14120974FAE38CDACDEDB ) `property_group_option.media.media_translation` ON `property_group_option.media.media_translation` . `media_id` = `property_group_option.media` . `id` WHERE `property_group_option` . `id` IN (0x0000C5DC07BA49C3A020438522C70CE9 , 0x000D0B736BBE49BF9FE06BE1EFE0D72F , 0x005448D447F04B38AC243BD9184CAB80 , 0x005B7D79E6954928BDCC73416CB4CB14 , 0x0092907944F8487998F903520D6DE049 , 0x00F08D438BBD497CB435338F80928F8A , 0x0151545F0B2E405DAEED16ADA8172FE2 , 0x01560FDDFD1D411AB829D5B0FC8F7947 , 0x0160BD9EE4D540028B1E7320BBAB99D8 , 0x0167DF1C2F254A3C8287528DA04A3DCF , 0x018ADC5BF2CE4652A0C3A6AC7ADC6E64 , 0x01A4A0C730314B73AB9CA42CE780A76E , 0x01BF970534B3413283CBFB1EBF02D0A4 , 0x01C14272CCDE417A848A3C5CF7A8FD2C , 0x01E6153D53CE427ABF814C252860C642 , 0x0261EFED5F7A4CACA9C3ADF7DEE4268C , 0x02887F8A5A8A4F3499AE6956BD1E5AD3 , 0x028C96A382934713BD7307BADA4AE90C , 0x02905F599AE845F3A0513383AAAB50D2 , 0x02B88FB430574C55898C56C44121D04E , 0x031BB94463704F3294F2C81C24A9AB34 , 0x033E6E60024043EC9AE81638D64078DB , 0x034A2E7D79FF456B9F951337A588D0EF , 0x034B6F719296401790665CD8833989D0 , 0x0356C4A5EEC74283B22CDDCFA7C062BD , 0x03827C9AA5144278815312A1707830AA , 0x03C73E038AB64C73A58E82A5B73B2A34 , 0x03DBA70AEA9149DABB26663B14E118D0 , 0x0412C9743A564C39BB49DDCB8A84424A , 0x04378725CDD54C5A9FB17AFF0A30A6B0 , 0x046BFA12896043FA91414F39A37D33C8 , 0x04CC5E9E69D447E4BA8B4776F35354F0 , 0x052CCB0053E7420CA0CEE937E38CE1FA , 0x053BBC4041EE483D96C0DF3E7F2B6255 , 0x058378CE0D7247A38FF65FF42EC3F361 , 0x058B5C25E2524CD2A53E5D0A8CF150E2 , 0x059DA6A44A324C8A9EDEECD3DA165FF6 , 0x05A33E2F49A64F319F650B712048EDF4 , 0x05D99F4CB18441EBB0E94C9DB0975C18 , 0x05F7BD4B8CE64C879D803F9B79121AEC , 0x060B866D18984186B8B7F276CF8FEC7B , 0x0654D18E3F22412F9BDE150500A4245F , 0x065EB38C72B14452B10E90EB2BADC0B4 , 0x068F49E5474D42E799952E23890B90F3 , 0x06D5F40C1C4A4DEB91342F221F50161D , 0x06EA2BEE7B2B494DBCB79F402A9645D5 , 0x073AB22F248D4DFB826DD6537B7772A4 , 0x07944BB73DDD44A6B161BACF86FC4901 , 0x0817803E425248E7AAF7C92450D5BCC6 , 0x08221DD723084DDF982B962A6458EC37 , 0x08391AC7169049668B56BA15C6DA90E6 , 0x08457DFD0256463FB41C201BA5935890 , 0x085685CF627B491D8269547C96B2FA7B , 0x0862BCCBABA44A129F8DA21FED27F7BB , 0x08E99EA4931D43BB98E95F52A0149F6E , 0x08FBEDF6526241BC9E26FE90DD81496D , 0x0949936EB7E140B19B668581AAAD128F , 0x09774C77ED64480F9ABE95867B0F3948 , 0x09DC55EF311C49D8923435F093E77BEF , 0x09FFE7EC3E304FEEA87A6273C022E6F0 , 0x0A1B9522AF9B4BFF9D535B3350FC48D2 , 0x0A22D8AB2206487183578A575B0CC744 , 0x0A280C81D1234184AE8FC39231E5F721 , 0x0A5FDF2742F04D78A2913DB534266D03 , 0x0A673255B5B54CEBA83FE1AE455205D9 , 0x0A798B7716084A8B8C3ED5A380544187 , 0x0AA70F414FBD4544BCDDEC2C31A9489A , 0x0AD5BEEF851442DD943A853A5A1DD3CD , 0x0AD798E6C2A1417682C1714AF0F98DCC , 0x0BDC60075D2C42DC80D21C1ABD0673B4 , 0x0C1744064352412CBD893EB3D927CF9A , 0x0C18DFECA6E846F4B7586E5B48E1EFF3 , 0x0C4E0ADE44624E9387025E366239C0A5 , 0x0C886F4A606A4487999C12F68C7EB07A , 0x0C95783733D3439C8BBDD773382976B1 , 0x0CFF334E027D48A381EA83E65BBE92BC , 0x0D2B872DEDCC4A40BC9F1077F24DFCC2 , 0x0D96688CFECB40D5844BCA7EC61F4C8F , 0x0D97C5E5B4E34A3490A607914E8215BC , 0x0E7843EC44964C4ABB7A149AFF6AE2B7 , 0x0EEF7EDDC57A4333BBE08C3FB8B59EC9 , 0x0F138CF259E848EBB210D9704605EF5A , 0x1024FC93B0984A7895216ED4AF449BB5 , 0x103494C52546405DAD18E65EC316EAF7 , 0x10718C6218894ECA9E7830F52D209482 , 0x10C5262E62A04F2DBCE924A6CA426A0E , 0x112B694D67C9482E851EADB27BEBB737 , 0x116EF02A2B7D4D6284C1A44BD26A73BA , 0x119110F084FA4A2FA782197704121B36 , 0x11EB3629A7B7490C8825E2C45BD645FA , 0x12BB8FEADED9482EB4EFEA2CE9126E29 , 0x12DE256094D8491382DB47CB876C16EF , 0x12E92776FD054EE9AB55FCA24A21C002 , 0x1319CA299ADD4C399D558D73A79B1505 , 0x13301F2EE49F4EBFB4586F45961DD22B , 0x1366C9B381D145F7B1050C87585DEA5E , 0x138E6D0985044915B8FFAF58F400D664 , 0x13B8A6C5A6F74D34B9DF10A69C01B62F , 0x14048F011AEE466882774BC15F1FBC6D , 0x141116FCD8AE4A3FB1DE4503CA5E0F86 , 0x1432CE667DD74CE1B7EB95F75FF2129D , 0x144707C8494C478A8056A04F5274F34B , 0x14A471DFAD7A4519910064EC64C04896 , 0x14A73D5663BB43D3821621A379B80F66 , 0x156EF1DBA295451E92B51F204CFB72CE , 0x157B0C38A348439881796524015C890C , 0x15B06E7AFE334167B66BF268253AAC47 , 0x15C8AC007CF14F56B22CE50AE07AB6AE , 0x15DFC133DB634228AE155703FE7E1490 , 0x168832DD0DA140138668E44298E8B47D , 0x16A2F782D84F4B51B342319CB82307CB , 0x16BA7B9E4E0445B5BE6153C1F727C40B , 0x16FA110F651545A3B5D64F550298777A , 0x16FF470C4B6D475B83079258CC247740 , 0x170498F515BC4C54B5BF2EE77E484972 , 0x1743CFDA10B44B62982B118595B2AD26 , 0x1750F8B0740F463F895E5B94610FED72 , 0x1767EF4B74084E58B5D48B7368A9126E , 0x17BAF37B79C449B088E0E45838353A2E , 0x1826DE44ECDD453E947CCCF819DCD5C1 , 0x1860A6CC569D4FB2906071D8E1E7A443 , 0x189247D2B50E4A75A2FCF416A8B162A0 , 0x18A4E5E896CB41F38E7EAD8BC93A309A , 0x18CE7D13A8244DE4ADF8A12FB71B2980 , 0x192429A164594539AF9AE01EB86CB6DE , 0x198CA28F08C3492AA911DE8560EFE7A6 , 0x19C0E7DC83234E45BA2158C16C760158 , 0x1A23890CAB134875B828C832378EE473 , 0x1A58221CCFFB4EB080467DBFDD615578 , 0x1B1C0A88A5F44725AFE769AE10264A80 , 0x1B4CB5B5D6184165B7DCEB349C13382B , 0x1B77FD7DA0D14F0EB7445C2903147449 , 0x1BB5F62417C34220934129DD7B7BB539 , 0x1BC5AC72D78042A7A43BCBEAB9989BC8 , 0x1C8601CBA2F94432BABF1008092D8A3D , 0x1CEC537AD603426DBBFAB4DB23C169AD , 0x1D1FC4F66A1645CEAE0BD42A94EF5E04 , 0x1D7DAAB25A8B4CEFA4D9EE6EAF4836D5 , 0x1D9C4F300D6647BBB3F7CA3944A0C965 , 0x1E107D9CFAD84CB1AA21AB64DE031FE1 , 0x1E4990C4CFA748F5B3F063CDF9AC482E , 0x1E5A4495498049849A7800B90975BD2C , 0x1E69B642B7B94CFDB53E93D7282A7617 , 0x1E9C655B61264567AFFD67C684DF134F , 0x1EAC38632CA046ADB29F2EFECE2FFC79 , 0x1EB5FFAE56D74A5484FBA21EA1539CF7 , 0x1EC958DD1B744C9CB858BA7660242621 , 0x1F8824E7328E405D8D34E11232B79D64 , 0x1FAA4D05754843EB9843784B27ACB93A , 0x1FF70CBAD44A4D6BBC4E15C7BE3EBD4F , 0x2015F78EE7574440BE2FF98E853426E8 , 0x20517A60D7DD43F6866AB76889361D0C , 0x205343F4793047ADB29E3C8D632A7F84 , 0x206EB1C3762C4A2CA987E99F0C7607C3 , 0x20959155CBDD4311895DA013E2411C34 , 0x20B6199CFDF54F3E9C7B21C3BDB3B6DB , 0x20D926FFC472414EB5AB86C3C367023F , 0x20F197CEB19241CC85A5FF3BE802D337 , 0x216FC818E2BA4C61919CB07622401713 , 0x218BF2C938544D858C0F92FF460E0365 , 0x218E4C4D3223483CB6405DAEC7C92DC5 , 0x2192DD2CC589482EB8A89CA7F9C08BB9 , 0x21C220639D9B462A933265F74948F7E5 , 0x21E39E38DD6C4F6B8BB265D759C32398 , 0x2212A930392542E7AA6414B39D6F7467 , 0x2219C187605D491AA6671211CE694BBD , 0x223C2FB8C74D48AF8062860CEE57AC8C , 0x223D22547D124A98897D3F6ECDE84ACD , 0x228333A6239C469DA7AA312122F114F7 , 0x228AF76A04CD4710B1D54C91C19D0606 , 0x22AB0E3A4B4C4C84B96EB482787C2646 , 0x22E30144BB2B41658BE64AC5B61B477C , 0x22E639CC80AB4A77B5EA8701A54D92B6 , 0x22E9B2FD915048CEB8482E578A850FE3 , 0x22EC1CF49E1047E1B4775DAEF3B8190C , 0x23732DD877A445098BE0ABD5EE9519E9 , 0x23B3F42F53884946BD2AEE795A0454AE , 0x23C061770EFA43E1910B70591F07895B , 0x23E40FFF4EDD4214B98155571C81DFE1 , 0x23E97090B22A4E308B071144989745E8 , 0x23F2F787928D47CBBB9C365590EDDBF0 , 0x2410815DEB5843ADB797524E184067FD , 0x242F3E29017B48D7B2E1F7F4D5EE257F , 0x243423BE0E524E6FB62E726AC839019C , 0x24428662CD6840878881205E722C74D7 , 0x244450DEBF304356B1F1BE3901A8D1E0 , 0x24ABB2CAA42248539668BF5D6B2371F5 , 0x24D3E96F3A12442F86D27151836EEDB4 , 0x24F37DB484444A288EE2025BBA7E1F6C , 0x250108567E2342A493806810EE81BB6A , 0x252532AE21EB4B1BAAB0FDC8AB166531 , 0x255AD3160E634B49970D598E3C80C281 , 0x25605580A932477DB82088EB1BFBCBE9 , 0x2575114244B64F89A7196AD5F145F403 , 0x25C03E5608464BCF9FA48C5489C58638 , 0x25D6298763664D66AAEF6C4C5E449549 , 0x25DAE530FCDF4EDE9445FE3911170676 , 0x26A2B0610A324D09A65FFEBCF8B2A890 , 0x26D7E90446C74971A3C7EB548EE47CD5 , 0x270CA9E5A5284EDF958FFB0CF1D3D33F , 0x2734106074D942C3A4E9211A26FB7924 , 0x273503D8725F40FC97A6A5F16EE5244D , 0x273F30BC1201459FA920BE98E4829A55 , 0x274CCC2C37924354B9AF38F6474CE460 , 0x276AA041F75A4C56A0F6DB8A0B83057E , 0x27C4F50A512B4A24A3E29A82100BF90E , 0x27D900B1307F4828AEF55711585999AF , 0x2858057E2FE94B46BEA9CFC46CA58B98 , 0x2886E4681E4C49D9AB838B77BBEEC4BC , 0x289F6F8156EE478FB8EC3085077FCB51 , 0x28ADF3FF8E2B4F2C85ABDA2412E7356D , 0x28F3D42AE2E94A468B34F756D565FFCE , 0x2958B45BEAFF45CB97F3ECA63C22963F , 0x296344D9F9B148CEBD7FDB5B4AE80672 , 0x29943FADFD1F46F2BA243012A000AADE , 0x29AB1EA994AB4FAEA09635A83D8EA9B6 , 0x29BC91EEDFEC4E51962E4A1AB1D65C57 , 0x29BD5A6BA5574299AEC53CDE88150271 , 0x29DA0541EBAD448A8F85C225B6FE4359 , 0x2A19407F352B4387A59C64AFF6F2171E , 0x2A26A8A56A6E4523A65C137C1EFC681F , 0x2A425DABD6CC43B1B8144CE9105330C6 , 0x2A575A27957847B092BEF275E43F46B9 , 0x2A8075A9C25A41FD964A1F9AB4C554BC , 0x2AC70A20F1BE40FB8F304DA982859EB1 , 0x2AD0560069994B5CAC515C111FA5D8ED , 0x2B3BDB626D4A4C9D81D99B9A32575605 , 0x2B9E8F7C33F243D8ADBFF838BDB4CAFC , 0x2BA7E13873E148588238024ECCEAD22E , 0x2BFD278E87204807A890DA4A3E81DD90 , 0x2BFE9F8569714EA0B38FC3B0DFD9F913 , 0x2C38229BB776400E8EB6C3C306851200 , 0x2C6AD70160764E9883B8FB1F0C9B3E5E , 0x2CD9E5A582BB41289B5C560240FB54D6 , 0x2CEABDD07C4B4AEE8C372664007B42D0 , 0x2D262610B94441B5A322B2EEA27E6A4C , 0x2D2B368CFE424DD189127F20E4EB6209 , 0x2D30B237E3404B1480180E87A4C1A33E , 0x2D45BBF7664448E691BCA6426B1C6E60 , 0x2D6C61A62A11445089A977785A6EBE5A , 0x2D9E7EB1859A4B2FBCD1BB4810795912 , 0x2DC4A2F040F04DB8A2C7350625C65192 , 0x2E13DBAB75A44625941AC1E25E9F1CBD , 0x2E1827FF70124547A91234EA02CBE47B , 0x2E458F338D2845E7A6F1E22F9887D6A8 , 0x2E47FD6E67754451BE3EA5594BF55163 , 0x2EE09E319D5447A195DD8CA15F4BC9C7 , 0x2F39BDAB6E8145FDBF6FA02B0F7A3F16 , 0x2F659A2B42FC4D6A8148A5A270B95A3A , 0x300384FBA05F4066829E46411570A417 , 0x30099420A2614446B38CC091A272E61A , 0x30758B4E25F74594A8B0142D835EB350 , 0x307CA12BF52649D683C01AB6AD746905 , 0x30889333868841FE9209387A88513303 , 0x30E8E0BF98034F40A7F7EEF24FAAED02 , 0x30FDA5DB3BCC4B268D0A2BF3B05922BE , 0x31C8E3CF71BE414A916CB5F5DB7D7EB8 , 0x31FFA29607644FFDB679E0951B2C8648 , 0x3246F9E841664EBBA457FD24EC37D74E , 0x3277E1641814460C9E84D189A72BC0D5 , 0x329E298E3C454B759B42EABC84179A30 , 0x329EFEECFD1540A987DE24B888BF703F , 0x32F25B2A15394A939109AF54775724C4 , 0x32F5AAFDAED54D92B7054A73AD50E113 , 0x3307D2FB5D98430D8925D2E5582B955A , 0x33404BBDDDC640FA85D028B236B91E25 , 0x337502930E8D4EF7BD6E2C0D25A75437 , 0x3399A6A9A3B645C79DC3D30BF467C772 , 0x33E6E4C76ACB4975A06F76AD2138361F , 0x348C4E2E4EC24B81BBBC20804D3B45AD , 0x34D381490CC44E678DCC35E70AD537FA , 0x34DBB5F89F1743DCB3F7E5BEBEA6211A , 0x34DCDF516DF74C47A8788E475DA6C749 , 0x3549AF4E1134475E8A9B7E3CCF82F99F , 0x359A9B7923A5464C8AA59BC7E7BBC79D , 0x35B8903680AC4DB1940F466268D06F6A , 0x35F7AB780FEC43C7A247C25897A3B400 , 0x36839DB9C0FA4104A312E37CD2CFCDE0 , 0x36AC462CEEC54F17B6FFF2FC6A3BB125 , 0x36CB4E536CA2497388D34BF1A961FC1A , 0x36DEC35BB92F4FA6B243B65AFBCA8E84 , 0x36E0E40CEF594D96B9ACFA9D53D4A273 , 0x36F5771C765E46ABADE0AF1AD4C795DF , 0x375B79E1343E4EF18AFD3AEAB469FEF3 , 0x377BF0278F7A4D069EE7629151DE6108 , 0x389237806DE748EB922294F9E7EA9E90 , 0x392F4330055D46D283BC5106C7E9F1D0 , 0x394F45D0FE7047B18E10B6790EDA50BD , 0x3A5237104F1940E081E34679CE5DE711 , 0x3A546D950C704E9E9AD61699E15BA68A , 0x3A5E4F70FE584A948BEE21E16F1C0EB3 , 0x3A71F77AEA1A4181B4AC8BF0F79D0A77 , 0x3B26E0C79B294ACA9731973A44CB7795 , 0x3B3AEAC5927A4F0A8C8A3A0BE53B8370 , 0x3B6FE7F9E4FB47249D8E197D8C13F140 , 0x3B8E5954B9B4486E8749F0AF5BEEE7C6 , 0x3BC958776BAB469F943DE71E367A0665 , 0x3BD72D7F9C4F402FBADAB77A31165FD8 , 0x3C173B6D3D044058A53906617166CF57 , 0x3C2C6BC12A6A425A87A510459CE1ECF5 , 0x3C4B17F0F9E5411E8BD1A8D17B3262F0 , 0x3C68A4AC3A1649B9ACEEC69C98477C91 , 0x3C89FD2D0C154E23B282E5A0943894B7 , 0x3CACD004CF554A9DAABAE6660675A57B , 0x3CBA9CB9D3494D0A8D76BD0F704E77FE , 0x3CDBDE9E51D34BE09DC2A9D5AB4B7C57 , 0x3D602B0A6B5A4C76803D05FDF19B1798 , 0x3D6BB2AA951D482CA783BEB731B4AB2C , 0x3DA0B0DD7E9B454AB3E4D6A681007E78 , 0x3E370E667B2F4754A4990FE3B1D57D8A , 0x3E5AFB6F55D348D69C6C4B14AE24C2B8 , 0x3E67CCCFEAFD41DC8D5D9B1A8AA69399 , 0x3F8A23A344F84A58BD4F7CAE71F4AAAA , 0x3FF04EC884D644298C453922DCC438E0 , 0x400132C849EF4544A77FD0970C3BCBA5 , 0x407EBCB4674048D59CA239DF1978D2C6 , 0x40A813A7D0FB4050A9F11B421E41CAA1 , 0x40DF59D2781F4ACC88BF3444478377A7 , 0x40F5707DE12946F4AB3555074F5911C5 , 0x4117FE180EC64EB08034AF8BB3B50A79 , 0x411C329899F04535B1FCBAF625D7B66E , 0x41359AEA3BCA4C2795081E98011C6516 , 0x414A88F8B2254F5CAB2A49D5B6BFEC3B , 0x4159BCAE579F40C89C493F65F705970E , 0x4170782D49DA40678A09E7E105A3183D , 0x41750A82AB984CE2A663F3A3F03C5710 , 0x418DAA8BD44E4477ABF228F94CDBB45C , 0x419263AA092C40A5A72C03CD35AB5107 , 0x41E5013B67D64D3A92B7A275DA8AF441 , 0x4243A73B1A9648E6B00DD95D3A2A1C72 , 0x42727C57FF4B4C3E9D4A4FBFF1E40FBB , 0x427DE6A4AA484954BF943C44D40E3FE6 , 0x42B79FA66BF046E48E89D1833E979292 , 0x4306D9251F4E4700B4C92ED465CCEDD2 , 0x4316A85F35EF4BCCB4101DA2042F6165 , 0x4318940305E343C4ACC1398B0EAF8BFF , 0x4331D91D3C8D477DB04E8392FF1B71B1 , 0x4335686CAC4646FAB5E122AD9963B093 , 0x4335DE19EDFE4DA898AD35B4C3ADA262 , 0x435C520CE15843A7A2BB26BBBF0811E5 , 0x438F6D28299A4442BDEB91DDD9CEC881 , 0x43C405F005F84B5F84BEC0038BBA55CD , 0x43DAF7E79AD04452B337B2632CF8F472 , 0x43ECE38C934B4481B401BFC61F2C16FB , 0x43F2863898F347E287B01703DE500FFB , 0x44270BA673724480B16DE602B0C4C6D1 , 0x4459D8364B704B9DBE9D6FFF229B5F1C , 0x4479295B6B0A4FB18399A23C8F8BAE48 , 0x44AACD5CEA5D4712BC652A577E08A79E , 0x44C040B77D854606B11F453C83B6AAF4 , 0x45145E3045CC490B9D5D5728A72D0345 , 0x454F753AA001437CA99CEC7E8BAC5135 , 0x45960866EE434B73A00CACC3BCDD5C68 , 0x45A23269364147FA862687CCE34995AA , 0x45AF1DD1E93A4B2FBFA251F4D3A4C475 , 0x4602CEAAA8E14E6EAEEA0D2574D4A871 , 0x461C3D658FA3457A84C7FF1AE6C2A72D , 0x465D1F0F2E1A474194543CFE2F5B69CE , 0x468BB9FB35E54DF9A9514DFE54A54A57 , 0x46DE7085CE4A45A28296FF7309DAA523 , 0x46EBCCF4F1684360908DD10E0838EEAB , 0x4718FEA3D5764E969E2E78786F9EFA84 , 0x4747EC36E6D141EEBA7A58BFCCE42FD4 , 0x47DEAEED987D4C1096FE08680F7FDCDB , 0x484E55E2303742C5B01873D5F5D5275B , 0x484F6615EAE94CDD980CAB9D025B3F8D , 0x488E61F3FB0F4F5BB3E922598D928375 , 0x4937F0C1F93A4D22AC39AF71BFA2ED77 , 0x4A3005A00A524AD1BC6A3B30BF81A00E , 0x4A4D112A9CF54D0F9E9663F5F8E20E3D , 0x4A533B1969EA437EA9286838A690E722 , 0x4AB5B38D6039431EB6C2050C2400FE6C , 0x4AF2EE34BCA44A55A45DCF550180A789 , 0x4B0CBD62314543AFB2F9E859C5B6A242 , 0x4B12F1C619864550A5DF5B6630318343 , 0x4B3E748F29604E4DAACBA90EAC9526D3 , 0x4B960CBD8E8840DB91DC262862C19209 , 0x4BDB40C704D140269CD5104F08018989 , 0x4C224BC961DB44BE9E32627637264440 , 0x4C29C7598A424E36B37E6863426F7A45 , 0x4CF033F1AFA846208BA04BEADED9990F , 0x4D36517A48D443C58C2809288697AC62 , 0x4D45F631A9114B8EB0A0E2BF03DC760C , 0x4DB600BE63164A74B12E25C6A440821C , 0x4DBFEF55957C4B0480E6B9704C2B0A50 , 0x4DE945DF94FC4D50809040F7499F187F , 0x4E1CB5B26BB14444B6B1BB0C3E914DF5 , 0x4E43FE740B56465BB5D0E29BFD6E7A19 , 0x4E48F30156964CC88C867F87B03713C5 , 0x4EB8292676EC4C3AA11FD775490225C2 , 0x4F4BD89BE6A74FCD887A689C03E02CD2 , 0x4F51F8033A9749CFA30CFE46997D38B2 , 0x4F8BFF1B027243BB89A45746CC13721F , 0x4F9616CC8B6B41719AB4DCACC4FBD681 , 0x4FDA9BFE26184313A64E67F013D27C2F , 0x503573A50B9B4DAC87CDA071219BC1CE , 0x5053FC713FE14B9797CF672C3E719344 , 0x5098347CC45E41DDBF6C9D37E9AD0FFA , 0x50B85FD10E444240B4AE5FD71CA4ACDE , 0x50ECCFC69E92455095EFD10CF7238A0C , 0x5134205E28C14D24B34AA3CB2BDB069F , 0x5159D18CE46744199A2111FE8099CE2C , 0x51804B09A3C940C58B68FED31BC4B4A3 , 0x5193FFA5DE8648A1BCFBA1FA8A26C02B , 0x51A0CF4F1C1348179999E3F326886DE4 , 0x51D683EA62ED42A4B111524EF6857C4A , 0x52454DB2ADF942B2AC079A296F454A10 , 0x52F8B283FAE249EF89D0D48B58024463 , 0x53005687C04345DDAC37FA37B820D1FC , 0x5348971D6F3342A9AE06344F855BF426 , 0x5348C511717549F1891789929E721659 , 0x53EC818480974A6AA7AC2135C135E778 , 0x540879704F9F4560A1812E4EF9297631 , 0x54147692CBFB43419A6D11E26CAD44DC , 0x5445204B02D54229922BCBE2C891766B , 0x54529CB761C34D00812B5782018530EC , 0x547F2786EF0F41DCB9BACDCBB19CB473 , 0x54ED861E1D224CA292EE73A86EA5F09D , 0x55287CFFA2AA4E61A4277C997983EF15 , 0x5537CA917DD349869458F59E5AD0CAE1 , 0x554492B3197F41CCA73086132BBB13D4 , 0x5578A669A71B4797B7632958B3AA7B2C , 0x5593F934CD364C78AEBA91A42078F31C , 0x5599868E15F0459D9CFC637B9BD19DF8 , 0x559D4B8FCA3B4CD599019D0F2D386671 , 0x56185F67D90C43B29E976E7AC819BF50 , 0x561A30935EF140D2B9E7DC02D1A07DF8 , 0x5626A09D7DD64E27892455472996A58E , 0x5643901D8A8241748168CACE59E9CCC2 , 0x5685EDD54C284994A09025166DEFD453 , 0x5700E5A39AD3425C8306DBB1D6BE59C6 , 0x5745CC1EF2024672A1FF223C2827E71D , 0x5751B83F92D3402EA1399A68FB75AF08 , 0x57C86EEA7ED9418C9882B17E96C06966 , 0x57F59F7CA3494F4B8268447A3C8CFEAD , 0x58175CC55E3F4F078C4DE76043EBB6A2 , 0x58DEAB7D060F47F28DB38FB1112A3BF5 , 0x58F5CC37F7B84AAE8538BEFC26A7D2C8 , 0x59165B81288943329E95069322B8F698 , 0x5919ABCE4836461C983C47EB1705E823 , 0x59229C069E934DF6B1A51F52ECBC0335 , 0x596504AF1F52469C854F555647A83CD6 , 0x5971BA39CF47436AB18A8E1F3B36F9D9 , 0x59742B6C257B41CD8493B93826998288 , 0x59898FF2C3404878A0990F33CD7C60BF , 0x5997D91DC0784997BDEF68DFC5A08912 , 0x599CE5FEB01D4CDC8147DE16B9B550DD , 0x59CAA3674B61458AB2A6B04B7E83AF70 , 0x59E37E3B440342A4B807BB33D753CCC0 , 0x5AB7AECA88644E2E952902F601AF964D , 0x5ADC9C2E10E546909D0CEC57AE1B6923 , 0x5AFB9FB0E9E5467DADD8B1050F2A2BEB , 0x5B10B306B8054BB8B210B1CF1E294DDD , 0x5B2E75D2981E411FAEDACD38F0AA5056 , 0x5B8D2A04510B4018B149842002641A74 , 0x5BBAE6CE9A7940D5B8512BC75E0B855F , 0x5BBC78B8F1EA4A42AA35ED189A6B845B , 0x5C238D79E31548C4A24CAC2F8CDB1000 , 0x5C5B0E6B0C2E41549560B25B8D90CF3F , 0x5C64808E9D524713A263DF146E318BCC , 0x5CD42FB513264BD4AC90CB3C9E6F9E01 , 0x5D0EB28CEF3D4957BE3FB678B7809051 , 0x5D1C012431F346C3B336BC49162EC248 , 0x5D544886E310443082BDD0DEFE52BE2E , 0x5D82376EBBC4445D91D880E9E7E88F9B , 0x5DD5D52F070B496C9C5569B92F4183A3 , 0x5DE1EFAF5E164279921C7685C179434C , 0x5E548441967D4DD68DB010D87DF81486 , 0x5E749DCDD6D94540AEF4708AECF022C1 , 0x5E7BF68A73874EA6BDD137481779A4DF , 0x5F011C2102AF4D7584C357B88FF1BE76 , 0x5F1BC7DE15644580908950DC7090E996 , 0x5F7E71065DA0417B93F5D576B6EFF4AA , 0x5F9F898C030B49C296FF3103C161064D , 0x5FCBEBBB118042499ABEEC2CC4346EFD , 0x5FCF5B01D4D942609855E95E13CBD2D8 , 0x5FFB7D34AD5A4FEF8D6A3D6A4C0ED6C1 , 0x601EBD39866442929C4C465C1758575C , 0x60E6B1B07FED47C2A1F75420AD74748F , 0x612D3D7429D6424CB58CC9F1C2CD306D , 0x618A0DC60CB94DDEAB8379AC8DD865BA , 0x61E58869825B47C98FBC330834A0D77D , 0x61EAFB01EEC745498A7F579FC0A620FA , 0x621C78C502B74A80A2047860ED3D6156 , 0x62479E3ABBF94DEEB7F2DA9877BC9BBC , 0x629A68A6C24A44B9BCFA0861DA810372 , 0x62DE0B36A9F14213909209BAE8929E19 , 0x630C949AE0224BC7970BEAF77D84356A , 0x6327E940A40841B7AEDFDBC454A410BD , 0x633F00A29FB84821BCD5A93B407B6A42 , 0x63460C1734CC4360A54966A5A60E912C , 0x63A0266F47C14D6BA188CDC1705A98A7 , 0x63EC96D3010049878269F39574AD7EC9 , 0x64A124566FE24CECAEB6900AD77DC1C0 , 0x64D8CE56DE054F22883C674DA7E3BB47 , 0x655BAC9D9AD34D748B207A6193079D0E , 0x6592A43FB34C40538B606BFA9253E9C4 , 0x65A246E9B4234F79A378DDDEC45A32BF , 0x65C01AF4790F4F4EB2A4E2539A04A1D7 , 0x66030C97897F4FDCBCB6018023294A2F );
Copy
63
11.27 ms
SELECT `property_group_option` . `id` FROM `property_group_option` LEFT JOIN `property_group` `property_group_option.group` ON `property_group_option` . `property_group_id` = `property_group_option.group` . `id` WHERE ((`property_group_option.group` . `filterable` = ? )) AND (`property_group_option` . `id` IN (? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? )) ORDER BY `property_group_option` . `id` ASC LIMIT 500 OFFSET 500
Parameters :
[
true
b"\x00\x00 ÅÜ\x07 ºIÃ C…"Ç\f é "
b"\x00 THÔGðK8¬$;Ù\x18 L«€ "
b"\x00 [}yæ•I(½ÌsAl´Ë\x14 "
b"\x00 ÆÉyD°Hyÿ¨\x03 R\r mÓI "
b"\x00 ìCï¢I|┤53ÅÇÆÅè "
b"\x01 `½žäÕ@\x02 ‹\x1E s »«™Ø "
b"\x01 ¤ Ç01Ks«œ¤,瀧n "
b"\x01 ¿—\x05 4³A2ƒËû\x1E ¿\x02 Ф "
b"\x01 ÁBrÌÞAz„Š<\÷¨ý, "
b"\x01 µ\x15 =S╬Bz┐üL%(`ãB "
b"\x02 ˆ\x7F ŠZŠO4™®iV½\x1E ZÓ "
b"\x02 É_YÜÞE¾áQ3⬽PÊ "
b"\x03\e ¹DcpO2”òÈ\x1C $©«4 "
b"\x03 >n`\x02 @Cìšè\x16 8Ö@xÛ "
b"\x03 J.}yÿEkŸ•\x13 7¥ˆÐï "
b"\x03 KoqÆû@\x17 Éf\Ïâ9ëð "
b"\x03 VÄ¥îÇBƒ²,ÝϧÀb½ "
b"""
\x03 Û§\n
ê‘IÚ»&f;\x14 á\x18 Ð
"""
b"\x04\x12 Ét:VL9»IÝËŠ„BJ "
b"""
\x04 7‡%ÍÕLZŸ±zÿ\n
0¦°
"""
b"\x04 kú\x12 ‰`Cú‘AO9£}3È "
b"\x04 Ì^žiÔG事GvóSTð "
b"\x05 ;¼@AîH=–Àß>\x7F +bU "
b"\x05 âx╬\r rGúÅ÷_¶.├¾a "
b"\x06 ^│îr▒DR▒\x0E ÉÙ+¡└┤ "
b"\x06 Õô\f\x1C JMë‘4/"\x1F P\x16\x1D "
b"\x08\x17 €>BRHçª÷É$PÕ¼Æ "
b"\x08 "\x1D ×#\x08 Mߘ+–*dXì7 "
b"\x08 9\x1A Ã\x16 ÉIfïV║\x15 ã┌ɵ "
b"\x08 V…Ïb{I\x1D ‚iT|–²ú{ "
b"\x08 b╝╦½ñJ\x12 ƒìó\x1F Ý'¸╗ "
b"\x08 鞤“\x1D C»˜é_R \x14 Ÿn "
b"\x08 ¹Ý÷RbA╝×&■ɦüIm "
b"\t IônÀß@▒øfàü¬¡\x12 Å "
b"\t wLwídH\x0F 𾕆{\x0F 9H "
b"""
\n
\e ò"»øK ØS[3P³HÊ
"""
b"""
\n
"Ø«"\x06 HqƒWŠW[\f ÇD
"""
b"""
\n
_ß'BðMx¢‘=µ4&m\x03
"""
b"""
\n
g2UµµLë¨?á®ER\x05 Ù
"""
b"""
\n
y‹w\x16\x08 J‹Œ>Õ£€TA‡
"""
b"""
\n
§\x0F AO½ED¼Ýì,1©Hš
"""
b"""
\n
Îÿµ┬íAvé┴qJ¨ì╠
"""
b"\f\x17 D\x06 CRA,½‰>³Ù'Ïš "
b"\f\x18 ßì¦èFô·Xn[Háïó "
b"""
\f N\n
ÞDbN“‡\x02 ^6b9À¥
"""
b"\f •x73ÓCœ‹½×s8)v± "
b"\f 3N\x02 }HúüÛâµ[¥Æ╝ "
b"\r +‡-íÌJ@¼Ÿ\x10 wòMü "
b"\r ûhî■╦@ıäK╩~ã\x1F LÅ "
b"\x0F\x13 ŒòYèHë²\x10 ÙpF\x05 ïZ "
b"\x10 4”Å%F@]\x18 æ^Ã\x16 ê÷ "
b"\x10 Å&.b O-¼é$¦ÊBj\x0E "
b"\x11 +iMgÉH.…\x1E ²{ë·7 "
b"\x11 nð*+}Mb„Á¤KÒjsº "
b"\x11 ë6)§·I\f ˆ%âÄ[ÖEú "
b"\x12 é'vý\x05 Né«Uü¢J!À\x02 "
b"\x13\x19 ╩)ܦL9ØUìsºø\x15\x05 "
b"\x13 0\x1F .äŸN¿´XoE–\x1D Ò+ "
b"\x13 f╔│üÐE¸▒\x05\f çX]Û^ "
b"\x13 ¸¦Å¦÷M4¹ß\x10 ¦œ\x01 ¶/ "
b"\x14\x04 Å\x01\x1A ¯FhéwK┴_\x1F ╝m "
b"\x14 2╬f}ÎLßÀÙò¸_‗\x12 Ø "
b"\x14 G\x07 ÈILGŠ€V ORtóK "
b"\x14 ¤qßzE\x19 ‘\x00 dìdÀH– "
b"\x14 §=Vc»CÓ‚\x16 !£y¸\x0F f "
b"\x15 {\f 8úHCÿüye$\x01 \ë\f "
b"\x15 °nzþ3Ag¶kòh%:¬G "
b"\x16 ˆ2Ý\r ¡@\x13 †häB˜è´} "
b"\x16 º{žN\x04 Eµ¾aSÁ÷'Ä\v "
b"\x16 ÿG\f KmG[ƒ\x07 ’XÌ$w@ "
b"\x17 Pø°t\x0F F?‰^[”a\x0F ír "
b"\x17 gïKt\x08 NXµÔ‹sh©\x12 n "
b"\x19 îóÅ\x08 ├I*®\x11 Ìà`´þª "
b"\x1A X"\x1C ÏûN°€F}¿ÝaUx "
b"\e LµµÖ\x18 Ae·Üë4œ\x13 8+ "
b"\e µö$\x17 ÃB “A)Ý{{µ9 "
b"\x1C †\x01 Ë¢ùD2º¿\x10\x08\t -Š= "
b"\x1D\x1F Äöj\x16 Eή\v Ô*”ï^\x04 "
b"\x1D œO0\r fG»³÷Ê9D Ée "
b"\x1E ZD•I€I„šx\x00 ¹\t u½, "
b"\x1E i¶B·¹Lýµ>“×(*v\x17 "
b"\x1E µÿ®V×JT„û¢\x1E ¡Sœ÷ "
b" \x15 ÷ŽçWD@¾/ùŽ…4&è "
b" Qz`×ÝCö†j·h‰6\x1D\f "
b" SC¶y0G¡▓×<ìc*\x7F ä "
b" •‘UËÝC\x11 ‰] \x13 âA\x1C 4 "
b" ¶\x19 œýõO>œ{!ý³¶Û "
b" Ù&ÿÄrANµ«†ÃÃg\x02 ? "
b" ñ—α’AÌ…¥ÿ;è\x02 Ó7 "
b"!ŽLM2#H<¶@]®ÇÉ-Å "
b"!ãž8ÝlOk‹²e×YÃ#˜ "
b""\x12 ®09%Bþ¬d\x14 │Øotg "
b""</¸ÇMH¯€b†\f îW¬Œ "
b""="T}\x12 J˜‰}?nÍèJÍ "
b""è¸j\x04 ═G\x10 ▒ıLæ┴Ø\x06\x06 "
b""«\x0E :KLL„¹n´‚x|&F "
b""ã\x01 D»+Ae‹æJŶ\e G| "
b""é²ý‘PHθH.WŠ…\x0F ã "
b""ì\x1C ôž\x10 Gá´w]®ó¸\x19\f "
b"#³ô/SˆIF½*îyZ\x04 T® "
b"#Àaw\x0E úCá‘\v pY\x1F\x07 ‰[ "
b"#ÚpÉ▓*N0ï\x07\x11 DÿùEÞ "
b"#‗¸çÆìG╦╗£6UÉÝ█ "
b"$\x10 ü]ÙXC¡ÀùRN\x18 @g² "
b"$4#¾\x0E RNo¶.rjÈ9\x01 œ "
b"$Båb═h@çêü ^r,tÎ "
b"$Óéo:\x12 D/†ÒqQƒní´ "
b"%\x01\x08 V~#BñôÇh\x10 ¯ü╗j "
b"%%2®!ëK\e ª°ýÈ«\x16 e1 "
b"%ZË\x16\x0E cKIù\r YÄ<Ç┬ü "
b"%`U€©2G}¸ ˆë\e ûËé "
b"%À>V\x08 FKÏŸ¤ŒT‰Å†8 "
b"%Ö)‡cfMfªïlL^D•I "
b"""
&ó░a\n
2M\t ª_■╝°▓¿É
"""
b"'\f ®ÕÑ(N▀òŹ\f ±ËË? "
b"'LÌ,7’CT¹¯8öGLä` "
b"'j A÷ZLV öÛŠ\v ƒ\x05 ~ "
b"(X\x05 ~/éKF¾©ÏÄl¥‹˜ "
b"(†äh\x1E LIÙ«ƒ‹w»îļ "
b"(óÿŽ+O,…«Ú$\x12 ç5m "
b"(óÔ*âéJF‹4÷VÕeÿÎ "
b")X´[êÿEË—óì¦<"–? "
b")”?ý\x1F Fòº$0\x12 \x00 ªÞ "
b")«\x1E ©”«O® –5¨=Ž©¶ "
b")½Zk¥WB™®Å<Þˆ\x15\x02 q "
b")┌\x05 AÙ¡DèÅà┬%Â■CY "
b"*\x19 @\x7F 5+C‡¥œd¯öò\x17\x1E "
b"*WZ'•xG°’¾òuä?F¹ "
b"+×Å|3‗CÏ¡┐°8¢┤╩³ "
b"+§á8sáHX‚8\x02 NÌêÒ. "
b",8"›·v@\x0E ޶ÃÃ\x06 …\x12\x00 "
b",j×\x01 `vN˜ƒ¸û\x1F\f ›>^ "
b",Ù奂»A(›\V\x02 @ûTÖ "
b"-&&\x10 ¹DAµ£"²î¢~jL "
b"-ž~±…šK/¼Ñ»H\x10 yY\x12 "
b"-Ä¢ð@ðM¸¢Ç5\x06 %ÆQ’ "
b".\x18 'ÿp\x12 EG©\x12 4ê\x02 Ëä{ "
b".EÅ3ì(Eþª±Ô/ÿçÍ¿ "
b".GýnguDQ¾>¥YKõQc "
b"0\x03 „û _@f‚žFA\x15 p¤\x17 "
b"0u‹N%÷E”¨°\x14 -ƒ^³P "
b"0ˆ“3†ˆAþ’\t 8zˆQ3\x03 "
b"""
0²Ñ█;╠K&ì\n
+¾░Y"¥
"""
b"1ÈãÏq¾AJ‘lµõÛ}~¸ "
b"1ÿ¢–\x07 dOý¶yà•\e ,†H "
b"2FùèAfN»¤Wý$ì7×N "
b"2wád\x18\x14 F\f ž„щ§+ÀÕ "
b"2žþìý\x15 @©‡Þ$¸ˆ¿p? "
b"2õªý®ÕM’·\x05 JsPá\x13 "
b"3@K½ÝÆ@ú…Ð(²6¹\x1E % "
b"3u\x02 ô\x0E ìN¸¢n,\r %ºT7 "
b"3Öª®úÂEÃØ├Ë\v ¶gÃr "
b"""
4ËüI\f ─Ngì╠5þ\n
ı7·
"""
b"5I¯N\x11 4G^Š›~<Ï‚ùŸ "
b"5Üøy#ÑFLèÑøÃþ╗ÃØ "
b"5©É6ǼM▒ö\x0F Fbhðoj "
b"5÷«x\x0F ìCÇ¢GÂX—£´\x00 "
b"6âØ╣└·A\x04 ú\x12 Ò|ʤ═Ó "
b"6ÞÃ[¹/O¦²C¶ZûÊŽ„ "
b"6Óõ\f ´YMû╣¼·ØSÈós "
b"6õw\x1C v^F«à¯\x1A ÔÇ•ß "
b"7[yá4>NñŠý:ê´iþó "
b"8Æ7ÇmþHÙÆ"ö¨þÛ×É "
b"9/C0\x05 ]FÒƒ¼Q\x06 ÇéñÐ "
b";&àÇ›)JÊ—1—:DËw• "
b"""
;:êÅ’zO\n
ŒŠ:\v å;ƒp
"""
b";oþ¨õ¹G$ØÄ\x19 }î\x13 ±@ "
b";ÉXwk«FŸ”=ç\x1E 6z\x06 e "
b"<\x17 ;m=\x04 @X¥9\x06 aqfÏW "
b"<,kÁ*jBZ‡¥\x10 Eœáìõ "
b"<K\x17 ðùåA\x1E ‹Ñ¨Ñ{2bð "
b"<¼ð\x04 ¤UJج║µf\x06 uÑ{ "
b"<█Ì×QËKÓØ┬®ı½K|W "
b"""
=`+\n
kZLv€=\x05 ýñ›\x17 ˜
"""
b">g╠¤Û²A▄ì]ø\x1A èªôÖ "
b"@ßYÒx\x1F J̈¿4DGƒw§ "
b"""
A\x17 þ\x18\x0E ÆN°€4¯‹³µ\n
y
"""
b"A\x1C 2˜™ðE5±üºö%×¶n "
b"Apx-IÚ@gŠ\t çá\x05 £\x18 = "
b"A’cª\t ,@¥§,\x03 Í5«Q\x07 "
b"Aå\x01 ;gÖM:’·¢uÚŠôA "
b"B}椪HIT¿”<DÔ\x0E ?æ "
b"C\x06 Ù%\x1F NG\x00 ´É.ÔeÌíÒ "
b"C\x16 ¨_5ïKÌ´\x10\x1D ¢\x04 /ae "
b"C\x18 ”\x03\x05 ãCĬÁ9‹\x0E ¯‹ÿ "
b"C1┘\x1D <ìG}░NâÆ \e q▒ "
b"C5hl¬FFúµá"™c°“ "
b"C\R\f áXC§¢»&»¿\x08\x11 å "
b"CÅm()ÜDB¢Ùæ¦┘╬╚ü "
b"CýÒîôKDü┤\x01 ┐ã\x1F ,\x16 ¹ "
b"Cò†8˜óG⇰\x17\x03 ÞP\x0F û "
b"D'\v ¦srD€±mæ\x02 °ÄÆÑ "
b"""
Dy)[k\n
O▒âÖó<Åï«H
"""
b"DÀ@·}…F\x06 ±\x1F E<ƒ¶ªô "
b"E\x14 ^0E╠I\v Ø]W(º-\x03 E "
b"EOu: \x01 C|©œì~‹¬Q5 "
b"E¯\x1D Ñé:K/¿¢QôÓ¤Äu "
b"F\x02 Ϊ¨áNn®ê\r %tÔ¨q "
b"FÞp…ÎJE¢‚–ÿs\t Ú¥# "
b"FÙ╠¶±hC`ÉìÐ\x0E\x08 8¯½ "
b"G\x18 þ£ÕvN–ž.xxožú„ "
b"GGì6æÑAîºzX¿Ìä/Ô "
b"GÞ®í˜}L\x10 –þ\x08 h\x0F\x7F ÜÛ "
b"HOf\x15 ÛÚL¦ÿ\f ½Ø\x02 [?ì "
b"I7ðÁù:M"¬9¯q¿¢íw "
b"""
J0\x05 á\n
RJÐ╝j;0┐üá\x0E
"""
b"JÁ│ì`9C\x1E Â┬\x05\f $\x00 ■l "
b"K>tÅ)`NM¬╦®\x0E ¼ò&Ë "
b"L"KÉaÛD¾ž2bv7&D@ "
b"Lð3ñ¯¨F ‹ KêÞÙ™\x0F "
b"M6QzHÔCÅŒ(\t (†—¬b "
b"MEö1©\x11 Kް â¿\x03 Üv\f "
b"M¶\x00 ¾c\x16 Jt±.%Ƥ@‚\x1C "
b"N\x1C µ²k±DD¶±»\f >‘Mõ "
b"NHó\x01 V–LÈŒ†\x7F ‡°7\x13 Å "
b"OKØ›æ§O͈zhœ\x03 à,Ò "
b"OQø\x03 :—IÏ£\f þF™}8² "
b"OÚ›þ&\x18 C\x13 ¦Ngð\x13 Ò|/ "
b"PSüq?áK——Ïg,>q“D "
b"Pÿ4|─^A¦┐lØ7Ú¡\x0F · "
b"PìÏÆž’EP•ïÑ\f ÷#Š\f "
b"Q4 ^(ÁM$³J£Ë+Û\x06 Ÿ "
b"QYÑŒägD\x19 š!\x11 þ€™Î, "
b"Q€K\t £É@Å‹hþÓ\e Ä´£ "
b"Q ÏO\x1C\x13 H\x17 ™™ãó&ˆmä "
b"S\x00 V‡ÀCEݬ7ú7¸ Ñü "
b"SH—\x1D o3B©®\x06 4O…[ô& "
b"SHÅ\x11 quIñ‰\x17 ‰’žr\x16 Y "
b"T\x08 ypOƒE`íü.N¨)v1 "
b"T\x14 v’ËûCAšm\x11 âlDÜ "
b"TÝå\x1E\x1D "LóƯs¿nÑØ "
b"U“ù4Í6Lx®º‘¤ xó\x1C "
b"UÖåÄ\x15 EØ£³c{øÐذ "
b"VàÝıL(IöáÉ%\x16 m´ÈS "
b"W\x00 壚ÓB\ƒ\x06 Û±Ö¾YÆ "
b"WQ¸?’Ó@.¡9šhûu¯\x08 "
b"X\x17 \Å^?O\x07 ŒMç`Cë¶¢ "
b"XõÌ7÷¸J®…8¾ü&§ÒÈ "
b"Yt+l%{AÍ„“¹8&™‚ˆ "
b"YëÅ‗├@HxáÖ\x0F 3═|`┐ "
b"Y—Ù\x1D ÀxI—½ïhßÅ ‰\x12 "
b"YÊ£gKaEв¦°K~ƒ¯p "
b"Z·®ÊˆdN.•)\x02 ö\x01 ¯–M "
b"Z▄£.\x10 ÕFÉØ\f ýW«\e i# "
b"[\x10 ³\x06 ¸\x05 K¸²\x10 ±Ï\x1E )MÝ "
b"[.uÒ˜\x1E A\x1F ®ÚÍ8ðªPV "
b"[¼x¸ñêJBª5í\x18 šk„[ "
b"\#ìyÒ\x15 H─óL¼/î█\x10\x00 "
b"\È/Á\x13 &KȼÉ╦<×o×\x01 "
b"^TäAû}MÍì░\x10 Ï}°\x14 å "
b"^tØ═Í┘E@«¶pèý"┴ "
b"_Ëë»\x11 €BIš¾ì,Ä4ný "
b"_Ï[\x01 ÔÙB`˜Ué^\x13 ËÒØ "
b"_¹}4¡ZO´ìj=jL\x0E Í┴ "
b"`\x1E ½9†dB’œLF\\x17 XW\ "
b"`µ▒░\x7F ÝG┬í¸T ¡ttÅ "
b"a-=t)ÖBLµŒÉñÂÍ0m "
b"aè\r ã\f ╣M̽ây¼ìÏe║ "
b"aêû\x01 îÇEIŠ\x7F WŸÀ¦ ú "
b"b\x1C xÅ\x02 ·J€¢\x04 x`í=aV "
b"bGž:»ùMî·òÚ˜w¼›¼ "
b"c\f ”šà"KÇ—\v ê÷}„5j "
b"c?\x00 ¢Ÿ¸H!¼Õ©;@{jB "
b"c &oGÁMk¡ˆÍÁpZ˜§ "
b"dØÎVÞ\x05 O"ˆ<gM§ã»G "
b"e¢Fé´#Oy£xÝÞÄZ2¿ "
b"eÀ\x1A ôy\x0F ON²¤âSš\x04 ¡× "
b"f\t PÃwŸBN«Ò¼xîÚQú "
b"f#P\x16 àÚC‚§wý7ÔEØr "
b"f; ùÞ(E%¥3Dl¡ì·š "
b"g‰˜\x1E ÃÌC\x1E ¤bo*]}pb "
b"hp*¥…ÇI\x00 ½\x1A $\r O¹%2 "
b"hî\x16 ½¹yH0³LI ›t\x01\x06 "
b"i~úô°ŒN¯½Ó*\t\x08 °|ª "
b"j\x03 /àÅ\x16 Lº║|\x00 I\f ~'Ö "
b"j'ÅL▓\x13 FG»yXr_7éS "
b"jÓèëL+K`¡Šn“\x14 \r íü "
b"jß\x02 ¸þÞF>¦œ³†üà5ñ "
b"jà\x06 ÛÆEM2±ƒ–ª\x05 y—" "
b"kFe\x13 ¨|Ho–\x12 ®.\x11 jÜ "
b"k‚ÿ»ƒG\x1F –»KiÄ\x14 ×€ "
b"k†(¯º\x1C O–‹J\x01 Òcç0Ò "
b"kã:ÂGJFå¯qÓÂŰSä "
b"kþ\x06\x17\x18 xO±º¨ýׄ\x06 ˜^ "
b"l¥<Õ├9FªÅ\e ¬\x13 ƒ DF "
b"m\x1C ƒµòºMòžÿ¤hø3ÎÏ "
b"mwÌÆ\x07 ^O|¦Pñ¨\f }™ "
b"m‗RÂn=Aí║\x15\t ▄üK■6 "
b"n\x14 L¹ÍJHƒ›‹¤Új›\x04 â "
b"nÒgv\x0F ÜBЮÀ\x11 j\x0F BÅ´ "
b"oäà^]=A=¬—áq*~Þç "
b"p1\e ('+@<—<¥s*wÝ¢ "
b"qlÎt·╔K\x08 ØÌsþ\x1C ÃIÂ "
b"q‚¹W\v íBO‘\r ‡IÞ¢«? "
b"r‰!ÎÏÈCä‹=ïS\x15 òbê "
b"séQæ×├F·¼Ï¡lØ\x0E Vz "
b"sñP£^rA\x17 ¢Œ\x1C 픘Ð\x1F "
b"t?kãØáL\x03 ¾@C4\x08 RЪ "
b"t║B╚À┐H\x1A ü¼§┤2B¤% "
b"u R;_)GЈ¶N;O\x12 œ\x10 "
b"v·\x1E ?UˆI“šà?æ\x05 ´t$ "
b"vϰ\e –ED\f «u;umÏN– "
b"v×V€\x03 M3®Ìˆ–Ù´á% "
b"vál#h&F\f « 2\x0E ݃BU "
b"väá”JÒK׊Õa€ s÷€ "
b"""
x4\x13 ìå¼M╦Á\x1E Ú\n
;xCS
"""
b"xI¢+\e xHO║HÆ"©Mض "
b"x|•7»bDõ«ŸÒÀ\x08 Ë\r Ù "
b"xŸC@+Œ@Ÿ²î´2ŸJ · "
b"xÒýñÕèL–¦3jÏýûê\x1A "
b"xÓÖO”\H2Ÿ-cåšãìc "
b"x×\x05\x08 J\x0E G«‰Ÿò.\x15 ’<+ "
b"y-_#^«HV…Í*Ùv3\x0F F "
b"""
yj‰'²R@Ò§@\n
n<¡~«
"""
b"zMÚFøßNu¬¦Lø' \x05 N "
b"zŸHx«\x17 G9“!-Z\f à<· "
b"{†€4K:O\x7F ™Ú\x17 nŸ•\x11 ' "
b"|[\x11 °¼œFbŸY/í0\x16 ˆ "
b"|ÁæºGüK讋i#˜~ª "
b"~WYlôšF\v º\f Ðý”Ü×ä "
b"\x7F Mlå$RIáâïr┌Ńþ& "
b"\x7F gÈjJ³H\•ž$Ædö½ "
b"\x7F üâå(¤B2╝\x1A ║UíèÉà "
b"\x7F ¢+§ÝýC\x03 ƒØd]àl\x10 þ "
b"\x7F Ô6\x1E ÄYL;ù█ì¢9ó¸_ "
b"€\x15 U1^`F\x08 Ÿ+æ…îõ\x06 € "
b"€0\x08 o÷D†‘‡³Çín¦Ó "
b"Ç0û┼µ,D▓ìzÞ÷6Þ\v ß "
b"€Ev דLù¿bà\x12 'ÁoT "
b"€l\x12\x16 ïÓEþ¤XW\x08 £—…™ "
b"ƒSBLj²FïxØõØk\x0E Q "
b"ƒìß\x19\x15 ÃC/¹l7(ö?mŽ "
b"äy├ôÞ\x7F KuØ▄Ì\x18 c▓{§ "
b"„|ê‰>ÄA,¬¤ç!uâ-ñ "
b"„üZ`$\x1A C+žfЏk\Äë "
b"""
…Ëkâ¹øL¨™ý•Õ»¾\n
c
"""
b"…ýÄ\x1F 4HJ§’\cçhÈÃò "
b"†HøOÁóJЧ‚I\v ›\x07 tƒ "
b"†k¹%\x1A i@÷´R!%\x16\x13 9p "
b"†Á[5bBKƒ¾\x12 "%áïË "
b"çd\x1E ÂüÈA\x7F Á‗%Æ\x13\x0E ÛD "
b"‡†Û’\v 3H"®‰Á\x04 (Þd¸ "
b"ˆ \x03 —"~O»–\r •ÂË`\Æ "
b"ëo1hØ~Jß╣=6üTÀ ┼ "
b"Š*t\x02 ú:JcŒCƒ@%S\t Z "
b"бØ{Ž\x1E Iá—ñ\r È4^P— "
b"ï*■]─éDØÉ░:ðKîB "
b"ï┤æ?_▒Nn║Ë\x11 ØY▓g "
b"""
‹ËÎó\x08\v E!¤?ÔŪz\n
4
"""
b"‹ß!hü·Ou¾»)Hhå16 "
b"Ž\x01 ¶ì\x0E ¯J$‘0<,Ï.\x12\x13 "
b"Ž\x11 »UÕ\x16 Oä´¹Ö¹Šür· "
b"Ž0d\x1C 7·CI‚Xn˜\x08 S%‹ "
b"ÄFô\x08 █rL─ì▓õ!M╣±═ "
b"""
ÄF¢e6ÓHج³!dgk\n
Ð
"""
b"ŽHƧf\x03 OÏ£\x1E õ\!Âll "
b"ŽÑ¼Â;šD‹Ÿ=ß23þ“C "
b"Äý\x18 Õ\t\x00 Eæï¾ê"¿Éò¾ "
b"Åi╠\x12 u8BNæ;!çw─áú "
b"Åntï╣\x13 FÉó┴`\r \f Ó1x "
b"Å¢$/á▓A\x1A ┐\x16 Ùµ╔|T╦ "
b"É\r µ┘W`K¡â´d\x00 qRWJ "
b"É\x12 p ╗\x14 A\x0F êMÄ'╝Í¢¿ "
b"É&▒I\x06 ?L\x1A ÿZü▓ó▒S. "
b"Éíæ\x1F `XKb¥r└╝ófÏ? "
b"‘Ž=“\f zL–‘\x12 Ô#æë† "
b"ÆT2;ì\f Ey¿£®\x13 Y7▓┐ "
b"’toÝ+ÅO\x02 ·ØÊMâ0\x14\x0E "
b"ÆÌìè³\x03 I█òå\x14 ┘ÉSþë "
b"“\x1A 5&0"CEš†Õ\x19 â\x1E ˜) "
b"ô»¡Õ\x03 ùK÷üPç\ ÿ© "
b"“Ï¢\x10 {\x18 O£˜’(bw\v % "
b"ö\x16 l╬ùºM┼«ƒn┼IüX9 "
b"”\!ø’\f B$§…yàDó´™ "
b"”wBÄ~SE\x08 ¤f{eÕ¡\x06 z "
b"”™\x0F q³CLõ¥{d3Ÿôê> "
b"”ßî\x02 m2Båº*x C²ßƒ "
b"•2Ž71ùNý€C3lÔâuê "
b"•>MZõ†E2¡fCTUflÆ "
b"•Ê©{ÍøLeƒˆ8\x0E Õ’,“ "
b"""
•ÙN\f \n
$A0—/ipñnï\x11
"""
b"–âÌë<KC£„=\x7F\x12 §\x00 õ\x00 "
b"—09wìåM‚ž§™Æ;*m[ "
b"˜ŒØËc\e L\x08 ºÕÏh¯¾Ãœ "
b"˜–\x03\x14 \r B¬Ž\x03 >•E‹7… "
b"˜¤iwËí@=Žê¬|Ý\x19\x01 I "
b"˜½ÿ’^ŸNÀ’ê‘î÷6¹ç "
b"™OmVjABUœ\x14 |\x7F ݯ\x15 ½ "
b"™cËeš¥Ct¥¨²{ï\x1F ¤\x16 "
b"™öp\x06\x13 TD\x19 ¯ _³u\x01 j§ "
b"šFO=6<L³‚\x16 ^œ»LSà "
b"ÜP¿J▒┘Dø¼ı®ý▒\x1F àØ "
b"šdEsf\x0F N<´[Î%ÿ2\x1E\x1D "
b"š¡M猻@ »CLáú“éH "
b"Üó6GæBIØ×\x00 ▓ÃÑ\v *┴ "
b"""
ø\x1F ·\x06 ╣AE§Å\n
p╝-¡\x11\x1F
"""
b"›¶þÙ‚–@ž¬\x14 W‘zAuu "
b"›½Û¾Ù½G†¨Wg2\x06 ŽIe "
b"›Â³Øª\x18 Hž‰î*øVž\x01 { "
b"œ\x07 ØŽ-£J<—M¥\x0F 7\x10 %! "
b"£(=ÉèM╔ëò\█└{ Ó "
b"œ©¦ÕŠPJŽ™Æ\x12 ¯«\x14 zÎ "
b"Ø~vM¸²Hóª¡Cº▀K!\x1F "
b"×>ù,SúK╩ÄìNâÖ/N└ "
b"×°ÙêÈOcü\x11\x15 8\x03 Ø╬¢ "
b"á4lÖPìF7ä£┴é╝LÉó "
b"áè\\x18 ÆØ@÷▒ë;%ÈÐ\x14 À "
b"¡lõ”çèA%¿UZõPÒò˜ "
b"¡r1?ÄÇOœ†\x00 šAþÃ}X "
b"¡š.\r óIMI´’ „xVnÙ "
b"í├òâ.#Ofñ\x02 HÅd°ð, "
b"¡Èƹ´ØFóе\x17 qxHJ\x19 "
b"ól\x00 úõäBßê÷rÓ5ÓÅ "
b"£¨N“¹ŒOÛ¨¯nOÛ\x11 ÷¬ "
b"ñóìÃ▄8IpÂÅ\x19 ¨&A\v b "
b"¤ºu9\x02 fF7”ÛáE\x00 &\x07 f "
b"Ñ+═UØ┘KùùÜ{âµ`HÉ "
b"¥•°›\x05 àIw»ÂÛÑÂ6«) "
b"ÑØ¦ÂMPCõ░\x1A u\v ¨Gó² "
b"¥Þü’âbMÏ©ü…Å[x "
b"¦RV}=PAÜ£Ñ;B‰îü\n "
b"¦t7(!•GÕšâ5\x19 ¶þwâ "
b"¦zà\x0F 5\x7F LR‹ø±z\x08 Þ*\x1E "
b"ºG÷\x01 ü┼AµüSP\r ~¾µÓ "
b"§“?[2óJ\x1C ŒÇ/iáŸàÁ "
b"§¨e’|^D\x7F œ\x7F Š¦Ù¾éÈ "
b"""
º¡jûeÛ@3¿Õß\x07 \n
ìÙD
"""
b"©N\x11 p7©N!…PøèäT÷- "
b"""
ªY|¥èÆ@ô¯C²\n
bL<\x04
"""
b"ªœ—\x15\x01 #I߀·¡.”U4÷ "
b"«T\x11 Çû‡C̲Ý\x18 ;GÇ\x15 û "
b"½┤àÔ:lBSî-þ²-ØC) "
b"""
¬\•1€\e J`±9€Ž\f ¿\n
\x1E
"""
b"¬]YTÅoCT‹üNAD° "
b"¬–¡ó\x1C WOÈšØ1j¶3À& "
b"¬›q\x19 †ŒLÿ† IÙp6ñn "
b"¬ýu†Ð(Hñ¬€\x1F Gvï¤\x14 "
b" ³^ì¬CÊŠÂðÌ>\x06 Ì> "
b"8Fà\f èGà€¬{Óé\x12 ݱ "
b"T{ÝúÎG¡¬ÂWê¨z‘Ú "
b"sZñëûB\x1E “ä\x08 °sĨš "
b"š\L\x13\x03 A½º4^ʉQ\x10  "
b"®Yµ»RŸM¸‰Ì`º¸(¥² "
b"«Ø├^"!GЫ|®¢\x01 )&t "
b"®Ï\x04 ±¡ÈJC…éæ\F\x15 d< "
b"¯\x12 ?¨cÊD\x01 ¬1Y¥š-ó¬ "
b"¯iSQ¥kIµ‚P)%TÅÿ² "
b"»iÉ\x0E ªÒCd╣é|Üð<─▄ "
b"»×\x19 q^\x03 NöÁ¢ØÂ©ú▒2 "
b"""
¯·ËÇæ\x02 C\n
¢U"\x17 "ý+\x10
"""
b"°\x16 –P íEÖ‡uFÐ߯Ќ "
b"±Ï£ÖñòCëˆq\!æhÍ\x1A "
b"²>~T?ÖJ\x10 —Dšn\x1C n>ƒ "
b"´\x06 0ÝW)A•žãMu<µp\x0F "
b"µ\x14 ]k=_AÓ°\x10 _/ô\x18 nŠ "
b"µÞåëàÑN\x16 ¢FÛSk\x06 žW "
b"µß©åBìOì¿=Í–‹ù›\x13 "
b"¶;\x16 -VUO¦Ÿôy$‚\x04 R "
b"Âij\x7F YXBÿ×█¦B\x18 Kؾ "
b"¶ÞÏ%€\x15 DH›¯þ\x10 ¶•\x00 ¿ "
b"À\t Ä·ËÿH ö¾\x07 ØóL\v N "
b"·£´Ó\·Lu¦ó”v9‘DÚ "
b"©T¢Ã®ýIÞ«pÉñ┐»KÌ "
b"©ì2uuþMQ▓CX═\x04 ╠%É "
b"""
¸ë\x17 ›\x10 TDoºvZ\x05 \n
\x08 fº
"""
b"¹\x05 4\x04 ñ…GÊ€5kÍZ\x05 n\r "
b"¹ˆ„ã „B.„ªY…\x15 uÇZ "
b"¹Ñ<I€+@¸½š4èÊ0uè "
b"ºA8Î\x12 öLã¦Mä:Q\r ©6 "
b"║Ïè─\x03 ÌCq┤ìµ\x04 ¼Qá\e "
b"╗ÖÅB-½D>½Â╩┴d\f µ┬ "
b"¼P8³\x1A šGf©øüÜ\e ¾Y» "
b"½Õ\x02\x08 ;\LýŽû\x11 VÖVº\x15 "
b"¾©»dª¡CJ»ÀíËbLe\x18 "
b"Áþ\x06 3å$FX®$^\x1A\x11 ¹ø‡ "
b"Â\x0F ”8fçM\x1E ®[?\x08 8º`½ "
b"┬>Ê\x16 i¿DØèe\x0F ╦┴Yÿ "
b"ÃÖéh¥Hù¤þÀ\x05 ³#’\t "
b"Ä~\x17 %‰P@à—ûaßið¯+ "
b"─¯Å▀ìE\x1D ▓O`ÓäÂı┤ "
b"┼)îÉ!■Aüîlë#+\x16 ƒ´ "
b"ŇT\x11 IJOô‹ç–A"¡\v U "
b"Åø„†\x1F ‘C\t §h7®\x1C û2Ë "
b"ÆTÛè\x06 @I¢£wïi«eÖ3 "
b"ÇD9\x17\x1D oHŠ•‘o*§ðok "
b"Ç©Æ9>HïœèçËá<æõ "
b"ÇãœÐ_\x14 M\x01 µ“\x00 iìJìß "
b"╚æ┌ÅÔfG\x1A ¿64╦[Cg$ "
b"Èþðnö\x14 Nøµ\t …Uƒp•Î "
b"ÊYœ\x12 ë\x17 L%‡×5ã\x11 .w„ "
b"Ê«5ºí\t CxˆcÙ¬‘j`Á "
b"ÊÔ ÛŠ§C¢¼H\x14\x05\x15 Ñ©– "
b"Ë\x1E +¾«B/—WÖ;ÔŠæ‡ "
b"╦cAÉÒfO~î²R▒ôtOÿ "
b"╦vú┴P©JBïØ'{ÆAd┬ "
b"ËÈ#)å\x14 MVŽ$\x00 [&\x16 © "
b"╦Óv`\x00 ïF=╝¢\x12 ì╝\n LÓ "
b"""
╠\n
WOØ·N¤▓▀#Mº\x16 ª«
"""
b"Ì|r[¦ÀFœ¬ÎÕ~|\x12 ¢ "
b"Ìïd€éŒN´„”¼SÆëL "
b"Í.Ë\e »\HH‚¶N•ø½Ü\ "
b"═┴tf}┤HØäx░¸`fªä "
b"Í÷ˆ\x1E áÉO€œ¢w\x18 #p5É "
b"Î\x1F -¼:\x7F B½´‰Mc´ì\x12 "
b"Î+.\x10 ÎÁ@b¨Éxûjõ#¡ "
b"ÎÍÉ‚\x17 ‚F}œN\x11 §Ù\f Z\e "
b"¤9qRå‗I8ÉöëmÏ█ï+ "
b"Ï\ ÆÎ‰M§²eî—l B¹ "
b"ÏkõbÈ>D]¥gnÉÏ)æo "
b"Ð-Û^h‚MÀ·dЧ0›YË "
b"ÐBV\e aöH´”q¶\x1E §Gyc "
b"в\x00 Ç`ÿ@º›7\x05\f -æ\x06 2 "
b"ÑMñwÌÀDïžìðÙ¼\x15 8§ "
b"УìrÖÚI█ƒKy\x19 ┬└┤ "
b"Ñæ3Lj>AÑ»\x02\x12 6‹bU§ "
b"Ò#w¹«¿O&²¸M׊ây• "
b"Ò¾ \”µKÖ¢<µ\x16\x16 cìú "
b"Ó\x1A\x12 ²ÿ$Gu´ctSDÒ•\r "
b"ËbR9\x13 µANÿ¢░\x1E\x1D É\x14\x17 "
b"Ó{Ë\x05 êÔLЇ·*QTÍ7k "
b"Ëë╬þJTD,Ñùü\f Þ@>J "
b"Ë».]ÞtLy»ÒpzüWýL "
b"˸xû\·F\x01 ìc┌$\x13 \r "- "
b"Èty©41F{ƒ\x11\x15 vÅ£\x12 ╩ "
b"Ôš\x7F æ\x17\v KŒ OA3¾ê×, "
b"Ô·\x0E £ùSF\t ´¹Ð?´aŽ\x03 "
b"ı-Ò%ì´Hëæ▄^\v ¥mW1 "
b"ÕwÉîÜÜHâ£\x07 ˆJº¢uä "
b"Õ„µ\x04 ×fBžø1,cy\x07 ) "
b"""
ÕËö\x12 §\n
G0€¬\x1E }Ø\f v\x01
"""
b"ıÞSÚú¶IØÿ¦\x1E °\x1E £p¢ "
b"ı¨¿M¶IıÅÍ░'\x1F ò1o "
b"Ö˜\x04 –éPK\x14 ¡_^4¸&=± "
b"×+.‚A\x02 L¹™à\x7F UH¿Ò\x07 "
b"ÎM ³î\x10 G─òA@\x1C ü]èª "
b"×ýšg\x18 {@\x0F ¹\t °Õ\x12 ßÕß "
b"Ø(9B°<Ia!›m\x11 ëWk "
b"Ø9‚JÑ/Gh•¾ZwG¬ê¸ "
b"ØX,\x15 8\x16 M\x15 ”Pö¯T4†€ "
b"""
Ø{ˆŽ†\n
Hu¢8âa\x11 Wû6
"""
b"ÏÆ▒¹}4E6üxGº\x1E ö▓\x10 "
b"Ï┴G▒AAI\x07 ü#âf\x03 ─lA "
b"ØýJú1M¯„s¨’¶Š©` "
b"""
ÙÜ€´\x08 ¬Kî–\n
\x1C Õ\x1A šî¾
"""
b"Úe\x14 bí9L¨šÇx\e »\x1D ’L "
b"ÚŒ˜m°ïF\x18 ŠêœSx\x02 `“ "
b"ÛObæ\x17 ULϤ—ù\x02 «¨6+ "
b"ÛZ®Bi\x11 @¨·Ò³6>ì\x10 £ "
b"█\µ\x1E\t óGbÉÙñnýn±┤ "
b"▄\x1A ü"t├Aàï\x10\x1A äk┐9■ "
b"Üp‹''ÉO…®rb\x08 ÜÝ\x02 . "
b"Üþ’Z ÑJˆ£ä·aÇr½Õ "
b"¦\x01 {\x04\x04 øL\x03 ╣ðüW=hLL "
b"ÝÃþ•¡±L‰‹_²1ÿ‘\e Ò "
b"ÝÏmGæƒ@¾½eV{Ìk“§ "
b"Ýñ\x18\x15 á\x17 K\x05 ½–þZ\x03 #‰æ "
b"Ì*ÈÊıÉIdÁ┤Ó´ú2\x16 ÷ "
b"""
ÞÄ\x02 P'\x02 Iò—\n
±)\x0E ¾‰Ë
"""
b"ÞæOµ\x15 CC9½%\x7F ¹Ó,Í? "
b"ßp¬žìíG#“Ïš¿ˆþ~\x08 "
b"߇ýÅ/ÖI\x07 ²°´›[È’\x11 "
b"Ó;\x1F\x01 rç@Ý®ÖGοÉ\x08 ú "
b"à;b+¡žK^ƒˆá\r ¹‚d/ "
b"Óæ`¥ÐeM´Ø5÷ A\v ╝┼ "
b"Ó¾û&ÔÉG娾÷\x17 LMÎü "
b"Ô\x06 g6én@▓ÅÜ╬,┐\e 5\x16 "
b"â\x16 ‚!´\x03 D~°Ð8å£Uøø "
b"Ô¥ª§z»O"Ø_æ®Yh "
b"ã\x07 ´©±\x03 Aé 6ŒêóCw "
b"õüYlBñA2êÖÈr/¬¥╩ "
b"äí¿M’÷Oî»’¶»Á\x06 °º "
b"å<7Ø\x14 PKù³¼z\x0F ÑÏj\x16 "
b"åÖ÷Õõ›M.‰\x18 °\x7F Ö\å\x19 "
b"æ€Ì~m@æ¥\x02 Üê<»#¤ "
b"æ¶ÎT_×A^¹‰>¡þ(z\x14 "
b"çh\x11 ‡RvI‡˜3\x18 «é™Õ¥ "
b"Þz\x0E a\x19 òJ═àÅ\e CÒ\x00 ┌▄ "
b"éyø10QJj”õxˆµ‹¶œ "
b"ÚÉn<NÄO¡£m┌┌ðqÝ╠ "
b"éþœ)#.J\x0E Ÿ‰–\x16 Û÷Ö× "
b"Û$3ñåFB\x19 Ť (µ>ËJ "
b"ëP™½æTE\„/3\x02 ~ñ'\x1A "
b"ë°M¼¿„LÞ´ÌfÎãÛí¨ "
b"ýº÷à×þMúؽB▒┐¨kL "
b"ìòÅj)wGã„éÌ\x0E ¾˜¡Õ "
b"í\x0E 0ý}\x05 Jº‰\x1D ¦ã”i\x19 À "
b"í‘Z~\x1F ¸O¬§Ï¶Þ\x0E é\x1C b "
b"î\x15 VØÞ\x7F Mö“¼½±&}^õ "
b"î\x18\x18 Ø\f :Fê´ïµÝâµÔ' "
b"î@éŸ\x12 ßD\x15 ‰O=½O ¥œ "
b"ï\x14 Šëœ*BQá1M÷I "
b"ï7\e ¦Ä\x04 CH \x19\x05 \ƒ –: "
b"ð/à\e |^IË©jµHSVå› "
b">]╩¨"@■ü¾ \t ┬┌¿l "
b"ñ\x0F €\x15 \x13 @ß¼\x03 m\r ¿ÖNR "
b"±À┐=ì╬I+ç▓┬}¢-io "
b"‗ëm┤<_@└«ÈÅó,gê½ "
b"òÞieÎýG´ºvö,P”.œ "
b"¾\x03 º\x17 3ÂAh£ØQN=s©¬ "
b"ói,õ\x1C\x11 Iw±ýïnUÚ©P "
b"ó’XÏm\x01 BQ€á\x1A Å\x1F ÇÞ\x07 "
b"ó”õ”“åLÕªX\x00 >^›ß\x17 "
b"óÑhÃWð@rª¤xl¤šq¿ "
b"ô£@mdZJ„¹;ÐàW¼(’ "
b"¶¼üÎR\x03 FÙå8\x00\t LZ³a "
b"""
ö\x11 }÷\n
èM-™àìn“ZÄÐ
"""
b"ö\x15 äñ6\x12 LÚ˜V\x15 ÆDFrK "
b"÷™B\e GŸGy˜¿O\x14 ¥\x13 ±b "
b"÷Á2ìù¢F0¹Öã‹8Y2ó "
b"°¢j\x16 ░7Mb¡\x03 ╣åqì¼ì "
b"¨\x00 ▒╚┤JD+┐hÀñ_æÉj "
b"¨+Â┼ıáJäû$│\ØûÚ^ "
b"ùü˜\x14 ’FBP°ºçpØ\N\x14 "
b"ú>²\x11 ‘C\t »óŸˆÒñ<… "
b"û͇ÉÛ\x13 O¶¿}fÇ\r …ÚØ "
b"üp\x1E\x04 Î#MÞ°fÝäÍ€œ\x04 "
b"üÙíæ\x01 'M4„)-žSáU\x15 "
b"ü஋f½GsŽÂ·ìqTª¥ "
b"ý“h²V€M|ƒ;Çûa\x05 §; "
b"þ\x19\x1C ’›\x0F K_¢”iÉó× T "
b"þBpƒhÙM‡«&[ÌW\x02 FÉ "
b"■¡▀Ø$yH^ôÅñ└░C\x0E ¼ "
b"þ³\x12 {¨&C\e •"‰Ún–—¾ "
b"ÿœª:\t\x08 L%±kP"£•ö‘ "
b"ÿÑó\x11 èûNì¤)+%¶ö·s "
b"ÿÛ7Üá·G˜³\\x0E ë¤ü0š "
b"ÿãZ\x14 :ŸO‚•ù°\x18 }~\x1A Ó "
b"\x00 \r \v sk¾I¿Ÿàkáïà×/ "
b"\x01 QT_\v .@]®í\x16 ¨\x17 /â "
b"\x01 V\x0F ¦²\x1D A\x1A ©)ı░³ÅyG "
b"\x01 g▀\x1C /%J<éçRìáJ=¤ "
b"\x01 ŠÜ[òÎFR æ¬zÜnd "
b"\x02 aïí_zL¬©Ã÷Þä&Œ "
b"\x02 Œ–£‚“G\x13 ½s\x07 ºÚJé\f "
b"\x02 ©Å┤0WLUëîV─A!ðN "
b"\x03 é|ÜÑ\x14 BxüS\x12 ípx0¬ "
b"\x03 Ç>\x03 жLs¥Ž‚¥·;*4 "
b"\x05 ,Ë\x00 SçB\f Îé7ãŒáú "
b"""
\x05 ‹\%âRLÒ¥>]\n
ŒñPâ
"""
b"\x05 تñJ2Lè×ÌýË┌\x16 _÷ "
b"\x05 £>/I¦O1Ÿe\v q Híô "
b"\x05 ┘ƒL▒äAÙ░ÚLØ░ù\\x18 "
b"\x05 ¸¢KîµLçØÇ?øy\x12\x1A ý "
b"\x06\v åm\x18 ÿAå©À‗v¤Åý{ "
b"\x06 TÑŽ?"A/›Þ\x15\x05\x00 ¤$_ "
b"\x06 ÅIÕGMBþÖò.#ë\v ɾ "
b"\x06 ê+î{+IM¼·Ÿ@*–EÕ "
b"\x07 :▓/$ìM¹émÍS{wrñ "
b"\x07 ”K·=ÝD¦±aºÏ†üI\x01 "
b"\x08 E}²\x02 VF?┤\x1C \e ÑôXÉ "
b"\t ÜUï1\x1C IØ’45ð“ç{ï "
b"\t ÿçì>0Oî¨zbsÀ"æð "
b"""
\n
(\f üÐ#Aä«Å├Æ1Õ¸!
"""
b"""
\n
Õ¾ï…\x14 BÝ”:…:Z\x1D ÓÍ
"""
b"\v g8Oµ\t NB³\x18 É)í‡pÅ "
b"\v Ü`\x07 ],BÜ€Ò\x1C\x1A ½\x06 s´ "
b"\f ˆoJ`jD‡™œ\x12 öŒ~°z "
b"\r ù┼Õ┤ÒJ4ɪ\x07 æNé\x15 ╝ "
b"\x0E xCìD–LJ»z\x14 šÿjâ· "
b"\x0E ï~ÝÅzC3»àŒ?¸µžÉ "
b"\x10 $ü“°˜Jx•!nÔ¯D›µ "
b"\x10 qŒb\x18 ‰NÊžx0õ- ”‚ "
b"\x11 ‘\x10 ð„úJ/§‚\x19 w\x04\x12\e 6 "
b"\x12 ╗ÅÛÌ┘H.┤´Û,Ú\x12 n) "
b"\x12 Þ%`”ØI\x13 ‚ÛGˇl\x16 ï "
b"\x13 Žm\t …\x04 I\x15 ¸ÿ¯Xô\x00 Öd "
b"\x14\x11\x16 üØ®J?±ÞE\x03 Ê^\x0F † "
b"\x15 nñÛ¢•E\x1E ’µ\x1F LûrÎ "
b"\x15 Ȭ\x00 |ñOV²,å\n àz¶® "
b"\x15 ▀┴3█cB(«\x15 W\x03 ■~\x14 É "
b"\x16 ¢÷‚ØOKQ³B1œ¸#\x07 Ë "
b"\x16 ú\x11\x0F e\x15 E£µÖOU\x02 ˜wz "
b"\x17\x04 ˜õ\x15 ¼LTµ¿.ç~HIr "
b"\x17 CÏÚ\x10 ´Kb˜+\x11 …•²& "
b"\x17 ºó{yÄI°ˆàäX85:. "
b"\x18 &ÞDìÝE>”|Ìø\x19 ÜÕÁ "
b"\x18 `ª╠VØO▓É`qÏßþñC "
b"\x18 ’GÒµ\x0E Ju¢üô\x16 ¨±b "
b"\x18 ¤åè–ËAóŽ~‹É:0š "
b"\x18 Î}\x13 ¨$Mäø¡/·\e )€ "
b"\x19 $)¡dYE9¯šà\x1E ¸l¶Þ "
b"\x19 Àç܃#NEº!XÁlv\x01 X "
b"\x1A #‰\f «\x13 Hu¸(È27Žäs "
b"""
\e\x1C \n
ˆ¥ôG%¯çi®\x10 &J€
"""
b"\e wý} ÑO\x0E ·D\)\x03\x14 tI "
b"\e Ŭr×€B§¤;Ë깘›È "
b"\x1C ìSzÖ\x03 Bm»ú´Û#Ái "
b"\x1D }ª²Z‹Lï¤Ùîn¯H6Õ "
b"\x1E\x10 }œúØL±ª!«dÞ\x03\x1F á "
b"\x1E IÉ─¤ºH§│c═¨¼H. "
b"\x1E œe[a&Eg¯ýgÆ„ß\x13 O "
b"\x1E ¬8c, F²Ÿ.þÎ/üy "
b"\x1E ÉXÝ\e tLœ¸Xºv`$&! "
b"\x1F ê$þ2Ä@]ì4ß\x12 2ÀØd "
b"\x1F ªM\x05 uHCë˜CxK'¬¹: "
b"\x1F ÷\f ºÔJMk¼N\x15 Ǿ>½O "
b" n±Ãv,J,©‡éŸ\f v\x07 à "
b"!oÈ\x18 âºLa‘œ°v"@\x17\x13 "
b"!‹òÉ8TM…Œ\x0F ’ÿF\x0E\x03 e "
b"!’Ý,ʼnH.¸¨œ§ùÀ‹¹ "
b"!┬ cØøF*ô2e¸IH¸Õ "
b""\x19 Á‡`]I\x1A ¦g\x12\x11 ÎiK½ "
b""â3ª#£Fغ¬1!"±\x14 ¸ "
b""æ9Ì€«Jwµê‡\x01 ¥M’¶ "
b"#s-Øw¤E\t ‹à«Õî•\x19 é "
b"#õ\x0F N¦B\x14 ╣üUW\x1C ü▀ß "
b"$/>)\x01 {Hײá÷ôÕî%\x7F "
b"$DPÞ¿0CV±ñ¾9\x01 ¨Ñà "
b"$«²Ê¤"HS–h¿]k#qõ "
b"$ó}´„DJ(Žâ\x02 [º~\x1F l "
b"%u\x11 BD¶O‰§\x19 jÕñEô\x03 "
b"%Úå0üßNÞ”Eþ9\x11\x17\x06 v "
b"&×é\x04 FÇIq£ÇëTŽä|Õ "
b"'4\x10 `tÙBäé!\x1A &ûy$ "
b"'5\x03 Ør_@ü—¦¥ñnå$M "
b"'?0¼\x12\x01 EŸ© ¾˜ä‚šU "
b"""
'Äõ\n
Q+J$£âš‚\x10\v ù\x0E
"""
b"'Ù\x00 ±0\x7F H(®õW\x11 XY™¯ "
b"(ƒoüV¯GÅ©ý0à\x07\x7F ╦Q "
b")cDÙù±Hν\x7F Û[Jè\x06 r "
b")¼‘îßìNQ–.J\x1A ±Ö\W "
b"*&¨¥jnE#¦\\x13 |\x1E üh\x1F "
b"*B]«ÖÌC±¸\x14 Lé\x10 S0Æ "
b"*€u©ÂZAý–J\x1F š´ÅT¼ "
b"""
*Ã\n
±¥@¹Å0M®éà×▒
"""
b"*ÐV\x00 i™K\¬Q\\x11\x1F ¥Øí "
b"+;█bmJLØü┘øÜ2WV\x05 "
b"+²'Äç H\x07 ¿É┌J>ü¦É "
b"+■ƒàiqNá│Å├░▀┘¨\x13 "
b",ê½Ð|KJîŒ7&d\x00 {BÐ "
b"-+6ŒþBMщ\x12\x7F äëb\t "
b"-0²7ã@K\x14 €\x18\x0E ‡¤Á£> "
b"-E»÷fDH摼¦Bk\x1C n` "
b"-la¦*\x11 DP‰©wxZn¾Z "
b".\x13 Û«u¤F%”\x1A Áâ^Ÿ\x1C ½ "
b".Ó×1ØTGíò¦îí_K╔à "
b"/9¢½nüE²┐oá+\x0F z?\x16 "
b"/eÜ+B³MjüHÑóp╣Z: "
b"0\t ” ¢aDF³ŒÀ‘¢ræ\x1A "
b"0|¡+õ&IÖƒÀ\x1A ¶ti\x05 "
b"0è࿘\x03 O@§÷îòOªí\x02 "
b"2ž)Ž<EKu›B꼄\x17 š0 "
b"2ò[*\x15 9J“‘\t ¯TwW$Ä "
b"3\x07 Òû]˜C\r ‰%ÒåX+•Z "
b"3æäÇjËIu ov!86\x1F "
b"4îN.N┬Kü╗╝ ÇM;E¡ "
b"4ÛµøŸ\x17 Cܳ÷å¾¾¦!\x1A "
b"4ÜßQm÷LG¨xŽG]¦ÇI "
b"6¬F,îÅO\x17 ¶ÿòüj;±% "
b"6ËNSl¢IsˆÓKñ©aü\x1A "
b"7{'ÅzM\x06 ×þbæQÌa\x08 "
b"9OEÐþpG±Ž\x10 ¶y\x0E ÚP½ "
b":R7\x10 O\x19 @ÓüÒFy╬]þ\x11 "
b":Tm•\f pNžšÖ\x16 ™á[¦Š "
b":^OpþXJ”‹î!áo\x1C\x0E ³ "
b"""
:q¸zÛ\x1A Aü┤¼ï¸Ø\n
w
"""
b";ŽYT¹´Hn‡Ið¯[îçÆ "
b";×-\x7F œO@/ºÚ·z1\x16 _Ø "
b"<h¤¬:\x16 I¹¬îÆœ˜G|‘ "
b"<‰ý-\f\x15 N#²‚å ”8”· "
b"""
<║£╣ËIM\n
ìv¢\x0F pNw■
"""
b"=k²ª•\x1D H,§ƒ¾·1´«, "
b"=á░¦~øEJ│õͪü\x00 ~x "
b">7\x0E f{/GT¤™\x0F ã±Õ}Š "
b">ZûoUÓHÖœlK\x14 ®$¸ "
b"?Š#£DøJX½O|®qôªª "
b"?ðNÈ„ÖD)ŒE9"ÜÄ8à "
b"@\x01 2ÈIïED§\x7F З\f ;Ë¥ "
b"@~¼´g@HÕœ¢9ß\x19 xÒÆ "
b"@¨\x13 §Ðû@P©ñ\e B\x1E AÊ¡ "
b"@õp}á)Fô«5U\x07 OY\x11 Å "
b"A5šê;ÊL'•\x08\x1E ˜\x01\x1C e\x16 "
b"AJˆø²%O\«*IÕ¶¿ì; "
b"AY¼®WŸ@ÈœI?e÷\x05 —\x0E "
b"""
Au\n
‚«˜Lâ¦có£ð<W\x10
"""
b"Aì¬ïÈNDw½‗(¨L█┤\ "
b"BC§;\x1A –Hæ°\r Ù]:*\x1C r "
b"Br|W KL>ØJO┐±õ\x0F ╗ "
b"B·Ÿ¦kðF䎉у>—’’ "
b"C5Þ\x19 íþM¨˜5´Ã¢b "
b"CÄ\x05 ð\x05 øK_„¾À\x03 ‹ºUÍ "
b"CÚ÷çšÐDR³7²c,øôr "
b"DYÏ6KpKØ¥Øo "ø_\x1C "
b"DªÍ\ê]G\x12 ¼e*W~\x08 §ž "
b"E–\x08 fîCKs \f ¬Ã¼Ý\h "
b"E¢2i6AGú†&‡ÌãI•ª "
b"F\x1C =eÅúEzäà \x1A µ┬º- "
b"F]\x1F\x0F .\x1A GA”T<þ/[iÎ "
b"F‹¹û5åMù©QMþT¥JW "
b"HNUâ07BŰ\x18 sÕõÕ'[ "
b"HÄa¾¹\x0F O[│Ú"YìÆâu "
b"JM\x11 *œõM\x0F ž–cõøâ\x0E = "
b"JS;\x19 iÛC~®(h8ªÉþ" "
b"Jòî4¼¤JU¤]ÏU\x01 €§‰ "
b"K\f ½b1EC¯²ùèYŶ¢B "
b"K\x12 ñÆ\x19 †EP¥ß[f01ƒC "
b"K–\f ½Žˆ@Û‘Ü&(bÁ’\t "
b"KÛ@Ç\x04 Ñ@&œÕ\x10 O\x08\x01 ‰‰ "
b"L)ÇYŠBN6³~hcBozE "
b"""
M¿ïU•|K\x04 €æ¹pL+\n
P
"""
b"MÚE▀ö³MPÇÉ@¸Iƒ\x18\x7F "
b"NCþt\v VF[µÐâ›ýnz\x19 "
b"N¸)&vìL:¡\x1F ×uI\x02 %Â "
b"O‹ÿ\e\x02 rC»‰¤WFÌ\x13 r\x1F "
b"Oû\x16 ╠ïkAqÜ┤▄¼─¹Íü "
b"P5s¥\v ›M¬‡Í q!›ÁÎ "
b"P¸_Ñ\x0E DB@´®_×\x1C ¤¬Þ "
b"Q“ÿ¥Þ†H¡¼û¡úŠ&À+ "
b"QÖƒêbíB¤±\x11 RNö…|J "
b"REM²ùB²¬\x07 š)oEJ\x10 "
b"Rø²ƒúâIï‰ÐÔ‹X\x02 Dc "
b"SýüäÇùJjº¼!5┴5þx "
b"TE K\x02 ÕB)’+ËâÈ‘vk "
b"TR£Àa├M\x00 ü+Wé\x01 à0ý "
b"T\x7F '†ï\x0F AܹºÍ˱œ´s "
b"U(|ÿ¢ªNa¤'|™yƒï\x15 "
b"U7Ê‘}ÓI†”XõžZÐÊá "
b"UD’³\x19\x7F A̧0†\x13 +»\x13 Ô "
b"Ux¦i§\e G—·c)X³ª{, "
b"UØKÅ╩;LıÖ\x01 Ø\x0F -8fq "
b"V\x18 _gÙ\f C²ž—nzÈ\x19 ¿P "
b"V\x1A 0“^ñ@Ò¹çÜ\x02 Ñ }ø "
b"V&áØ}ÍN'ë$UG)ûÑÄ "
b"VCÉ\x1D èéAtüh╩╬YÚ╠┬ "
b"WEÌ\x1E ò\x02 Fr¡ÿ"<('ç\x1D "
b"WÈnê~ÙAŒ˜‚±~–Àif "
b"WõŸ|£IOK‚hDz<Œþ "
b"X̽}\x06\x0F G‗ì│Å▒\x11 *;§ "
b"Y\x16 [ü(ëC2×ò\x06 ô"©÷ÿ "
b"Y\x19 «ÎH6F\x1C ˜<Gë\x17\x05 è# "
b"Y"œ\x06 ž“Mö±¥\x1F Rì¼\x03 5 "
b"Ye\x04 ¯\x1F RFœ…OUVG¨<Ö "
b"Yqº9ÏGCj±ŠŽ\x1F ;6ùÙ "
b"Y£Õ■░\x1D L▄üGÌ\x16 ╣ÁP¦ "
b"Yã~;D\x03 B¤¸\x07 »3×SÌÀ "
b"ZûŸ°éåF}ر\x05\x0F *+ë "
b"[ì*\x04 Q\v @\x18 ▒Iä \x02 d\x1A t "
b"[ºæÎšy@Õ¸Q+Ç^\v …_ "
b"\[\x0E k\f .ATò`▓[ìɤ? "
b"\dÇÄØRG\x13 óc▀\x14 n1ï╠ "
b"]\x0E ▓î´=IW¥?ÂxÀÇÉQ "
b"]\x1C\x01 $1óFó6¼I\x16 .ÂH "
b"]TH†ã\x10 D0‚½ÐÞþR¾. "
b"]é7n╗─D]æÏÇÚþÞÅø "
b"]ÕÕ/\x07\v IlœUi¹/Aƒ£ "
b"]áï¯^\x16 By’\x1C v…ÁyCL "
b"^{öŠs‡N¦½Ñ7H\x17 y¤ß "
b"_\x01\x1C !\x02 »Muä├W©Å±¥v "
b"_\e ÃÌ\x15 dEÇÉëP▄pÉÚû "
b"_~q\x06 ] A{“õÕv¶ïôª "
b"_Ÿ‰Œ\x03\v I–ÿ1\x03 Áa\x06 M "
b"aÕêié[G╔Å╝3\x08 4áÎ} "
b"bÜhª┬JD╣╝·\x08 a┌ü\x03 r "
b"bÌ\v 6®±B\x13 ÉÆ\t ║ÞÆ×\x19 "
b"c'é@¤\x08 A·®ßÛÄT¤\x10 ½ "
b"cF\f\x17 4ÌC`¥If¥¦\x0E ‘, "
b"cì–Ó\x01\x00 I‡‚ió•t~É "
b"""
dí$VoÔLý«ÂÉ\n
Î}┴└
"""
b"e[¼ØÜËMtï zaô\x07 Ø\x0E "
b"e’¤?³L@S‹`kú’SéÄ "
b"f\x03\f —‰\x7F Oܼ¶\x01 €#)J/ "
b"f\x10 Jç¢Ì@Á”ŒvG\x14 £œ¼ "
b"g{\x18 ´«ªE2˜Ë\x0F\x11 áÕÇf "
b"gÀì\x01 …VG\x06 «µáIÁ̸³ "
b"gÓ¶½b½F¿½ºx~œ\x05 }e "
b"h\v fÅQ·G8×\x04 ┐ª¨LÄa "
b"h\x13 €aó½A\x1C ¾ï‰6Ñ\r IÔ "
b"h\x19 kà[ÇKkŒ'¦|;£z "
b"h”ññÒñOù§Au¹MÉ\x0E ¶ "
b"iMÙNk<N#³˜Ã%3\x18 1\v "
b"ižŠÖ/\x12 C]¨ßfX‰µ>\x1C "
b"j!C–ÿ9FI‹"v\x06 n€ÐN "
b"j/xG£\x17 AÝßVt’\x17 a¶ "
b"j;Tá|öG\x13 ºŽx\x03 ¹À¾« "
b"je8ùš³I0•‚Ÿ\x7F ÀI®ò "
b"jÓ═Î/ÇI┌ëÎzØM´\x05 Ó "
b"k┌1µÄ±F■½¼2s¦\x10 êì "
b"kóMfÆKJ5–Y~’ð40Ù "
b"l%·G›\x18 N½”é\x7F\x1C ¼\x1E\f ? "
b"lˆ\x1A ‡\x11\x03 A¢ C¼š|\x02 ?ª "
b"mxø\x1F ?˜AW¦äØ\x06 r¿\x13 ´ "
b"m£A͇úIΕ.ì¥êQZç "
b"n2R{‰\x12 N*½ÞZ‰?½rÚ "
b"ni©¸DYFpŒì ߆ShØ "
b"nmœ0ZZBO¾{Ø„àP³z "
b"n}\x0E ‘c\x13 JS›Ð\x11 ê©\x02 \\x01 "
b"n®Ë\t ™š@\r ¬X±\x19 3go "
b"n¯=!Æ\x10 F—”[o\x00 ›\e\x13\x1A "
b"oˆa@íoK2…ÓÔƒÿvW’ "
b"pe÷+>NF]¦SØn\x05 Î\x17 é "
b"p¢\-ýäD† “„G#\x12 µ± "
b"pÞ¦kemJKÉ{\x0F ÃJ¯u= "
b"pðx,Ù‡@%Œcˆ\x0E aíÎ: "
b"q\x1C Sò\x03 &I┴ü|6Që´*█ "
b"qâ\x04 XÄwCà‡ïCOx:œÛ "
b"s\x0F ZP'\x17 G|┤Ê6¬░ÅR\x00 "
b"sI┬J?}H{üìHî%9XÎ "
b"s[\v R\x05 ¬O\f µ!BÙ¶Q,² "
b"si4ÚYûF×ù|░êLìÇ╠ "
b"sÝHލaDGŸc9L7*–› "
b"tI\x18 ZS+Fº³™|>Ûíú´ "
b"t®’\x06 ÝgHH’‹@Á’_ƶ "
b"u'\x01 åÎwJì»\x7F f§V—à "
b"uÕoO\x7F fLš·¨Kù/ÒL\x11 "
b"vØÅþ░èMÉÂñðgÒ¼\x18 » "
b"v¶µ‹–®@\x01 Ÿ.Lއz’? "
b"w8╣Ï\x05 ┤Aúûì[\x04 iÙæ¦ "
b"xo°.\r \x19 C\x01 ”€¥[ó\x08\x19 1 "
b"x„ÆÔØøM1 ÔR\x1F &áT~ "
b"xÅ\x0E p-;B<«\x0E GlQgÐV "
b"xéTМÖJî¢årgA¦š\x1C "
b"xõO\x16 š>LáŸV99êú«¹ "
b"y\x0E ƒ#Í\x1E AH’ÕAÆm\x17\x07 – "
b"y5ü═ñ\x11 D\t ëAÅh`ÄXv "
b"y˜zwi¨FL¼\x1E\x06 &d]¡µ "
b"yÙsŸã¼H\x7F ¨\x01 †—3#,N "
b"yù*\x07 \x1D J\x15 ©¬6Qæ\x02 4ž "
b"zcsÊì[F òëßP¹9²░ "
b"{\x0E ŸzÔúC_»ªßX\x1C P\x18 H "
b"{uwH\x18 %Kš¾EÆcœKî› "
b"|mõwï5MI³ôÆ\x11 ,ä…7 "
b"|¼\\x00 H\x02 H┴üù\e ±║E└; "
b"}5\x02 +·ÉEykªœèBŒ’ "
b"}S\x10 bM║N ¥ÅvÙ─*½\x1A "
b"}° ›´\t KÎ’'7FAq¥– "
b"~\x05 ©ŠÓQB2šÙðÿ0]ƒ• "
b"~så\x12 Q\x13 E/–òÎèÿ%>‹ "
b"~àŸ>†uMV“\x10 ˆuî\x1C [ "
b"\x7F U!ÆvLL^¸\x05 ²Ij¸ƒ( "
b"€\x1F þò—øD¨PßÓÿ<ô´ "
b"€8(¤\x02 ªF\x17 ˆÎ¹ñ\x16 á%± "
b"Ç@\x13 <«\x04 M>×ϱÙì\f\x1F c "
b"€j\x17 ‘€îEÞ¤xH\x19\x1E ù2D "
b"üf`\x15\x19 ;G$Ø┌(Çü▒9$ "
b"ü~Í\x06 ÒÓM║äZP:8Þ╩à "
b"‚0RKˆ"I\x1E ¬—]9»V~w "
b"ƒp]Ì\x0E ^Bd€-•pÀ™[× "
b"„\x10 Ë\x1D\x13 ßD\x06 °“¦/-ö¤Ÿ "
b"ädº:▄\x1E LeÉ\x10 ┤│Ó╔79 "
b"äü9µÉ<Lpâ"7\x1F sØ|° "
b"„Õh\x1F\x05 ;M\x11 °BŸµNk0# "
b"„à¡E ÅO\x08 ¿\x18\x13 0ß½™Ê "
b"àR▄1¨▓NñûЪ¥¬Ìì× "
b"…aÐb£‡N6¥øÁõýè\x06 û "
b"‡VŠ+3¡CtŸó8É\x15 az( "
b"‡bº:\t +O\x18 ©,,“B°¬Ÿ "
b"‡²ðg±gDe³™PXíÍ[ "
b"ˆ$.lS-Gœ—æy~ÍWùA "
b"ˆœc§ù[MÚ˜³Ð¡\x04 Ù¶¿ "
b"ê×>v¤{N¸üݧzL▓\x01 ¬ "
b"ˆÇÿ¡MÂIfŠúF/¼Ö4Å "
b"êÊ\x1E <Þ0AfØ÷\f Ò¾|╝¶ "
b"‰k©j¬iKVšƒ¿Y\x12 ‡©# "
b"‰ŒÜ©®CMb¨$\x1D š¤¹û% "
b"èeÉ┌ÌÑH,ø9\x11\x17 £äí┘ "
b"ï[ Áp└A*ÁìÇ»ò«ƒ\x05 "
b"ïÅJ%ÒnE¥ü\x02 \ú5mf° "
b"ïôcÓéÞN╝▒Åål\x18 j8Ä "
b"Œ~\x19\f "vDÝÈŽø%”B9 "
b"ì:!ôà¼KTØe à¾lk\x0F "
b"ìé\x7F Ã╣ÏCV╝\x02 ç>ñä\x15 F "
b"ì©\x03 \t ñ@█éª╚»Aûèñ "
b"Äv\e a0E\x1A Å;§býEQ§ "
b"Å£D╔®»H:Ñ\x1F\x07 ®ø‗\x0F d "
b"Åð└\x0F ■\e B\x14 ╝=aØ´pà/ "
b"Å▄H╗U(C°Üh×?ΫA┼ "
b"ÉÏþiÍ─@<ê\x11 ö╦G"ný "
b"É█ÄW.ÛNúû!TW■¢É╩ "
b"’\x19 A\x01 Q¸Dl·Sè]ÅmB> "
b"’j¯³\x07 \Ll£6=ª\x1D Âjd "
b"ÆÂ├Æ\t ┐LIì%\r \x17 Xð\x18 ) "
b"ôfí\x1A ╝ÍG╩ÄÉ▒`\x05 ╬Â■ "
b"”¨@\x13 §ÊBfˆ^ŠgÀ¶®t "
b"•>\x02 H{åJ0–B2A\x18 ¬å\t "
b"—O$&[hI5£¦Ê7º+\x01 × "
b"—XÖ=Ç£N’ƒ¸ü°•\x19 k% "
b"ùZ_\x7F Ú\x1A M╔©Âgê╬ÉÂ\v "
b"—dyÐÛSE…‡J0€ÙòH³ "
b"—fPRžñKNžÒ\x06 ¨\x19 >íE "
b"—›†YžÉ@0‘ìá9ÐØ\x07 È "
b"—æ0y<ÅDë²½gn²z!è "
b"˜W2‡NEH1¹\v ✙ûÎè "
b"˜šóÓÏVD¯œ\f |ï„ëE "
b"˜Ý\x1E à±$G%‘˜3Õ¡\x10 ÙX "
b"™\x08 E€¯wE˜½·•ˆ\x18 )BE "
b"™R–\x00 ¹ÿHdzYé˜\x18 «M¯ "
b"™Ö¡fšªGé¨gÉ\x12 ¬ïo4 "
b"™ä\t •\v \Mú¨ ¼çde#V "
b"™üIï²óE°»bÙ?\x1F c\x02 — "
b"Ü\e %ìÓÿCàûÓÈQ╝\v\e ─ "
b"ÜS1)ü7C└ûìî\e ª\x1D\e ^ "
b"šðÍ\x11 ÒkK,œõizš„\x1F w "
b"ø\x05 °ÄÛ╣H¶üäËZï§à¯ "
b"ø\x15 ²«_┬F\x18 ëk{ß`\x06 Å┌ "
b"""
›c~·³¶E\n
¬»Ç÷L0Ì\x1A
"""
b"ø▒/cÅFJ\x10 ¼m,e\r \x15 $¯ "
b"£12╚¶\x19 N*ò±ü*(╔&~ "
b"""
œÊƱ\x19 ÅNU£\n
5YyžìM
"""
b"£÷\x02 cõ&C▒Å\x1F eÊnßþ\x12 "
b"Ø/¤¾¨BN\ñê=æ÷_˰ "
b"ž„ç·ó,IÔ‘G1\x1C K\x1D Ü\x0E "
b"žº‰%‹.N\x0F ¼\x02 Ó7§{ð| "
b"ƒM_SÀIN▓ûÅP°ÿ▀¼µ "
b"Ÿ\x02 W|\x14 KJ¼ÒÔa\dVa "
b" \x18 :+ˆÒL\x10 ‰h>)žðå "
b" 4šÅ`M‡†¦\x00 Èÿr{{ "
b" IŠ|\x05\x14 I\x1D ¦lMÁu\x05 ;· "
b" _eξˆM¹ ¨Ñ½ÉœeŠ "
b" ¶B|÷îD÷¹\x1A ƒ©ÿÙ˜\x7F "
b"""
ØÐ\x16 E3EM·\n
ÝKæ/¶I
"""
b"""
¡f\n
$ó‚F—©\x0F ¥ˆï\t Ú\x14
"""
b"óeýÊʳO¢êúiìü¥<õ "
b"£aµö\x06 ÎFz‹Ruž\e 9Aì "
b"£†oý@\D\x03 ·'YS~ä$4 "
b"£š|’À½GÀ™pÓ˜œþÒÊ "
b"¤‰B¹\x1E\x07 BQ›Ê{\x16 fzùŽ "
b"¤øŠß\x12\x1F HÉŸÓë)à›\x1F ñ "
b"¥ìje>ëM›Ž9ýeXG÷y "
b"ª░p\x13 ÒìB╣Ö\t 3±╩»\x08 N "
b"º┬6¸YnFmª╩Á┘2'æì "
b"§Ê\r ©à E\x06 ¥¤C¬4Œ\9 "
b"¨\e Ê%4ÿG[¢Ï\x04 “s\x0E\x01 – "
b"¨<„r?lI;œ¿\x00 ƒ Ãú– "
b"¿É«Ê·A\x03 áÿ\x06 \Ë┴é "
b"¿Î\x12\x10 wD¢Ü┌ØE"~zµ "
b"©k4ÛH#N˜˜ËŽŠd^Y¬ "
b"®ó«▒█\x13 M/¿Ùɱ9ú©\x01 "
b"ªÙ\x14 ”õCC8¸î\f Ásv\r © "
b"¬■×█¾õBÉø3*ôy\x1D rÈ "
b"«'‡Œ…‰G¿›ó÷3y\x10 Q\r "
b"""
½¢x4¼\x1D HqÅs,¯Ùñ\n
\x14
"""
b"«Ëf–»aB¶©;=I†LËå "
b"¬\x1F\x11 Ó\x17 ÓH~–â06·&MÙ "
b"¬ºß®?\x0E Dð´KÀ\e hàˆ\x1A "
b"¬ýã^ö©O?™(è\x02 1\r CÖ "
b"ÿôÛ)pEc®1С\x1A –ô” "
b"®ExÞk\x7F E%¼²J ãóÜž "
b"®aÚ“Ñ,BïŽ>%+N¥[O "
b"®ä¦yz%B–ºÉãÿü"˜] "
b"¯\x11 ´|$FA\x03 ˆZ«[©À®| "
b"»ÉƒÏvÑHçô½V©▄~¾Z "
b"""
░\x14 æ?IîM\n
åO┬Ô±\x1D pÉ
"""
b"▒ÅqÓ{áL1àì2R+\x15 /┌ "
b"²5W\x11 ÜÜHتÚÇá\x03\t €\f "
b"²’{Ÿ,FAǾ\x1D ®ïlæ\x0F 6 "
b"²Ó‰¿\f g@³¯ÁE²ìòXk "
b"▓Í«C'\x00 Dõƒ¹.╠TõÅÜ "
b"³Œ!ìy‘A‡¶…Ø…\e áy@ "
b"³ºõÛñßD§»\x1C æÞ‚—§ž "
b"´3?\x7F\x15\x07 @\x11 žé¸Çp]I” "
b"´;‚ZdÆNq¨\x18\x05 ؃£åç "
b"´MtšàfOP§6\x01 ²œxQ< "
b"""
´†àÂGÐAí„Ìã\n
\f âˆ\x1F
"""
b"µb«\x08\t ¿Eâ›CzqÎ?Ù "
b"µ”\îßœJ\x1F ²/F<®E¶æ "
b"µùú²{½G”ŒËÕê»"< "
b"Â\x0E ¹Z[ÀI$▓Îì7u<I\x1D "
b"""
ÂŪ┴ú\n
OÝåÿf»|?ó\x11
"""
b"ÂØ Xà│LÌ│eÏÞd░X├ "
b"¸\x11 ´fÔÂLY¨6%þ0é%” "
b"¹b\x15 MïNEWº\t â\x1A\x1C éèÐ "
b"║ ─└ªEOÈѹ\v à#^É« "
b"╗\x01\x16 ¡╣åHØæ0ëC$¸Ñ "
b"»\r Ÿc:ÍK”¨Ì±\x19\x1A ﹃ "
b"»-É«ÀùJ\x1F ®q\x07 ¿a‚[\x1F "
b"╗ëì└}®A÷ƒDx┌\x0F ÀÚÝ "
b"½ sžáxN?µ1‘öž•Ý• "
b"¢Îmàç░OCØñ¨aö§Yñ "
b"¥4TênmB²¼ÉV,w\x0F ▄v "
b"┐ ]AõúIì®Ö¦"╬┘|Ù "
b"¿5ž\x13 CÈI.‡JjIY,#³ "
b"┴YÂØY¨Bõ▒F: î¤╦+ "
b"Á”90\f Ò@\x07 ˜Bÿ¨\x14 Cžr "
b"""
┬r░Ò\n
]Jõàõ░\x04 U>Ém
"""
b"Âx=8WŸC-•ò\x1C îR5ÕW "
b"ÂÒn;©ÈIk”OÁ—kM\x15 • "
b"Ã<öd£¤Mtª\x7F ¯9X\x1F ¸\x7F "
b"Ãäñ\x12 \r BF´£\x16 Ÿ¶ê›7T "
b"ž^?mÆH\x13 ¬K‹\x18 jH¥· "
b"Åȳ³¢ÃC\x1D ´Á|pWqu‚ "
b"ãMäp{ J ú\x1D 3 Ëüê0 "
b"Ã#hõ-ZBTü\x11 iP«BÞª "
b"Ç“çÉytN´¡ßŸ\x06 ”i9\x05 "
b"È~!§vuM{¢‘ؘ¼ñ+ß "
b"È’\f 9ÃìFºš¿*’\x00 ÖdÙ "
b"ÈòÂø'ÈGߟøQHÄ\x18 íæ "
b"ÉUÏ!=1J¼‡”…΂Ç_; "
b"╔£¿Ø«²C ┤±\x05\x02 Ùº─\ "
b"Ê1"ß \x0E K\x10 “IŸË¼˜i; "
b"ÊÝ`/d„L\x7F ¥ÆÆ†¼Ê“ "
b"ÊêkØ#mEˆ£óFÃ;ìµ\x05 "
b"Ëuø¸äqHs˜Ôø0Û‹îº "
b"╦æ┼bØé@d¢Tq ù¤Z¼ "
b"╦║ÿa\x08\x1F @ÉÁb¸Ã─Ø▒A "
b"ËÒN›B8Fѵ\x10 |\x04 ž\x08 -Ï "
b"Ëè$'l–Gâ½wSâ4W9È "
b"Ì2Nc¶€I®«.ݦ]Ì¥* "
b"Ìh¸w$ŒG\t ‚ŽìEþξ' "
b"╠\x7F\x03 m¶HYéØj@æ½■\e "
b"ÍACxÞgLÜ‹S˜gŒ\x16 žû "
b"ÍYª‘gýD3¶; ¢=¾"æ "
b"ÍŽ’}6ñNk‡¡È¸ªô}¢ "
b"ÎþžÛºÇI»“ÖE•d\x18 p+ "
b"ÏDNë WF—‚KŒù\x00 3ŸÊ "
b"Ï‚”ðïqH=›ä\x0F Ÿ!lÛý "
b"Ï»-Xa[F´–ë›þÜffå "
b"¤ÚÍü╬ÜB▓║Êý▓Õ\x08 ÐÑ "
b"¤§î\x04 skD\x0E òþqºØ¬\x0F ½ "
b"Ð+\x04 c:îN ®P\x17 E&”‘\x1C "
b"Ð>“¶å!A–œT,¨\x1C ¡¨~ "
b"Ðþ†ñI©Fߘo¸E \v W\x14 "
b"Ðpg·§ºMVº\x0F X'Å╬Ã, "
b"ÒB*:h;J&©,½¹J±ÍÄ "
b"Ó\t ¬”«ôI\x1E ¹\Ò>\x15 HœÇ "
b"Ó6óµùæIU±øDŽÄLc§ "
b"Ó@º-z8N\x16 ¦\x11 Î!ºPQò "
b"Ó¼ëM»NOšœi9×Ä¡G‰ "
b"Óæ|‚\x03\x1E D2¢7^D'ˆ›\x1C "
b"Ô)\v „ûÇGx¹}ê¼äRÇ\x13 "
b"""
ÈÅ\n
móëHÍå'╝\r Vê\e |
"""
b"ÈñØèeµK`ØÈéáÏsEº "
b"Ô« ÓòœI²—`t:•¿Å_ "
b"ıcÑ(è\x1F F¤ìÔéàW\x10 :£ "
b"ıÃÎ0█ÖN\x1F ì¤ÏË╝òÖ "
b"ÖXg—ß\x12 @Á®9C`o¿\x1C "
b"Ö“8ÝìôIn™úéj©X|â "
b"Ö¹Ÿã=XF¥´Yíå\x13 üî» "
b"×Ç[ƒ *DÇžaÆ<Žƒ¿\x06 "
b"Τ¦öÀÖGªÉ<4N=§Ôƒ "
b"Øgw7*CCvä˜ÞûÙ–G "
b"Øœü]ãdH3¡£Ñ.X®£š "
b"ÙŽ\x17 r\x1D RK@œm_Y\x02 ßÒ\x12 "
b"ÙÅGÇ®\t FDº&D—÷3\x06 ý "
b"ÚZ¿:\x19 lM ¾Ü &Œ€\x1F ¾ "
b"Û\x1E A\t\x00 ŸCz¸`ùü\x04 z¶€ "
b"Ûl\x04 ;ß'H\x1F §R üàÕ“I "
b"""
Û¾o\n
ÅÒMu¼k£8cj8m
"""
b"ÛèÜþ£\f AﬣÍxtmõN "
b"█ý³Ü¥nO}î\x1E ãi¾ØÌù "
b"Ü\x00 ±\x01\x1E PIŒ½Ç\x19 ï\x10 R)b "
b"ܬ4…\x06 ‡K7¾\t\x1C À\x1A ¹ýM "
b"▄┐âE\x1A ºFàØMõÀÛMæà "
b"¦\ÃCÏrH╠ÿüêqCì╗\t "
b"""
Þ\n
F`¯ÈAÚƒ½»kà€\x17\x12
"""
b"Þ\r ý‡Ö @š¨‘TÁͤÀ\r "
b"Þƒ'ºîZB¿£\x11 ”AΟ\x04\x00 "
b"Ó4âMµ■G╝ïÍÅB\x16 ¤ÙØ "
b"ߨ¸B┬\r DÞì`g\x11 ê\x17 ]\x01 "
b"â•Y@ëÇE\x13 ¡¯ö0ö\e ÞŠ "
b"Ô│Å/ÃúAã┐─V│└S©╬ "
b"ãe\x1D ±à\x06 @;ƒ\r A,? È@ "
b"""
ã˜Å…‡\n
Fx†ÀóX\x17 Ž>(
"""
b"ä\v 0—ó³N¤Œ×\x15 ~^2Ș "
b"äÙ':2¼Ke¿«qêÅš\x13 Ê "
b"æ*·˜ìwAe¬¢$\x03 ˜{\x05 "
b"悉aNíF¸œ‹¶^÷ï3L "
b"çpŠô‹ôK\¼Ó¨¢Oc6ö "
b"þÑ\x0E ¿Æ¥DeÉ¿CBÊ6û\x12 "
b"ç©¡\x14 üÏA5®O†Ñ—oʬ "
b"è\x17 Ëtq\x18 M\x01 ˜‹lyë\x15 úf "
b"è#\x06 Ç>ðC×–ç"û\f è¼Ò "
b"Þ╚¸\x01 ▓ÖGæè÷\x11 n½║\r É "
b"Þ╔u\x07 Ì\x10 Hqìñ\r Ú¢ë\x13 { "
b"Þ´1╠Äb@rØÍA'┴-^\x13 "
b"ÛÅälñcC@âõ[ª>▄78 "
b"êö!\x11 áGð‡æÚô4{Þæ "
b"Û├£»ünH\x16 ÅFãļþ░O "
b"ë\f\x07\x19 ÈFHá ƒ.ÀLPÿ0 "
b"ëJbPƒàJ˜ƒ&¡Ñ$;ñI "
b"붬½ˆ\x0E F)žmúÎVïJŽ "
b"ì&f¯\x07 :Gý›¨\r Í‚óSò "
b"ìø\x15\x13 èB;žL‘\x1D b즿 "
b"ÝÈÅèoÊF\x17 ñÐç┘\x13 ƒ´Ä "
b"îÑvádzBç¯áúAüÏ{² "
b"ï\t ÜÁñØLþ–²f)—TØù "
b"ïw\x1D jå_M Ž\x00 *‚Z¢Ìp "
b"´Ó9Ä çK\r âêBɳs§° "
b"ð\x10 è\x06 \r ÞJÓ¿¶ö¯Ñ—\x08 "
b"𢠤voK\x06 §Ô\t ‚\x1E ÷Ì\x18 "
b"▒:©_·ELÑÒåþìËäS "
b"ðç#}\\r Hhª&¨®ˆ6ð@ "
b"ðö¿±Ü<Mn™Ê¡Ý\v Ã*y "
b"ñQOË\x05 •@ù’G«“Õˆ+ "
b"òªÏ\x00\x7F\x05 Nÿ‡w±´háÖ_ "
b"ó$ç9Ç|Hâ–¯‘ø0>jO "
b"ó€ãyFòB\x00 ˆ¼Ì€¥Tñž "
b"¾─Çb▒\x12 J§Ø8■NI]£║ "
b"¾Ú╣×Ì\x1E B©É<|eã&\e\x12 "
b"ô\x18 O\x07 ›?D$½¦–\x17 ÇÀᘠ"
b"¶Yy¦-@$ìD¡Ëï\x19 !ý "
b"õùb;ï\x1E Mr£û×Iºsᜠ"
b"ö¶\x1E =MæM+¸\t z6žÏ™û "
b"÷\x01 Lj6^G)€îÝ}¬Õl– "
b"""
¸\n
w\x03 ÄÇB_®ÅF:\x1F ÈDs
"""
b"÷4Dï\x08\x1A Jó€Î\x05 Ôô\t T= "
b"÷Y^a¹¦@°‰D\x0E É”~\x0F š "
b"¸Ù\v æsFFZ│Ò╣\x01 írü\ "
b"øï½™|ŠDA¿Ó0@î™Ç\f "
b"°¸'╦┬ÚNF▓pì:(×Ü\ "
b"¨k─@N\e C÷Å\x10 Û\x1C vÀÓ─ "
b"úHŠ™ñºD΄Ô\x01 Š@\x0F äb "
b"úP™,!=G…€¬\x0E A/Lÿ™ "
b"·ò╔\x12 ├\x14 C·«^\x17 Ø\x00 V¬ð "
b"ú—mÉœêOà¨\x00 ßw]º:ò "
b"ú°@yÊ€Hÿ¼=§ÕVÿôR "
b"üI\x15 ¯oÚI’¥\x11\x16\x00 Ç7Ü5 "
b"üdq¿è\x04 KÚœ\x03\x07 ÉÁcûô "
b"üiXÕ†XEršbPFÇèKõ "
b"ü„\x05\x14 L×KÜ´¡ž>Cþs! "
b"ü›Hìâ5JŸ´³$Åk\x7F Má "
b"ü¡Sûµ`Kdª#&É>Ä÷‡ "
b"ü¶ãcù9Bã€o¥ã]ÚÂ{ "
b"ý\r œÖÿE†’U\x10 <\x00 Ú\f Ü "
b"þ\x00 #šPüFœ¼’ÎØ´<È» "
b"þ\x05\x1A cä´Lå“ÙuE÷&\x1D ä "
b"þ„šÕ‚ý@-¿Àž,-«\x7F \ "
b"ÿ\x06 ~\x17\f \r L\x1E ‰È®r\x13 Ëêð "
b"ÿϳË,»H‰¯Œ”ùêQ€¯ "
b" ÷|x\x1A ¼@3ÉuÂ▀sj°@ "
]
SELECT
`property_group_option` . `id`
FROM
`property_group_option`
LEFT JOIN `property_group` `property_group_option.group` ON `property_group_option` . `property_group_id` = `property_group_option.group` . `id`
WHERE
(
(
`property_group_option.group` . `filterable` = ?
)
)
AND (
`property_group_option` . `id` IN (
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
?
)
)
ORDER BY
`property_group_option` . `id` ASC
LIMIT
500
OFFSET
500
Copy
SELECT `property_group_option` . `id` FROM `property_group_option` LEFT JOIN `property_group` `property_group_option.group` ON `property_group_option` . `property_group_id` = `property_group_option.group` . `id` WHERE ((`property_group_option.group` . `filterable` = 1 )) AND (`property_group_option` . `id` IN (0x0000C5DC07BA49C3A020438522C70CE9 , 0x005448D447F04B38AC243BD9184CAB80 , 0x005B7D79E6954928BDCC73416CB4CB14 , 0x0092907944F8487998F903520D6DE049 , 0x00F08D438BBD497CB435338F80928F8A , 0x0160BD9EE4D540028B1E7320BBAB99D8 , 0x01A4A0C730314B73AB9CA42CE780A76E , 0x01BF970534B3413283CBFB1EBF02D0A4 , 0x01C14272CCDE417A848A3C5CF7A8FD2C , 0x01E6153D53CE427ABF814C252860C642 , 0x02887F8A5A8A4F3499AE6956BD1E5AD3 , 0x02905F599AE845F3A0513383AAAB50D2 , 0x031BB94463704F3294F2C81C24A9AB34 , 0x033E6E60024043EC9AE81638D64078DB , 0x034A2E7D79FF456B9F951337A588D0EF , 0x034B6F719296401790665CD8833989D0 , 0x0356C4A5EEC74283B22CDDCFA7C062BD , 0x03DBA70AEA9149DABB26663B14E118D0 , 0x0412C9743A564C39BB49DDCB8A84424A , 0x04378725CDD54C5A9FB17AFF0A30A6B0 , 0x046BFA12896043FA91414F39A37D33C8 , 0x04CC5E9E69D447E4BA8B4776F35354F0 , 0x053BBC4041EE483D96C0DF3E7F2B6255 , 0x058378CE0D7247A38FF65FF42EC3F361 , 0x065EB38C72B14452B10E90EB2BADC0B4 , 0x06D5F40C1C4A4DEB91342F221F50161D , 0x0817803E425248E7AAF7C92450D5BCC6 , 0x08221DD723084DDF982B962A6458EC37 , 0x08391AC7169049668B56BA15C6DA90E6 , 0x085685CF627B491D8269547C96B2FA7B , 0x0862BCCBABA44A129F8DA21FED27F7BB , 0x08E99EA4931D43BB98E95F52A0149F6E , 0x08FBEDF6526241BC9E26FE90DD81496D , 0x0949936EB7E140B19B668581AAAD128F , 0x09774C77ED64480F9ABE95867B0F3948 , 0x0A1B9522AF9B4BFF9D535B3350FC48D2 , 0x0A22D8AB2206487183578A575B0CC744 , 0x0A5FDF2742F04D78A2913DB534266D03 , 0x0A673255B5B54CEBA83FE1AE455205D9 , 0x0A798B7716084A8B8C3ED5A380544187 , 0x0AA70F414FBD4544BCDDEC2C31A9489A , 0x0AD798E6C2A1417682C1714AF0F98DCC , 0x0C1744064352412CBD893EB3D927CF9A , 0x0C18DFECA6E846F4B7586E5B48E1EFF3 , 0x0C4E0ADE44624E9387025E366239C0A5 , 0x0C95783733D3439C8BBDD773382976B1 , 0x0CFF334E027D48A381EA83E65BBE92BC , 0x0D2B872DEDCC4A40BC9F1077F24DFCC2 , 0x0D96688CFECB40D5844BCA7EC61F4C8F , 0x0F138CF259E848EBB210D9704605EF5A , 0x103494C52546405DAD18E65EC316EAF7 , 0x10C5262E62A04F2DBCE924A6CA426A0E , 0x112B694D67C9482E851EADB27BEBB737 , 0x116EF02A2B7D4D6284C1A44BD26A73BA , 0x11EB3629A7B7490C8825E2C45BD645FA , 0x12E92776FD054EE9AB55FCA24A21C002 , 0x1319CA299ADD4C399D558D73A79B1505 , 0x13301F2EE49F4EBFB4586F45961DD22B , 0x1366C9B381D145F7B1050C87585DEA5E , 0x13B8A6C5A6F74D34B9DF10A69C01B62F , 0x14048F011AEE466882774BC15F1FBC6D , 0x1432CE667DD74CE1B7EB95F75FF2129D , 0x144707C8494C478A8056A04F5274F34B , 0x14A471DFAD7A4519910064EC64C04896 , 0x14A73D5663BB43D3821621A379B80F66 , 0x157B0C38A348439881796524015C890C , 0x15B06E7AFE334167B66BF268253AAC47 , 0x168832DD0DA140138668E44298E8B47D , 0x16BA7B9E4E0445B5BE6153C1F727C40B , 0x16FF470C4B6D475B83079258CC247740 , 0x1750F8B0740F463F895E5B94610FED72 , 0x1767EF4B74084E58B5D48B7368A9126E , 0x198CA28F08C3492AA911DE8560EFE7A6 , 0x1A58221CCFFB4EB080467DBFDD615578 , 0x1B4CB5B5D6184165B7DCEB349C13382B , 0x1BB5F62417C34220934129DD7B7BB539 , 0x1C8601CBA2F94432BABF1008092D8A3D , 0x1D1FC4F66A1645CEAE0BD42A94EF5E04 , 0x1D9C4F300D6647BBB3F7CA3944A0C965 , 0x1E5A4495498049849A7800B90975BD2C , 0x1E69B642B7B94CFDB53E93D7282A7617 , 0x1EB5FFAE56D74A5484FBA21EA1539CF7 , 0x2015F78EE7574440BE2FF98E853426E8 , 0x20517A60D7DD43F6866AB76889361D0C , 0x205343F4793047ADB29E3C8D632A7F84 , 0x20959155CBDD4311895DA013E2411C34 , 0x20B6199CFDF54F3E9C7B21C3BDB3B6DB , 0x20D926FFC472414EB5AB86C3C367023F , 0x20F197CEB19241CC85A5FF3BE802D337 , 0x218E4C4D3223483CB6405DAEC7C92DC5 , 0x21E39E38DD6C4F6B8BB265D759C32398 , 0x2212A930392542E7AA6414B39D6F7467 , 0x223C2FB8C74D48AF8062860CEE57AC8C , 0x223D22547D124A98897D3F6ECDE84ACD , 0x228AF76A04CD4710B1D54C91C19D0606 , 0x22AB0E3A4B4C4C84B96EB482787C2646 , 0x22E30144BB2B41658BE64AC5B61B477C , 0x22E9B2FD915048CEB8482E578A850FE3 , 0x22EC1CF49E1047E1B4775DAEF3B8190C , 0x23B3F42F53884946BD2AEE795A0454AE , 0x23C061770EFA43E1910B70591F07895B , 0x23E97090B22A4E308B071144989745E8 , 0x23F2F787928D47CBBB9C365590EDDBF0 , 0x2410815DEB5843ADB797524E184067FD , 0x243423BE0E524E6FB62E726AC839019C , 0x24428662CD6840878881205E722C74D7 , 0x24D3E96F3A12442F86D27151836EEDB4 , 0x250108567E2342A493806810EE81BB6A , 0x252532AE21EB4B1BAAB0FDC8AB166531 , 0x255AD3160E634B49970D598E3C80C281 , 0x25605580A932477DB82088EB1BFBCBE9 , 0x25C03E5608464BCF9FA48C5489C58638 , 0x25D6298763664D66AAEF6C4C5E449549 , 0x26A2B0610A324D09A65FFEBCF8B2A890 , 0x270CA9E5A5284EDF958FFB0CF1D3D33F , 0x274CCC2C37924354B9AF38F6474CE460 , 0x276AA041F75A4C56A0F6DB8A0B83057E , 0x2858057E2FE94B46BEA9CFC46CA58B98 , 0x2886E4681E4C49D9AB838B77BBEEC4BC , 0x28ADF3FF8E2B4F2C85ABDA2412E7356D , 0x28F3D42AE2E94A468B34F756D565FFCE , 0x2958B45BEAFF45CB97F3ECA63C22963F , 0x29943FADFD1F46F2BA243012A000AADE , 0x29AB1EA994AB4FAEA09635A83D8EA9B6 , 0x29BD5A6BA5574299AEC53CDE88150271 , 0x29DA0541EBAD448A8F85C225B6FE4359 , 0x2A19407F352B4387A59C64AFF6F2171E , 0x2A575A27957847B092BEF275E43F46B9 , 0x2B9E8F7C33F243D8ADBFF838BDB4CAFC , 0x2BA7E13873E148588238024ECCEAD22E , 0x2C38229BB776400E8EB6C3C306851200 , 0x2C6AD70160764E9883B8FB1F0C9B3E5E , 0x2CD9E5A582BB41289B5C560240FB54D6 , 0x2D262610B94441B5A322B2EEA27E6A4C , 0x2D9E7EB1859A4B2FBCD1BB4810795912 , 0x2DC4A2F040F04DB8A2C7350625C65192 , 0x2E1827FF70124547A91234EA02CBE47B , 0x2E458F338D2845E7A6F1E22F9887D6A8 , 0x2E47FD6E67754451BE3EA5594BF55163 , 0x300384FBA05F4066829E46411570A417 , 0x30758B4E25F74594A8B0142D835EB350 , 0x30889333868841FE9209387A88513303 , 0x30FDA5DB3BCC4B268D0A2BF3B05922BE , 0x31C8E3CF71BE414A916CB5F5DB7D7EB8 , 0x31FFA29607644FFDB679E0951B2C8648 , 0x3246F9E841664EBBA457FD24EC37D74E , 0x3277E1641814460C9E84D189A72BC0D5 , 0x329EFEECFD1540A987DE24B888BF703F , 0x32F5AAFDAED54D92B7054A73AD50E113 , 0x33404BBDDDC640FA85D028B236B91E25 , 0x337502930E8D4EF7BD6E2C0D25A75437 , 0x3399A6A9A3B645C79DC3D30BF467C772 , 0x34D381490CC44E678DCC35E70AD537FA , 0x3549AF4E1134475E8A9B7E3CCF82F99F , 0x359A9B7923A5464C8AA59BC7E7BBC79D , 0x35B8903680AC4DB1940F466268D06F6A , 0x35F7AB780FEC43C7A247C25897A3B400 , 0x36839DB9C0FA4104A312E37CD2CFCDE0 , 0x36DEC35BB92F4FA6B243B65AFBCA8E84 , 0x36E0E40CEF594D96B9ACFA9D53D4A273 , 0x36F5771C765E46ABADE0AF1AD4C795DF , 0x375B79E1343E4EF18AFD3AEAB469FEF3 , 0x389237806DE748EB922294F9E7EA9E90 , 0x392F4330055D46D283BC5106C7E9F1D0 , 0x3B26E0C79B294ACA9731973A44CB7795 , 0x3B3AEAC5927A4F0A8C8A3A0BE53B8370 , 0x3B6FE7F9E4FB47249D8E197D8C13F140 , 0x3BC958776BAB469F943DE71E367A0665 , 0x3C173B6D3D044058A53906617166CF57 , 0x3C2C6BC12A6A425A87A510459CE1ECF5 , 0x3C4B17F0F9E5411E8BD1A8D17B3262F0 , 0x3CACD004CF554A9DAABAE6660675A57B , 0x3CDBDE9E51D34BE09DC2A9D5AB4B7C57 , 0x3D602B0A6B5A4C76803D05FDF19B1798 , 0x3E67CCCFEAFD41DC8D5D9B1A8AA69399 , 0x40DF59D2781F4ACC88BF3444478377A7 , 0x4117FE180EC64EB08034AF8BB3B50A79 , 0x411C329899F04535B1FCBAF625D7B66E , 0x4170782D49DA40678A09E7E105A3183D , 0x419263AA092C40A5A72C03CD35AB5107 , 0x41E5013B67D64D3A92B7A275DA8AF441 , 0x427DE6A4AA484954BF943C44D40E3FE6 , 0x4306D9251F4E4700B4C92ED465CCEDD2 , 0x4316A85F35EF4BCCB4101DA2042F6165 , 0x4318940305E343C4ACC1398B0EAF8BFF , 0x4331D91D3C8D477DB04E8392FF1B71B1 , 0x4335686CAC4646FAB5E122AD9963B093 , 0x435C520CE15843A7A2BB26BBBF0811E5 , 0x438F6D28299A4442BDEB91DDD9CEC881 , 0x43ECE38C934B4481B401BFC61F2C16FB , 0x43F2863898F347E287B01703DE500FFB , 0x44270BA673724480B16DE602B0C4C6D1 , 0x4479295B6B0A4FB18399A23C8F8BAE48 , 0x44C040B77D854606B11F453C83B6AAF4 , 0x45145E3045CC490B9D5D5728A72D0345 , 0x454F753AA001437CA99CEC7E8BAC5135 , 0x45AF1DD1E93A4B2FBFA251F4D3A4C475 , 0x4602CEAAA8E14E6EAEEA0D2574D4A871 , 0x46DE7085CE4A45A28296FF7309DAA523 , 0x46EBCCF4F1684360908DD10E0838EEAB , 0x4718FEA3D5764E969E2E78786F9EFA84 , 0x4747EC36E6D141EEBA7A58BFCCE42FD4 , 0x47DEAEED987D4C1096FE08680F7FDCDB , 0x484F6615EAE94CDD980CAB9D025B3F8D , 0x4937F0C1F93A4D22AC39AF71BFA2ED77 , 0x4A3005A00A524AD1BC6A3B30BF81A00E , 0x4AB5B38D6039431EB6C2050C2400FE6C , 0x4B3E748F29604E4DAACBA90EAC9526D3 , 0x4C224BC961DB44BE9E32627637264440 , 0x4CF033F1AFA846208BA04BEADED9990F , 0x4D36517A48D443C58C2809288697AC62 , 0x4D45F631A9114B8EB0A0E2BF03DC760C , 0x4DB600BE63164A74B12E25C6A440821C , 0x4E1CB5B26BB14444B6B1BB0C3E914DF5 , 0x4E48F30156964CC88C867F87B03713C5 , 0x4F4BD89BE6A74FCD887A689C03E02CD2 , 0x4F51F8033A9749CFA30CFE46997D38B2 , 0x4FDA9BFE26184313A64E67F013D27C2F , 0x5053FC713FE14B9797CF672C3E719344 , 0x5098347CC45E41DDBF6C9D37E9AD0FFA , 0x50ECCFC69E92455095EFD10CF7238A0C , 0x5134205E28C14D24B34AA3CB2BDB069F , 0x5159D18CE46744199A2111FE8099CE2C , 0x51804B09A3C940C58B68FED31BC4B4A3 , 0x51A0CF4F1C1348179999E3F326886DE4 , 0x53005687C04345DDAC37FA37B820D1FC , 0x5348971D6F3342A9AE06344F855BF426 , 0x5348C511717549F1891789929E721659 , 0x540879704F9F4560A1812E4EF9297631 , 0x54147692CBFB43419A6D11E26CAD44DC , 0x54ED861E1D224CA292EE73A86EA5F09D , 0x5593F934CD364C78AEBA91A42078F31C , 0x5599868E15F0459D9CFC637B9BD19DF8 , 0x5685EDD54C284994A09025166DEFD453 , 0x5700E5A39AD3425C8306DBB1D6BE59C6 , 0x5751B83F92D3402EA1399A68FB75AF08 , 0x58175CC55E3F4F078C4DE76043EBB6A2 , 0x58F5CC37F7B84AAE8538BEFC26A7D2C8 , 0x59742B6C257B41CD8493B93826998288 , 0x59898FF2C3404878A0990F33CD7C60BF , 0x5997D91DC0784997BDEF68DFC5A08912 , 0x59CAA3674B61458AB2A6B04B7E83AF70 , 0x5AB7AECA88644E2E952902F601AF964D , 0x5ADC9C2E10E546909D0CEC57AE1B6923 , 0x5B10B306B8054BB8B210B1CF1E294DDD , 0x5B2E75D2981E411FAEDACD38F0AA5056 , 0x5BBC78B8F1EA4A42AA35ED189A6B845B , 0x5C238D79E31548C4A24CAC2F8CDB1000 , 0x5CD42FB513264BD4AC90CB3C9E6F9E01 , 0x5E548441967D4DD68DB010D87DF81486 , 0x5E749DCDD6D94540AEF4708AECF022C1 , 0x5FCBEBBB118042499ABEEC2CC4346EFD , 0x5FCF5B01D4D942609855E95E13CBD2D8 , 0x5FFB7D34AD5A4FEF8D6A3D6A4C0ED6C1 , 0x601EBD39866442929C4C465C1758575C , 0x60E6B1B07FED47C2A1F75420AD74748F , 0x612D3D7429D6424CB58CC9F1C2CD306D , 0x618A0DC60CB94DDEAB8379AC8DD865BA , 0x61EAFB01EEC745498A7F579FC0A620FA , 0x621C78C502B74A80A2047860ED3D6156 , 0x62479E3ABBF94DEEB7F2DA9877BC9BBC , 0x630C949AE0224BC7970BEAF77D84356A , 0x633F00A29FB84821BCD5A93B407B6A42 , 0x63A0266F47C14D6BA188CDC1705A98A7 , 0x64D8CE56DE054F22883C674DA7E3BB47 , 0x65A246E9B4234F79A378DDDEC45A32BF , 0x65C01AF4790F4F4EB2A4E2539A04A1D7 , 0x660950C3779F424EABD2BC78EEDA51FA , 0x66235016E0DA4382A777FD37D445D872 , 0x663BA0F9DE284525A533446CA1ECB79A , 0x6789981EC3CC431EA4626F2A5D7D7062 , 0x68702AA585C74900BD1A240D4FB92532 , 0x68EE16BDB9794830B34C49A09B740106 , 0x697EFAF4B08C4EAFBDD32A0908B07CAA , 0x6A032F858F164CA7BA7C00490C7E2799 , 0x6A278F4CB2134647AF7958725F378253 , 0x6AD3E8EB4C2B4B60A18A6E93140DEDFC , 0x6ADF02B8FEDE463EA69CB386FCE035F1 , 0x6AE006DBC6454D32B18396AA05799722 , 0x6B466513A87C486F961220AE2E116ADC , 0x6B82FFBB83AD471F96BB4B69C414D780 , 0x6B8628AFBA1C4F968B4A01D263E730D2 , 0x6BE33AC2474A46E5AF71D3C2C5B053E4 , 0x6BFE061718784FB1BAA8FDD78406985E , 0x6CBE3CE5C33946A68F1BAA139F204446 , 0x6D1C83B5F2BA4DF29EFFA468F833CECF , 0x6D77CCC6075E4F7CA650F1A80C7D9920 , 0x6DF252B66E3D41A1BA1509DC814BFE36 , 0x6E144CB9CD4A48839B8BA4DA6A9B04E2 , 0x6EE367760F9A42D1A9B7116A0F428FEF , 0x6FE4E05E5D3D413DAC97E1712A7EDEE7 , 0x70311B28272B403C973CA5732A77DDA2 , 0x716CD774FAC94B089DDE73E71CC749B6 , 0x7182B9570BED424F910D8749DEA2AB3F , 0x728921CECFC843E48B3DEF5315F262EA , 0x738251919EC346FAACD8AD6C9D0E567A , 0x73F150A35E724117A28C1CED9498D01F , 0x743F6BE3D8E14C03BE4043340852D0AA , 0x74BA42C8B7BF481A81ACF5B43242CF25 , 0x7520523B5F2947D088B64E3B4F129C10 , 0x76B71E3F558849939AE03FE605B47424 , 0x76CFB01B9645440CAB753B756DCF4E96 , 0x76D756C280034D33AECC8896D9B4E125 , 0x76E16C236826460CAB20320EDD834255 , 0x76E4E1944AD24BD78AD561802073F780 , 0x7834138D86AC4DCBB51EE90A3B784353 , 0x7849BD2B1B78484FBA489222B84D9DF4 , 0x787C9537BB6244F5AB9FD2C008CB0DD9 , 0x789F43402B8C409FB2EEB4329F4A20B7 , 0x78D2FDF1D5E84C96A6336ACFFDFBEA1A , 0x78D3D64F945C48329F2D63E59AE3EC63 , 0x78D705084A0E47AB899FF22E15923C2B , 0x792D5F235EAB485685CD2AD976330F46 , 0x796A8927B25240D2A7400A6E3CA17EAB , 0x7A4DDA46F8DF4E75ACA64CF82720054E , 0x7A9F4878AB17473993212D5A0CE03CB7 , 0x7B8680344B3A4F7F99DA176E9F951127 , 0x7C5B11B0BC9C46629F592FED30162088 , 0x7CC1E6BA47FC4BE8AE8B6923AD987EAA , 0x7E57596CF49A460BBA0CD0FD94DCD7E4 , 0x7F4D6C86245249A0838B72DA8F9FE726 , 0x7F67C86A4AB3485CAD959E24C664F6BD , 0x7F81838628CF4232BC1ABA55A18A90C7 , 0x7FBD2BF5EDEC43039F9D645D856C10E7 , 0x7FE2361E8E594C3B97DB8DBD39A2F75F , 0x801555315E6046089F2BE685EEF50680 , 0x8030086FADF744869187B3C7ED6EA6D3 , 0x803096C5E62C44B28D7AE8F636E80BE1 , 0x804576A0D7934CF9BF62E01227C16F54 , 0x806C1216EFD345FEA4585708A3978599 , 0x8353424C6AB246EFAD78D8F5D86B0E51 , 0x83ECDF1915C3432FB96C3728F63F6D8E , 0x8479C393E87F4B759DDCDE1863B27BF5 , 0x847CEA893EC4412CACA4E72175E22DF1 , 0x84FC5A60241A432B9E668AB86B5CC4EB , 0x85CB6BE2B9F84CA899FD95D5BBBE0A63 , 0x85FDC41F34484AA7925C63E768C8C3F2 , 0x8648F84FC1F34A8AA782490B9B077483 , 0x866BB9251A6940F7B452212516133970 , 0x86C15B3562424B83BE122225E1EFCBAD , 0x87641EB681D4417FB5F22592130EEA44 , 0x8786DB920B334822AE89C10428DE64B8 , 0x88A00397227E4FBB960D95C2CB605CC6 , 0x896F31689D7E4AE1B93D368154B7FFC5 , 0x8A2A7402FA3A4A638C4383402553095A , 0x8AB1D87B8E1E49E197F10DC8345E5097 , 0x8B2AFE5DC482449D90B03AD04B8C42FF , 0x8BB4913F5FB14E6EBAD3119D59B267F0 , 0x8BCBCEF3080B4521A43FD4C5AA7A0A34 , 0x8BDF2168FCB74F75BEBB294868E53136 , 0x8E01B6EC0EAF4A2491303C2CCF2E1213 , 0x8E11BB55D5164FE4B4B9D6B98AFC72B7 , 0x8E30641C37B7434982586E980853258B , 0x8E469308DB724CC48DB2E4214DB9F1CD , 0x8E46BD6536E0489DAAFC2164676B0AD1 , 0x8E48C6A766034FCFA31EF55C21C26C6C , 0x8ED1BCC23B9A448B9F3DDF3233FE9343 , 0x8EEC18E5090045918BF38822A89095F3 , 0x8F69CC127538424E913B218777C4A0A3 , 0x8F6E748BB9134690A2C1600D0CE03178 , 0x8FBD242FA0B2411ABF16EBE6C97C54CB , 0x900DE6D957604BAD83EF64007152574A , 0x90127020BB14410F884D8E27BCD6BDA8 , 0x9026B149063F4C1A985A81B2A2B1532E , 0x90A1911F60584B62BE72C0BCA266D83F , 0x918E3D930C7A4C96AD9112D423E6EB86 , 0x9254323B8D0C4579A89CA9135937B2BF , 0x92746FDD2BC54F02B7D8CA4DE230140E , 0x92DE8D8AFC0349DB958614D99053E789 , 0x931A3526302243459A86D519E21E9829 , 0x93AFADE503974BF68150875C20FF98B8 , 0x93CFA2107B184FA398922862770B25AD , 0x94166CCE97A74DC5AE9F6EC549815839 , 0x945C21F8920C4224A78579E044F3B499 , 0x947742C47E534508A4667B65D5A1067A , 0x94990F71B3434CF5A57B64339FF4EA3E , 0x94DFEE026D3242E5BA2A78A043B2DF83 , 0x95328E3731F94EFD8043336CD4E275EA , 0x953E4D5AF5864532A166435455666CC6 , 0x95CAA97BCDF84C658388380ED5922C93 , 0x95D94E0C0A244130972F6970F16EEF11 , 0x96E2CCEB3C4B43A3843D7F12A700F500 , 0x97303977ECE54D829EA799C63B2A6D5B , 0x988CD8CB631B4C08BAD5CF68AFBEC39C , 0x989603140DA042AC8E033E95458B3785 , 0x98A46977CBED403D8EEAAC7CDD190149 , 0x98BDFF925E9F4EC092EA91EEF736B9E7 , 0x994F6D566A4142559C147C7FDDAF15BD , 0x9963CB659AA54374A5A8B27BEF1FA416 , 0x99F6700613544419AF205FB375016AA7 , 0x9A464F3D363C4CB382165E9CBB4C53C3 , 0x9A50A84AB1D9449BACD5A9ECB11F859D , 0x9A644573660F4E3CB45BCE25FF321E1D , 0x9AA14DE78CBB40A0BB434CE1FA93E948 , 0x9AA236479142499D9E00B2C7A50B2AC1 , 0x9B1FFA06B94145F58F0A70BC2DAD111F , 0x9BB6FED98296409EAC1457917A417575 , 0x9BBDDBBED9BD4786A8576732068E4965 , 0x9BC2B3D8AA18489E89EE2AF8569E017B , 0x9C07D88E2DA34A3C974DA50F37102521 , 0x9C283D90F08A4DC989955CDBC07B20E0 , 0x9CA9A6D58A504A8E99C612AFAB147ACE , 0x9D7E764DF7FD48A2A6AD43A7DF4B211F , 0x9E3E972C53A34BCA8E8D4E83992F4EC0 , 0x9EF8EBF088D44F6381111538039DCEBD , 0xA0346C99508D4637849CC182BC4C90A2 , 0xA08A5C18929D40F6B1893B25D4D114B7 , 0xA16CF594E7E84125BF555AF550D2F298 , 0xA172313FC4C74F9C86009A41FEC37D58 , 0xA19A2E0DF3494D49B492A08478566ED9 , 0xA1C395832E234F66A402488F64F8D02C , 0xA1C8C6B9B4D846F38AB5177178484A19 , 0xA26C00A3E48442E188F672E0F035E08F , 0xA3A84E93B98C4FDBA8AF6E4FDB11F7AC , 0xA4A28DC7DC384970B68F19F926410B62 , 0xA4BA75390266463794DBE14500260766 , 0xA52BCD559DD94B97979A7B83E6604890 , 0xA595B09B05E04977BBC2DBD1C236AB29 , 0xA59DDDB64D5043E4B01A750BF947A2FD , 0xA5DEFC92E2624DCFA975CC8885C55B78 , 0xA652567D3D5041DCA3D13B4289EEFC0A , 0xA6743728219547D59AE23519B6FE77E2 , 0xA67AE00F357F4C528BF8B17A08DE2A1E , 0xA747F60181C541E68153500D7EF3E6E0 , 0xA7933F5B32F34A1C8CC72F69E19FE0C1 , 0xA7A865927C5E447F9C7F8AA6D9BEE9C8 , 0xA7AD6A9665EA4033A8E5E1070A8DEB44 , 0xA94E117037A94E218550F8E8E454F72D , 0xAA597CA5E8C640F4AF43B20A624C3C04 , 0xAA9C9715012349DF80B7A12E945534F7 , 0xAB5411C7FB8743CCB2DD183B47C715FB , 0xABB485E23A6C42538C2DE7FD2D9D4329 , 0xAC5C9531801B4A60B139808E0CBF0A1E , 0xAC5D5954C56F43548BFC4E4144B020A0 , 0xAC96A1F31C574FC89AD8316AB633C026 , 0xAC9B7119868C4CFF862049D97036F16E , 0xACFD7586D02848F1AC801F4776EFA414 , 0xAD20B35EECAC43CA8AC2F0CC3E06CC3E , 0xAD3846E00CE847E080AC7BD3E912DDB1 , 0xAD547BDDFACE47A1ACC257EAA87A91DA , 0xAD735AF1EBFB421E93E408B073C4A89A , 0xAD9A5C4C130341BDBA345ECA895110C2 , 0xAE59B5BB529F4DB889CC60BAB828A5B2 , 0xAE9DC35E222147D1AE7CA9BD01292674 , 0xAECF04B1A1C84A4385E9E65C4615643C , 0xAF123FA863CA4401AC3159A59A2DF3AC , 0xAF695351A56B49B58250292554C5FFB2 , 0xAF69900EA6E34364B9827C9AD03CC4DC , 0xAF9E19715E034E94B5BD9DB6B8A3B132 , 0xAFB7CBC7E602430AA255221722FD2B10 , 0xB016965020ED45D6877546D0DFAFD08C , 0xB1CFA3D6F1F243EB88715C21E668CD1A , 0xB23E7E543FD64A1097449A6E1C6E3E83 , 0xB40630DD572941959EE34D753CB5700F , 0xB5145D6B3D5F41D3B0105F2FF4186E8A , 0xB5DEE5EBE0D14E16A246DB536B069E57 , 0xB5DFA9E542EC4FECBF3DCD968BF99B13 , 0xB63B162D56554FA69FF479AD24820452 , 0xB68EFC7F595842989EDBDD42184B9DF3 , 0xB6DECF25801544489BAFFE10B69500BF , 0xB7098EFAD39848FF94F3079DA24C0B4E , 0xB7A3B4D35CB74C75A6F39476399144DA , 0xB854BDC7A9EC49E8AE7090A4BFAF4BDE , 0xB88D327575E74D51B24358CD04CC2590 , 0xB8EB179B1054446FBA765A050A0866BA , 0xB9053404F18547CA80356BCD5A056E0D , 0xB98884E3A084422E84AA59851575C75A , 0xB9D13C49802B40B8BD9A34E8CA3075E8 , 0xBA4138CE12F64CE3A64DE43A510DA936 , 0xBAD88AC403DE4371B48DE604AC51A01B , 0xBB998F422DAB443EABB6CAC1640CE6C2 , 0xBC5038B31A9A4766A9F8FCDC1BBE59BB , 0xBDD502083B5C4CFD8EFB1156D656BA15 , 0xBEA9BB64AAA1434ABBC0EDCB624C6518 , 0xC1FE0633E5244658AE245E1A11B9F887 , 0xC20F943866E74D1EAE5B3F0838BA60BD , 0xC23ED21669A8449D8AF0650FCBC15998 , 0xC3C396E968A548F9A4FEC005B3239209 , 0xC47E1725895040E097FB61DF69F0AF2B , 0xC4EEF08FDF8D451DB24F60E084B6D5B4 , 0xC5298C9021FE41818C6C89232B169FEF , 0xC5875411C4B24FF48BE7964122A10B55 , 0xC5F884861F914309A76837AE1CFB32CB , 0xC654DBE8064049A2A377EF69AB65D633 , 0xC74439171D6F488A95916F2AA7F06F6B , 0xC7A9ADC6393E48EF9CE8E7CBE13CE6F5 , 0xC7E39CD05F144D01B5930069EC4AECDF , 0xC891DA8FE266471AA83634CB5B436724 , 0xC8FEF06EF6144EF8B5098555837095CE , 0xCA599C12EB174C2587D735E3112E7784 , 0xCAAB35BAED0943788863D9AC916A60C1 , 0xCAD420DB8AA743A2BC48140515D1A996 , 0xCB1EA02BBEAB422F9757D63BD48AE687 , 0xCB634190E3664F7E8CFD52B193744F98 , 0xCB76A3C150B84A428B9D277B924164C2 , 0xCBC82329E5144D568E24005B2616A920 , 0xCBE07660008B463DBCBD128DBC0A4CE0 , 0xCC0A574F9DFA4ECFB2DF234DA716A6AE , 0xCC7C725BA6C0469CACCED57E7C12A2A0 , 0xCCEF6480E98C4EB48494C2BC53C6EB4C , 0xCD2ECB1BBB5C484882B64E95F8BDDC5C , 0xCDC174667DB4489D8478B0F76066A684 , 0xCDF7881EE1C94F809CA27718237035C9 , 0xCE1F2DBC3A7F42BDB4894D63ADB4EC12 , 0xCE2B2E10CEC14062A8C978FB6AF523A1 , 0xCECDC9821782467D9C4E11A7D90C5A1B , 0xCF39715286F249389094896DD8DB8B2B , 0xCF5CA0C6CE894DA7B265EE976C2042B9 , 0xCF6BF562C83E445DA5676EC9CF29E66F , 0xD02DDB5E68824DC0B764D0A7309B59CB , 0xD042561B61F648B49471B61EA7477963 , 0xD0B200C760FF40BA9B37050C2DE60632 , 0xD14DF177CCC044EF9EECF0D9BC1538A7 , 0xD19C8D7299E949DB9F4B7919FFC2C0B4 , 0xD1E6334C6A3E41D1BB0212368B6255A7 , 0xD22377B9ABBF4F26B2B84DD78AE27995 , 0xD2BEA05C94B54BD6A23CB5161663ECFA , 0xD31A12B2FF244775B463745344D2950D , 0xD362523913E6414E98BDB01E1D901417 , 0xD37BCB05EAD44C8A87B72A5154CD376B , 0xD389CEE74A54442CA597810CE8403E4A , 0xD3AF2E5DE8744C79AFE3707A8157EC4C , 0xD3F778965CFA46018D63DA24130D222D , 0xD47479B83431467B9F1115768F9C12CA , 0xD49A7FE6170B4B8CA04F4133BEEAD72C , 0xD4B70EA3F9534609B4B9D03FB4618E03 , 0xD52DE3258DEF488991DC5E0BBE6D5731 , 0xD577C9EEDCDC48E2A307884ABAA275E4 , 0xD584B504D76642C5BEF8312C63790729 , 0xD5CBF612A70A473080AC1E7DD80C7601 , 0xD5E853E9A3F4499D98DD1EF81E9C70BD , 0xD5F9A8F04DF449D58FD6B0271F95316F , 0xD6980496E9504B14A15F5E34B8263DB1 , 0xD72B2E8241024CB999E07F5548BFD207 , 0xD74DFFFC8C1047C49541401C815D8AA6 , 0xD7FD9A67187B400FB909B0D512DFD5DF , 0xD8283942B03C4961AD219B6D11EB576B , 0xD839824AD12F476895BE5A7747ACEAB8 , 0xD8582C1538164D159450F6AF54348680 , 0xD87B888E860A4875A238E2611157FB36 , 0xD892B1FB7D344536817847A71E94B210 , 0xD8C147B1414149078123836603C46C41 , 0xD8FD4AFAAD314DAF8473A892B68AA960 , 0xD9DC80B408AC4BEE960A1CD51A9AEEBE , 0xDA651462ED394CA89AC7781BBB1D924C , 0xDA8C986DB0EF46188AEA9C5378026093 , 0xDB4F62E617554CCFA497F902ABA8362B , 0xDB5AAE42691140A8B7D2B3363EEC10A3 , 0xDB5CE61E09A2476290EBA46EEC6EF1B4 , 0xDC1A812274C341858B101A846BBF39FE , 0xDC708B2727C94F85AE726208DCDD022E , 0xDCFE925A20D14A88A3E4B761C772BDD5 , 0xDD017B04049B4C03B9D081573D684C4C , 0xDDC3FE95A1B14C898B5FB231FF911BD2 , 0xDDCF6D47E68340BEBD65567BCC6B93A7 , 0xDDF11815E1174B05BD96FE5A032389E6 , 0xDE2AD4D2D5904964B5B4E0EFA33216F6 , 0xDEC40250270249F2970AB1290EBE89CB , 0xDEE64FB515434339BD257FB9D32CCD3F , 0xDF70AC9EECED472393CF9ABF88FE7E08 , 0xDF87FDC52FD64907B2B0B49B5BC89211 , 0xE03B1F01728740EDA99947D7A89008A3 , 0xE03B622BA19E4B5E8388E10DB982642F , 0xE09160BED1654DEF9D35F620410BBCC5 , 0xE0F39626E29047869DF3F6174C4DD781 , 0xE2066736826E40B28F9ACE2CBF1B3516 , 0xE2168221B403447EB0D038E5A355F8F8 , 0xE2BEA6F57AAF4F229D5F91A959F068FF , 0xE307B4A9B10341C3A920368CEAF34377 , 0xE481596C42A441328899D4722FAABECA , 0xE4EDBF4D92F74FEEBB92B6BBC106B0BA , 0xE53C37D814504BF9B3BC7A0FD1CF6A16 , 0xE5D6F7D5F59B4D2E8918B07FD65CE519 , 0xE6AD80CC7E6D40E6A502DCEA3CBB23A4 , 0xE6B6CE545FD7415EB9893EA1FE287A14 , 0xE768118752764987983318ABE999D5A5 , 0xE87A0E6119954ACD858F1B43E300DADC , 0xE979F83130514A6A94F57888B58BB69C , 0xE9906E3C4E8E4FAD9C6DDADAD071EDCC , 0xE9FE9C29232E4A0E9F899616DBF7D6D7 , 0xEA2433A4864642198FCF2028E63ED34A , 0xEB5099BDE654455C842F33027EF1271A , 0xEBB04DBCBF844CDEB4CC66CEE3DBEDA8 , 0xECA7F6859EE74DA39DAB42B1BFF96B4C , 0xECF2C56A297747E384E9CC0EBE98A1D5 , 0xED0E30FD7D054ABA891DA6E3946919C0 , 0xED915A7E1FB84FACA7CFB6DE0EE91C62 , 0xEE1556D8DE7F4DF693BCBDB1267D5EF5 , 0xEE1818D80C3A46EAB4EFB5DDE2B5D427 , 0xEE40E99F12DF4415894F3DBD4F20A59C , 0xEF148AEB9C2A42EEAFA451E1314DF749 , 0xEF371BA6C4044348A019055C8320963A , 0xF02FE01B7C5E49CBA96AB5485356E59B , 0xF03E5DCAF92240FE81F3FF09C2DAA86C , 0xF10F8015A01340DFBC036D0DBFD64E52 , 0xF1B7BF3D8DCE492B87B2C27DBD2D696F , 0xF2896DB43C5F40C0AED48FA22C6788AB , 0xF2DE6965CEFD47B4BA76F62C50942E9C , 0xF303A71733B641689C9D514E3D73B8AA , 0xF3692CF51C114977B1FDEF6E55DAA950 , 0xF39258CF6D01425180E11AC51FC7DE07 , 0xF394F59493E54CD5AA58003E5E9BDF17 , 0xF3D168C357F04072AAA4786CA49A71BF , 0xF4A3406D645A4A84B93BD0E057BC2892 , 0xF4AC81D7520346EB863800094C5AFC61 , 0xF6117DF70AE84D2D99E0EC6E935AC4D0 , 0xF615E4F136124CDA985615C64446724B , 0xF799421B479F477998BF4F14A513B162 , 0xF7C132ECF9A24630B9D6E38B385932F3 , 0xF8BD6A16B0374D62AD03B986718DAC8D , 0xF900B1C8B44A442BBF68B7A45F91906A , 0xF92BB6C5D5A04A849624B35C9D96E95E , 0xF9FC981492464250B0BAE770D85C4E14 , 0xFAAD3EB211914309BBF39F88D2F13C85 , 0xFBCD87C9DB134FB6BF7D66C70D85DAD8 , 0xFC701E04CE234DDEB066DDE4CD809C04 , 0xFCD9EDE601274D3484292D9E53E15515 , 0xFCE0AE8B66BD47738EC2B7EC7154AAA5 , 0xFD9368B256804D7C833BC7FB6105A73B , 0xFE191C929B0F4B5FA29469C9F3D72054 , 0xFE42708368D94D87AB265BCC570246C9 , 0xFEADDF9D2479485E938FA4C0B0430EAC , 0xFEB3127BA826431B952289DA6E9697BE , 0xFF9CAA3A09084C25B16B5022A395F691 , 0xFFD1F311E8FB4EECA4292B25B6F6B773 , 0xFFDB37DCE1B74798B35C0EEBA4FC309A , 0xFFE35A143A9F4F8295F9B0187D7E1AD3 , 0x000D0B736BBE49BF9FE06BE1EFE0D72F , 0x0151545F0B2E405DAEED16ADA8172FE2 , 0x01560FDDFD1D411AB829D5B0FC8F7947 , 0x0167DF1C2F254A3C8287528DA04A3DCF , 0x018ADC5BF2CE4652A0C3A6AC7ADC6E64 , 0x0261EFED5F7A4CACA9C3ADF7DEE4268C , 0x028C96A382934713BD7307BADA4AE90C , 0x02B88FB430574C55898C56C44121D04E , 0x03827C9AA5144278815312A1707830AA , 0x03C73E038AB64C73A58E82A5B73B2A34 , 0x052CCB0053E7420CA0CEE937E38CE1FA , 0x058B5C25E2524CD2A53E5D0A8CF150E2 , 0x059DA6A44A324C8A9EDEECD3DA165FF6 , 0x05A33E2F49A64F319F650B712048EDF4 , 0x05D99F4CB18441EBB0E94C9DB0975C18 , 0x05F7BD4B8CE64C879D803F9B79121AEC , 0x060B866D18984186B8B7F276CF8FEC7B , 0x0654D18E3F22412F9BDE150500A4245F , 0x068F49E5474D42E799952E23890B90F3 , 0x06EA2BEE7B2B494DBCB79F402A9645D5 , 0x073AB22F248D4DFB826DD6537B7772A4 , 0x07944BB73DDD44A6B161BACF86FC4901 , 0x08457DFD0256463FB41C201BA5935890 , 0x09DC55EF311C49D8923435F093E77BEF , 0x09FFE7EC3E304FEEA87A6273C022E6F0 , 0x0A280C81D1234184AE8FC39231E5F721 , 0x0AD5BEEF851442DD943A853A5A1DD3CD , 0x0B67384FB5094E42B318C929ED8770C5 , 0x0BDC60075D2C42DC80D21C1ABD0673B4 , 0x0C886F4A606A4487999C12F68C7EB07A , 0x0D97C5E5B4E34A3490A607914E8215BC , 0x0E7843EC44964C4ABB7A149AFF6AE2B7 , 0x0EEF7EDDC57A4333BBE08C3FB8B59EC9 , 0x1024FC93B0984A7895216ED4AF449BB5 , 0x10718C6218894ECA9E7830F52D209482 , 0x119110F084FA4A2FA782197704121B36 , 0x12BB8FEADED9482EB4EFEA2CE9126E29 , 0x12DE256094D8491382DB47CB876C16EF , 0x138E6D0985044915B8FFAF58F400D664 , 0x141116FCD8AE4A3FB1DE4503CA5E0F86 , 0x156EF1DBA295451E92B51F204CFB72CE , 0x15C8AC007CF14F56B22CE50AE07AB6AE , 0x15DFC133DB634228AE155703FE7E1490 , 0x16A2F782D84F4B51B342319CB82307CB , 0x16FA110F651545A3B5D64F550298777A , 0x170498F515BC4C54B5BF2EE77E484972 , 0x1743CFDA10B44B62982B118595B2AD26 , 0x17BAF37B79C449B088E0E45838353A2E , 0x1826DE44ECDD453E947CCCF819DCD5C1 , 0x1860A6CC569D4FB2906071D8E1E7A443 , 0x189247D2B50E4A75A2FCF416A8B162A0 , 0x18A4E5E896CB41F38E7EAD8BC93A309A , 0x18CE7D13A8244DE4ADF8A12FB71B2980 , 0x192429A164594539AF9AE01EB86CB6DE , 0x19C0E7DC83234E45BA2158C16C760158 , 0x1A23890CAB134875B828C832378EE473 , 0x1B1C0A88A5F44725AFE769AE10264A80 , 0x1B77FD7DA0D14F0EB7445C2903147449 , 0x1BC5AC72D78042A7A43BCBEAB9989BC8 , 0x1CEC537AD603426DBBFAB4DB23C169AD , 0x1D7DAAB25A8B4CEFA4D9EE6EAF4836D5 , 0x1E107D9CFAD84CB1AA21AB64DE031FE1 , 0x1E4990C4CFA748F5B3F063CDF9AC482E , 0x1E9C655B61264567AFFD67C684DF134F , 0x1EAC38632CA046ADB29F2EFECE2FFC79 , 0x1EC958DD1B744C9CB858BA7660242621 , 0x1F8824E7328E405D8D34E11232B79D64 , 0x1FAA4D05754843EB9843784B27ACB93A , 0x1FF70CBAD44A4D6BBC4E15C7BE3EBD4F , 0x206EB1C3762C4A2CA987E99F0C7607C3 , 0x216FC818E2BA4C61919CB07622401713 , 0x218BF2C938544D858C0F92FF460E0365 , 0x2192DD2CC589482EB8A89CA7F9C08BB9 , 0x21C220639D9B462A933265F74948F7E5 , 0x2219C187605D491AA6671211CE694BBD , 0x228333A6239C469DA7AA312122F114F7 , 0x22E639CC80AB4A77B5EA8701A54D92B6 , 0x23732DD877A445098BE0ABD5EE9519E9 , 0x23E40FFF4EDD4214B98155571C81DFE1 , 0x242F3E29017B48D7B2E1F7F4D5EE257F , 0x244450DEBF304356B1F1BE3901A8D1E0 , 0x24ABB2CAA42248539668BF5D6B2371F5 , 0x24F37DB484444A288EE2025BBA7E1F6C , 0x2575114244B64F89A7196AD5F145F403 , 0x25DAE530FCDF4EDE9445FE3911170676 , 0x26D7E90446C74971A3C7EB548EE47CD5 , 0x2734106074D942C3A4E9211A26FB7924 , 0x273503D8725F40FC97A6A5F16EE5244D , 0x273F30BC1201459FA920BE98E4829A55 , 0x27C4F50A512B4A24A3E29A82100BF90E , 0x27D900B1307F4828AEF55711585999AF , 0x289F6F8156EE478FB8EC3085077FCB51 , 0x296344D9F9B148CEBD7FDB5B4AE80672 , 0x29BC91EEDFEC4E51962E4A1AB1D65C57 , 0x2A26A8A56A6E4523A65C137C1EFC681F , 0x2A425DABD6CC43B1B8144CE9105330C6 , 0x2A8075A9C25A41FD964A1F9AB4C554BC , 0x2AC70A20F1BE40FB8F304DA982859EB1 , 0x2AD0560069994B5CAC515C111FA5D8ED , 0x2B3BDB626D4A4C9D81D99B9A32575605 , 0x2BFD278E87204807A890DA4A3E81DD90 , 0x2BFE9F8569714EA0B38FC3B0DFD9F913 , 0x2CEABDD07C4B4AEE8C372664007B42D0 , 0x2D2B368CFE424DD189127F20E4EB6209 , 0x2D30B237E3404B1480180E87A4C1A33E , 0x2D45BBF7664448E691BCA6426B1C6E60 , 0x2D6C61A62A11445089A977785A6EBE5A , 0x2E13DBAB75A44625941AC1E25E9F1CBD , 0x2EE09E319D5447A195DD8CA15F4BC9C7 , 0x2F39BDAB6E8145FDBF6FA02B0F7A3F16 , 0x2F659A2B42FC4D6A8148A5A270B95A3A , 0x30099420A2614446B38CC091A272E61A , 0x307CA12BF52649D683C01AB6AD746905 , 0x30E8E0BF98034F40A7F7EEF24FAAED02 , 0x329E298E3C454B759B42EABC84179A30 , 0x32F25B2A15394A939109AF54775724C4 , 0x3307D2FB5D98430D8925D2E5582B955A , 0x33E6E4C76ACB4975A06F76AD2138361F , 0x348C4E2E4EC24B81BBBC20804D3B45AD , 0x34DBB5F89F1743DCB3F7E5BEBEA6211A , 0x34DCDF516DF74C47A8788E475DA6C749 , 0x36AC462CEEC54F17B6FFF2FC6A3BB125 , 0x36CB4E536CA2497388D34BF1A961FC1A , 0x377BF0278F7A4D069EE7629151DE6108 , 0x394F45D0FE7047B18E10B6790EDA50BD , 0x3A5237104F1940E081E34679CE5DE711 , 0x3A546D950C704E9E9AD61699E15BA68A , 0x3A5E4F70FE584A948BEE21E16F1C0EB3 , 0x3A71F77AEA1A4181B4AC8BF0F79D0A77 , 0x3B8E5954B9B4486E8749F0AF5BEEE7C6 , 0x3BD72D7F9C4F402FBADAB77A31165FD8 , 0x3C68A4AC3A1649B9ACEEC69C98477C91 , 0x3C89FD2D0C154E23B282E5A0943894B7 , 0x3CBA9CB9D3494D0A8D76BD0F704E77FE , 0x3D6BB2AA951D482CA783BEB731B4AB2C , 0x3DA0B0DD7E9B454AB3E4D6A681007E78 , 0x3E370E667B2F4754A4990FE3B1D57D8A , 0x3E5AFB6F55D348D69C6C4B14AE24C2B8 , 0x3F8A23A344F84A58BD4F7CAE71F4AAAA , 0x3FF04EC884D644298C453922DCC438E0 , 0x400132C849EF4544A77FD0970C3BCBA5 , 0x407EBCB4674048D59CA239DF1978D2C6 , 0x40A813A7D0FB4050A9F11B421E41CAA1 , 0x40F5707DE12946F4AB3555074F5911C5 , 0x41359AEA3BCA4C2795081E98011C6516 , 0x414A88F8B2254F5CAB2A49D5B6BFEC3B , 0x4159BCAE579F40C89C493F65F705970E , 0x41750A82AB984CE2A663F3A3F03C5710 , 0x418DAA8BD44E4477ABF228F94CDBB45C , 0x4243A73B1A9648E6B00DD95D3A2A1C72 , 0x42727C57FF4B4C3E9D4A4FBFF1E40FBB , 0x42B79FA66BF046E48E89D1833E979292 , 0x4335DE19EDFE4DA898AD35B4C3ADA262 , 0x43C405F005F84B5F84BEC0038BBA55CD , 0x43DAF7E79AD04452B337B2632CF8F472 , 0x4459D8364B704B9DBE9D6FFF229B5F1C , 0x44AACD5CEA5D4712BC652A577E08A79E , 0x45960866EE434B73A00CACC3BCDD5C68 , 0x45A23269364147FA862687CCE34995AA , 0x461C3D658FA3457A84C7FF1AE6C2A72D , 0x465D1F0F2E1A474194543CFE2F5B69CE , 0x468BB9FB35E54DF9A9514DFE54A54A57 , 0x484E55E2303742C5B01873D5F5D5275B , 0x488E61F3FB0F4F5BB3E922598D928375 , 0x4A4D112A9CF54D0F9E9663F5F8E20E3D , 0x4A533B1969EA437EA9286838A690E722 , 0x4AF2EE34BCA44A55A45DCF550180A789 , 0x4B0CBD62314543AFB2F9E859C5B6A242 , 0x4B12F1C619864550A5DF5B6630318343 , 0x4B960CBD8E8840DB91DC262862C19209 , 0x4BDB40C704D140269CD5104F08018989 , 0x4C29C7598A424E36B37E6863426F7A45 , 0x4DBFEF55957C4B0480E6B9704C2B0A50 , 0x4DE945DF94FC4D50809040F7499F187F , 0x4E43FE740B56465BB5D0E29BFD6E7A19 , 0x4EB8292676EC4C3AA11FD775490225C2 , 0x4F8BFF1B027243BB89A45746CC13721F , 0x4F9616CC8B6B41719AB4DCACC4FBD681 , 0x503573A50B9B4DAC87CDA071219BC1CE , 0x50B85FD10E444240B4AE5FD71CA4ACDE , 0x5193FFA5DE8648A1BCFBA1FA8A26C02B , 0x51D683EA62ED42A4B111524EF6857C4A , 0x52454DB2ADF942B2AC079A296F454A10 , 0x52F8B283FAE249EF89D0D48B58024463 , 0x53EC818480974A6AA7AC2135C135E778 , 0x5445204B02D54229922BCBE2C891766B , 0x54529CB761C34D00812B5782018530EC , 0x547F2786EF0F41DCB9BACDCBB19CB473 , 0x55287CFFA2AA4E61A4277C997983EF15 , 0x5537CA917DD349869458F59E5AD0CAE1 , 0x554492B3197F41CCA73086132BBB13D4 , 0x5578A669A71B4797B7632958B3AA7B2C , 0x559D4B8FCA3B4CD599019D0F2D386671 , 0x56185F67D90C43B29E976E7AC819BF50 , 0x561A30935EF140D2B9E7DC02D1A07DF8 , 0x5626A09D7DD64E27892455472996A58E , 0x5643901D8A8241748168CACE59E9CCC2 , 0x5745CC1EF2024672A1FF223C2827E71D , 0x57C86EEA7ED9418C9882B17E96C06966 , 0x57F59F7CA3494F4B8268447A3C8CFEAD , 0x58DEAB7D060F47F28DB38FB1112A3BF5 , 0x59165B81288943329E95069322B8F698 , 0x5919ABCE4836461C983C47EB1705E823 , 0x59229C069E934DF6B1A51F52ECBC0335 , 0x596504AF1F52469C854F555647A83CD6 , 0x5971BA39CF47436AB18A8E1F3B36F9D9 , 0x599CE5FEB01D4CDC8147DE16B9B550DD , 0x59E37E3B440342A4B807BB33D753CCC0 , 0x5AFB9FB0E9E5467DADD8B1050F2A2BEB , 0x5B8D2A04510B4018B149842002641A74 , 0x5BBAE6CE9A7940D5B8512BC75E0B855F , 0x5C5B0E6B0C2E41549560B25B8D90CF3F , 0x5C64808E9D524713A263DF146E318BCC , 0x5D0EB28CEF3D4957BE3FB678B7809051 , 0x5D1C012431F346C3B336BC49162EC248 , 0x5D544886E310443082BDD0DEFE52BE2E , 0x5D82376EBBC4445D91D880E9E7E88F9B , 0x5DD5D52F070B496C9C5569B92F4183A3 , 0x5DE1EFAF5E164279921C7685C179434C , 0x5E7BF68A73874EA6BDD137481779A4DF , 0x5F011C2102AF4D7584C357B88FF1BE76 , 0x5F1BC7DE15644580908950DC7090E996 , 0x5F7E71065DA0417B93F5D576B6EFF4AA , 0x5F9F898C030B49C296FF3103C161064D , 0x61E58869825B47C98FBC330834A0D77D , 0x629A68A6C24A44B9BCFA0861DA810372 , 0x62DE0B36A9F14213909209BAE8929E19 , 0x6327E940A40841B7AEDFDBC454A410BD , 0x63460C1734CC4360A54966A5A60E912C , 0x63EC96D3010049878269F39574AD7EC9 , 0x64A124566FE24CECAEB6900AD77DC1C0 , 0x655BAC9D9AD34D748B207A6193079D0E , 0x6592A43FB34C40538B606BFA9253E9C4 , 0x66030C97897F4FDCBCB6018023294A2F , 0x66104AE7A2CC40C1948C764714A39CBC , 0x677B18B4ABAA453298CB0F11E1D5C766 , 0x67C0EC0185564706ABB5E149C1CCB8B3 , 0x67D3B6BD62BD46BFBDBA787E9C057D65 , 0x680B668F51FA47389E04BFA6F94C8E61 , 0x68138061F3BD411CBEEF8936D10D49D4 , 0x68196BE05BC74B6B8C27A6AD7C3BA37A , 0x6894F1F1D2F14FF9A74175B94DC90EB6 , 0x694DD94E6B3C4E23B398C3253318310B , 0x699E8AD62F12435DA8DF665889B53E1C , 0x6A214396FF3946498B2276066E80D04E , 0x6A2F7847A31741DDADDF5674921761B6 , 0x6A3B54E17CF64713BA8E7803B9C0BEAB , 0x6A6538F99AB3493095829F7FC049AEF2 , 0x6AE0CDD72F8049DA89D77A9D4DEF05E0 , 0x6BDA31E68EF146FEABAC3273DD10888D , 0x6BF34D66C64B4A3596597E92F03430D9 , 0x6C25B7479B184EBD94E97F1CBC1E0C3F , 0x6C881A87110341A2A043BC9A7C023FAA , 0x6D78F81F3F984157A6E4D80672BF13B4 , 0x6DA341CD87FA49CE952EECA5EA515AE7 , 0x6E32527B89124E2ABDDE5A893FBD72DA , 0x6E69A9B8445946708CECA0DF865368D8 , 0x6E6D9C305A5A424FBE7BD884E050B37A , 0x6E7D0E9163134A539BD011EAA9025C01 , 0x6EAECB09999A400DAC58C2B11933676F , 0x6EAF3D21C6104697945B6F009B1B131A , 0x6F886140ED6F4B3285D3D483FF765792 , 0x7065F72B3E4E465DA653D86E05CE17E9 , 0x70A25C2DFDE44486A09384472312B5B1 , 0x70E8DD6B656D4A4B907B0FC74AEE753D , 0x70F0782CD98740258C63880E61EDCE3A , 0x711C5395032649C1817C365189EF2ADB , 0x71E20458C47743E087EF434F783A9CDB , 0x730F5A502717477CB4D236AAB08F5200 , 0x7349C24A3F7D487B818D488C253958D7 , 0x735B0B5205AC4F0CB52142D9B6512CB2 , 0x736934E95996469E977CB0884C8D80CC , 0x73DD488EA86144479F63394C372A969B , 0x7449185A532B46BAB3997C3EDBEDFAB4 , 0x74AE9206DD674848928B40C1925FC6B6 , 0x752701E5CE774AECBB7F66A756C297C3 , 0x75D56F4F7F664C9AB7A84BF92FD24C11 , 0x769D8FE7B08A4D90B6A4D067E3AC18AF , 0x76B6B58B96AE40019F2E4C8E877A923F , 0x7738B9D805B441A3968D5B0469EB91DD , 0x786FB02E0D1943019480A55BF3081931 , 0x7884C6D4D8F84D31A0D4521F26E1547E , 0x788F0E702D3B423CAE0E476C5167D156 , 0x78E954D09CD64AEEA2E5726741A69A1C , 0x78F54F169A3E4CE19F563939EAFAABB9 , 0x790E8323CD1E414892D541C66D170796 , 0x793581CDA411440989418F68608E5876 , 0x79987A7769A8464CBC1E0626645DA1B5 , 0x79D9739FE3BC487FA801869733232C4E , 0x79F92A07AD1D4A15A9AC3651E602349E , 0x7A6373D28D5B46209589E150FB39FDB0 , 0x7B0E9F7AD4FA435FBBAADF581C501848 , 0x7B75774818254B9ABE45C6639C4BEE9B , 0x7C6DF577EF354D49B3F4C6112CE48537 , 0x7CAC5C00480248C181971BF1BA45C03B , 0x7D35022BB7C94579AD6BAA9CE8428C92 , 0x7D5310624DBA4EFFBE8F76EBC42AAB1A , 0x7DB0A09BB4094BCE922737464171A596 , 0x7E05A98AD35142329AD9F0FF305D8395 , 0x7E73E5125113452F96F2CEE8FF253E8B , 0x7EE09F3E86754D5693108875EEAD1C5B , 0x7F5521C6764C4C5EB805B2496AB88328 , 0x801FFEF297F844A8AD50DFD3FF3CF4B4 , 0x803828A402AA461788CEB9F116E125B1 , 0x8040133CAE044D3E9ED8F1EB8D0C1F63 , 0x806A179180EE45DEA47848191EF93244 , 0x81666015193B47249DDA288081B13924 , 0x817ED606E3E04DBA845A503A38E8CAC7 , 0x8230524B8822491EAC975D39BB567E77 , 0x83705DCC0E5E4264802D9570C0995BD7 , 0x8410CB1D13DF4406B093A62F2DF6A49F , 0x8464A73ADC1E4C659010B4B3E0C93739 , 0x848139E6903C4C708322371F739D7CF8 , 0x84D5681F053B4D11B0429FB54E6B3023 , 0x84E0A14520C54F08BF181330DFBD99CA , 0x8552DC31F9B24EA496D1A6BEAADE8D9E , 0x8561D062A3874E36A5F8C1F5FDE806FB , 0x87568A2B33A143749FF338C915617A28 , 0x8762BA3A092B4F18A92C2C9342B0AC9F , 0x87B2F067B1674465B3995058EDCDAD5B , 0x88242E6C532D479C97E6797ECD57F941 , 0x889C63A7F95B4DDA98B3D0A104D9B6BF , 0x889E3E76CF7B4EF781EDF57A4CB201AA , 0x88C7FFA14DC249668AFA462FBCD634C5 , 0x88D21E3CE83041669DF60CE3F37CBCF4 , 0x896BA96AAC694B569A83BF591287A923 , 0x898CDCA9AE434D62A8241D9AA4B9FB25 , 0x8A6590DADEA5482C9B3911179C84A1D9 , 0x8B5B20B570C0412AB58D80AF95AE9F05 , 0x8B8F4A25E36E45BE81025CA3356D66F8 , 0x8B9363E082E84EBCB18F866C186A388E , 0x8C7E190C227644DDADC88EF825944239 , 0x8D3A219385AC4B549D65FF85F36C6B0F , 0x8D827FC7B9D84356BC02873EA4841546 , 0x8DB803FF09A440DB82A6C8AF41968AA4 , 0x8E761B6130F0451A8F3BF562EC4551F5 , 0x8F9C44C9A9AF483AA51F07A99BF20F64 , 0x8FD0C00FFE1B4214BC3D619DEF70852F , 0x8FDC48BB552843F89A689E3FD7AE41C5 , 0x90D8E769D6C4403C881194CB47226EEC , 0x90DB8E572EEA4EA396215457FEBD90CA , 0x9219410151B8446CB753E85DC56D423E , 0x926AAFB3075C4C6CA3363DAA1DC26A64 , 0x92B6C39209BF4C498D250D1758D01829 , 0x9366A11ABCD647CA8E90B16005CEB6FE , 0x94A84013A7CA4266885E8A67C0B6AE74 , 0x953E02487BE54A309642324118ACE509 , 0x974F24265B684935A3A6CA37BA2B01D7 , 0x9758D63DC7A34E9283B8FCB095196B25 , 0x975A5F7FE91A4DC9B8B66788CE90B60B , 0x976479D0DB534585874A3080D9F248B3 , 0x976650529EF14B4E9ED206A8193EED45 , 0x979B86599EC9403091ECE139D0D807C8 , 0x97E630793CC544EBB2BD676EB27A21E8 , 0x985732874E454831B90BE29C99FBCEE8 , 0x989AF3D3CF5644AF9C0C7CADEF84EB45 , 0x98DD1EE0B1244725919833D5A110D958 , 0x99084580AF774598BDB7958818294245 , 0x99529600B9FF48C7B359E99818AB4DAF , 0x99D6A1669AAA47E9A867C912ACEF6F34 , 0x99E409950B5C4DFAA820BCE764652356 , 0x99FC49EFB2F345B0BB62D93F1F630297 , 0x9A1B258DE098438596E0D451BC0B1BC4 , 0x9A533129813743C0968D8C1BA61D1B5E , 0x9AF0CD11D26B4B2C9CF5697A9A841F77 , 0x9B05F88EEAB948F48184D35A8BF585EE , 0x9B15FDAE5FC24618896B7BE160068FDA , 0x9B637EB7B3B6450AACBBC7F74C30CC1A , 0x9BB12F638F464A10AC6D2C650D1524EE , 0x9C3132C8F4194E2A95F1812A28C9267E , 0x9CCAC6B119C54E55A30A3559799EEC4D , 0x9CF60263E42643B18F1F65D26EE1E712 , 0x9D2FCFF3F9424E5CA4883D91F65FD3F8 , 0x9E84E7B7F32C49D49147311C4B1DDC0E , 0x9EBA89258B2E4E0FBC02D337A77BF07C , 0x9F4D5F53B7494EB2968F50F898DFACE6 , 0x9FAD02577C144B4ABCD2D4615C645661 , 0xA0183A2B88D24C1089683E299EF0E5A0 , 0xA034AD9AC5604D8786A600C8FF727B7B , 0xA0498A7C0514491DA66C4DC175053BB7 , 0xA05F65CEBE884DB9A0A8D1BDC99C658A , 0xA0B6427CF7EE44F7B91A83A9FFD9987F , 0xA0D8D0164533454DB70ADD4BE62FB649 , 0xA1660A24F3824697A90FA588EF09DA14 , 0xA265ECD2D2FC4FBD88A3698D81BE3CE4 , 0xA361B5F606CE467A8B52759E1B3941EC , 0xA3866FFD405C4403B72759537EE42434 , 0xA39A7C92C0BD47C09970D3989CFED2CA , 0xA48942B91E0742519BCA7B16667AF98E , 0xA4F88ADF121F48C99FD3EB29E09B1FF1 , 0xA5EC6A653EEB4D9B8E39FD655847F779 , 0xA6B07013E38D42B9990933F1CAAF084E , 0xA7C236F7596E466DA6CAB5D93227918D , 0xA7CA0DA9E0204506A5A443AC348C5C39 , 0xA81BCA2534FF475BA2CF0493730E0196 , 0xA83C84723F6C493B9CBF0083A0C3FA96 , 0xA890AED2FAF04103A098065CD3C182F0 , 0xA8D71210207744BD9ADA9D45227E7AE6 , 0xA96B34DB48234E9898CB8E8A645E59AC , 0xA9A2AEB1DB134D2FA8EB90F139A3B801 , 0xAAD91494F5434338B8EE0CC173760DA9 , 0xAAFE9EDBF3E442909B332A93791D72D4 , 0xAB27878C858947BF9BF3F7337910510D , 0xABBD7834AC1D48718F732CEEEBA40A14 , 0xABCB6696BB6142B6A93B3D49864CCBE5 , 0xAC1F11D317D3487E96E23036B7264DD9 , 0xACBADFAE3F0E44F0B44BC01B68E0881A , 0xACFDE35EF6A94F3F9928E802310D43D6 , 0xADFFF4DB29704563AE31D0A11A96F494 , 0xAE4578DE6B7F4525BCB24AA0E3F3DC9E , 0xAE61DA93D12C42EF8E3E252B4EA55B4F , 0xAEE4A6797A254296BAC9E3FFFC22985D , 0xAF11B47C24464103885AAB5BA9C0AE7C , 0xAF909FD876A5488793AB56B8DC7EF35A , 0xB014913F498C4D0A864FC2E2F11D7090 , 0xB18F71E07BA04C31858D32522B152FDA , 0xB2355711DCDC48D8AADAC7E10309800C , 0xB2927B9F2C4641C7BE1DAEEF6CE60F36 , 0xB2D389BF0C6740B3AFC145B2ECF2586B , 0xB2D6AE43270044E49FFB2ECC54E48F9A , 0xB38C21EC79914187B685D8851BE17940 , 0xB3BAF5DBF1DF44A7BB1CE6DE8297A79E , 0xB4333F7F150740119EE9B8C7705D4994 , 0xB43B825A64C64E71A81805D883A3E5E7 , 0xB44D749AE0664F50A73601B29C78513C , 0xB486E0C247D041ED84CCE30A0CE2881F , 0xB562AB0809BF45E29B437AAD71CE3FD9 , 0xB5945CEEDF9C4A1FB22F463CAE45B6E6 , 0xB5F9FAB27BBD47948CCBD5EAC2BB223C , 0xB60EFB5A5BB74924B2D78D37753C491D , 0xB68FA6C1A30A4FED869866AF7C3FA211 , 0xB69D205885B34CDEB365D8E864B058C3 , 0xB811B466D4C24C59A83625FE30E92594 , 0xB962154DEF4E4557BA09E21A1CE9E8D0 , 0xBAFFC4C0A6454FD4A5FB0B85235E90AE , 0xBB0116ADB986489D9130894324F7A5FF , 0xBB0D9F633ACD4B94A8CCB1191AEFB983 , 0xBB2DC9ABC0F94A1FAE7107BF61825B1F , 0xBB898DC07DA941F69F4478DA0FB7E9ED , 0xBDA0739EE1784E3FB53191F69E95DD95 , 0xBDD76D8587B04F439DA4F96194F559A4 , 0xBE3454886E6D42FDAC90562C770FDC76 , 0xBF205D41E4A3498DA999DD22CED97CEB , 0xBF359E1343C8492E874A6A49592C23B3 , 0xC159B69D59F942E4B1463AFF8CCFCB2B , 0xC19439300CD240079842FFA814439E72 , 0xC272B0E30A5D4AE485E4B004553E906D , 0xC2783D38579F432D95F21CEE5235D557 , 0xC2D26E3BA9C8496B944FC1976B4D1595 , 0xC33CF664A3A44D74AA7FAF39581FB87F , 0xC3E4F1120D4246B4A3169FB6EA9B3754 , 0xC5BE5E3F6DC64813AC4B8B186A48A5B7 , 0xC5C8B3B3A2C3431DB4C17C7057717582 , 0xC64D84707B204AFFA31D3320D3818830 , 0xC72368E42D5A425481116950AE42E8A6 , 0xC793E7C979744EB4A1DF9F0694693905 , 0xC87E21A776754D7BA291D898BCF12BDF , 0xC8920C39C3EC46BA9ABF2A9200D664D9 , 0xC8F2C2F827C847DF9FF85148C418EDE6 , 0xC955CF213D314ABC879485CE82C75F3B , 0xC99CA89DAEFD43FFB4F10502EBA7C45C , 0xCA3122DF200E4B1093499FCBBC98693B , 0xCADD602F64844C7FADA5C6C686BCCA93 , 0xCAEA6BD8236D4588A3F346C33BECB505 , 0xCB75F8B8E471487398D4F830DB8BEEBA , 0xCB91C5629D824064BD54712097CF5AAC , 0xCBBA9861081F4090B562F7C7C49DB141 , 0xCBD24E9B423846D1B5107C049E082DCF , 0xCBE824276C9647E2BD7753E2345739C8 , 0xCC324E63B68049AEAB2EDDA65DCCA52A , 0xCC68B877248C4709828EEC45FECEBE27 , 0xCC7F036DF4F04859829D6A4091ABFE1B , 0xCD414378DE674CDC8B5398678C169EFB , 0xCD59AA9167FD4433B63BA0A23DBE22E6 , 0xCD8E927D36F14E6B87A1C8B8AAF47DA2 , 0xCEFE9EDBBAC749BB93D645956418702B , 0xCF444EEBA0574697824B8CF900339FCA , 0xCF8294F0EF71483D9BE40F9F216CDBFD , 0xCFBB2D58615B46B496EB9BFEDC6666E5 , 0xCFE9D681CE9A42B2BAD2ECB2E508D1A5 , 0xCFF58C04736B440E95E771A79DAA0FAB , 0xD02B04633AEE4E20AE5017452694911C , 0xD03E93B6E52141969C542CA81CA1A87E , 0xD0FE86F149A946DF986FB845A00B5714 , 0xD17067FAF5A74D56A70F58278FCEC72C , 0xD2422A3A683B4A26A92CBDB94AB1CDC4 , 0xD309AC94ABF4491EB95CD23E15489CC7 , 0xD336F3B5F9E64955B1F8448EC44C63A7 , 0xD340BA2D7A384E16A611CE21BA5051F2 , 0xD3BCEB4DBB4E4F9A9C6939D7C4A14789 , 0xD3E67C82031E4432A2375E4427889B1C , 0xD4290B84FBC74778B97DEABCE452C713 , 0xD48F0A6DA28948D68627BC0D56881B7C , 0xD4A49D8A65E64B609DD482A0D87345A7 , 0xD4AB20D3F29C49B29760743A95BFC55F , 0xD563A5288A1F46CF8DE2828557103A9C , 0xD5C7D730DB994E1F8DB6CFD8D3BC9599 , 0xD6586797DF1240C1AEAD3943606FBF1C , 0xD69338DDECF4496E99FAE96AA9587CE2 , 0xD6B99FE33D5846A5B459EDE513FCEEBB , 0xD7C75B83202A44C79E61C63C8E83BF06 , 0xD7CFDD94B79947A6903C344E3DF5E29F , 0xD86777372A434376ADE498DEFBD99647 , 0xD89CFC5DE3644833A1A3D12E58AEA39A , 0xD98E17721D524B409C6D5F5902DFD212 , 0xD9C547C7AE094644BA264497F73306FD , 0xDA5ABF3A196C4D20BEDC20268C801FBE , 0xDB1E4109009F437AB860F9FC047AB680 , 0xDB6C043BDF27481FA752A0FCE0D59349 , 0xDBBE6F0AC5D24D75BC6BA338636A386D , 0xDBE8DCFEA30C41EFACA3CD78746DF54E , 0xDBECFC9ABE6E4F7D8C1EC669F39DDE97 , 0xDC00B1011E50498CBDC719EF10522962 , 0xDCAC348506874B37BE091CC01AB9FD4D , 0xDCBF83451AA746859D4DE4B7EA4D9185 , 0xDD5CC743D87248CC98818871438DBB09 , 0xDE0A4660AFC841DA83BDBB6BE0801712 , 0xDE0DFD87D6A0409AA89154C1CDA4C00D , 0xDE8327BAEE5A42BFA3119441CE9F0400 , 0xE034834DE6FE47BC8BD68F4216CFEB9D , 0xE19DF742C20D44E88D60671188175D01 , 0xE2955940EBC74513A1AFF630F61BDE8A , 0xE2B38F2FC7A341C6BFC456B3C053B8CE , 0xE3651DB1E006403B830D412C3FA0C840 , 0xE398C585870A467886C0F358178E3E28 , 0xE40B3097F3B34EA48CD7157E5E32C898 , 0xE4D9273A32BC4B65BFAB71EAC59A13CA , 0xE62AB798EC774165ACA224AD03987B05 , 0xE68289614EED46B89C8BB65EF7EF334C , 0xE7708AF48BF44B5CBCD3A8A24F6336F6 , 0xE7A50EA892BE446590A84342D2369612 , 0xE7A9A114FCCF4135AE4F86D1976FCAAC , 0xE817CB7471184D01988B6C79EB15FA66 , 0xE82306C73EF043D796E722FB0CE8BCD2 , 0xE8C8F701B29947918AF6116EABBA0D90 , 0xE8C97507DE1048718DA40DE9BD89137B , 0xE8EF31CC8E6240729DD64127C12D5E13 , 0xEA8F846CA463434083E45BA63EDC3738 , 0xEAADF62111E147F087E6DAF4347BDEE6 , 0xEAC39CAF816E48168F46C68EACE7B04F , 0xEB0C0719C84648E1A0832EC04C50FF30 , 0xEB4A625083E04A988326A1D1243BF149 , 0xEBB6ACBD880E46299E6DFACE56EF4A8E , 0xEC2666AF073A47FD9BA80DCD82F353F2 , 0xECF81513ADE8423B9E4C911D62ECA6BF , 0xEDD48F8A6FD24617A4D187D9139FEF8E , 0xEED176E1647A42E7AFE1FA41FCCF7BB2 , 0xEF09DCC1F1D84CFE96B266299754D8F9 , 0xEF771D6AE55F4D208E002A825AA2CC70 , 0xEFE0398E20874B0D83884290FC73F5F8 , 0xF010E8060DDE4AD3BFB6F6AFD1970820 , 0xF0A2A0A4766F4B06A7D409821EF7CC18 , 0xF0B13AB85FFA454CA5E386E78DD38453 , 0xF0E7237D5C0D4868AA26A8AE8836F040 , 0xF0F6BFB1DC3C4D6E99CAA1DD0BC32A79 , 0xF1514FCB059540F99247AB93D588AD2B , 0xF2AACF007F054EFF8777B1B468E1D65F , 0xF324E739C77C48E296AF91F8303E6A4F , 0xF380E37946F2420088BCCC80A554F19E , 0xF3C48062B1124AF59D38FE4E495D9CBA , 0xF3E9B99EDE1E42B8903C7C65C6261B12 , 0xF4184F079B3F4424BDA69617C7C0E198 , 0xF4F05979DD2D40248D44ADD38B1921EC , 0xF5F9623BEF1E4D72A3FBD749BA73E19C , 0xF6B61E3D4DE64D2BB8097A369ECF99FB , 0xF7014C6A365E472980EEDD7DACD56C96 , 0xF70A77038E80425FA98F463A1FD44473 , 0xF73444EF081A4AF380CE05D4F409543D , 0xF7595E61B9A640B089440EC9947E0F9A , 0xF7EB0B917346465AB3E3B901A172815C , 0xF8EFBD997C8A4441BFD33040EE99C70C , 0xF8F727CBC2E94E46B2708D3A289E9A5C , 0xF96BC4404E1B43F68F10EA1C76B7E0C4 , 0xFA488A99F1BA44CE84D4018A400FE462 , 0xFA50992C213D478580AC0E412F4CFF99 , 0xFA95C912C31443FAAE5E179D0056AAD0 , 0xFA976DC99CEA4FE0A800DF775DBA3AF2 , 0xFAB04079CA8048FFBC3DA7D556FFF452 , 0xFC4915AF6FDA4992A5111600C737DC35 , 0xFC6471BFE8044BDA9C0307C9C163FBF4 , 0xFC6958D5865845729A625046C7E84BF5 , 0xFC8405144CD74BDCB4A19E3E43FE7321 , 0xFC9B48ECE2354A9FB4B324C56B7F4DE1 , 0xFCA153FBB5604B64AA2326C93EC4F787 , 0xFCB6E363F93942E3806FA5E35DDAC27B , 0xFD0D209CD6FF45869255103C00DA0CDC , 0xFE00239A50FC469CBC92CED8B43CC8BB , 0xFE051A63E4B44CE593D97545F7261DE4 , 0xFE849AD582FD402DBFC09E2C2DAB7F5C , 0xFF067E170C0D4C1E89C8AE7213CBEAF0 , 0xFFCFB3CB2CBB4889AF8C94F9EA5180AF , 0xFFF67C781AAC40339075B6DF736AF840 )) ORDER BY `property_group_option` . `id` ASC LIMIT 500 OFFSET 500 ;
Copy
64
12.56 ms
SELECT `property_group_option` . `id` as `property_group_option.id` , `property_group_option` . `property_group_id` as `property_group_option.groupId` , `property_group_option` . `color_hex_code` as `property_group_option.colorHexCode` , `property_group_option` . `media_id` as `property_group_option.mediaId` , `property_group_option` . `created_at` as `property_group_option.createdAt` , `property_group_option` . `updated_at` as `property_group_option.updatedAt` , `property_group_option.group` . `id` as `property_group_option.group.id` , `property_group_option.group` . `display_type` as `property_group_option.group.displayType` , `property_group_option.group` . `sorting_type` as `property_group_option.group.sortingType` , `property_group_option.group` . `filterable` as `property_group_option.group.filterable` , `property_group_option.group` . `visible_on_product_detail_page` as `property_group_option.group.visibleOnProductDetailPage` , `property_group_option.group` . `created_at` as `property_group_option.group.createdAt` , `property_group_option.group` . `updated_at` as `property_group_option.group.updatedAt` , `property_group_option.group.translation.name` , `property_group_option.group.translation.name` as `property_group_option.group.name` , `property_group_option.group.translation.description` , `property_group_option.group.translation.description` as `property_group_option.group.description` , `property_group_option.group.translation.position` , `property_group_option.group.translation.position` as `property_group_option.group.position` , `property_group_option.group.translation.customFields` , `property_group_option.group.translation.customFields` as `property_group_option.group.customFields` , `property_group_option.media` . `id` as `property_group_option.media.id` , `property_group_option.media` . `user_id` as `property_group_option.media.userId` , `property_group_option.media` . `media_folder_id` as `property_group_option.media.mediaFolderId` , `property_group_option.media` . `mime_type` as `property_group_option.media.mimeType` , `property_group_option.media` . `file_extension` as `property_group_option.media.fileExtension` , `property_group_option.media` . `uploaded_at` as `property_group_option.media.uploadedAt` , `property_group_option.media` . `file_name` as `property_group_option.media.fileName` , `property_group_option.media` . `file_size` as `property_group_option.media.fileSize` , `property_group_option.media` . `media_type` as `property_group_option.media.mediaTypeRaw` , `property_group_option.media` . `meta_data` as `property_group_option.media.metaData` , `property_group_option.media` . `config` as `property_group_option.media.config` , `property_group_option.media` . `path` as `property_group_option.media.path` , `property_group_option.media` . `private` as `property_group_option.media.private` , `property_group_option.media` . `thumbnails_ro` as `property_group_option.media.thumbnailsRo` , `property_group_option.media` . `file_hash` as `property_group_option.media.fileHash` , `property_group_option.media` . `created_at` as `property_group_option.media.createdAt` , `property_group_option.media` . `updated_at` as `property_group_option.media.updatedAt` , `property_group_option.media.translation.title` , `property_group_option.media.translation.title` as `property_group_option.media.title` , `property_group_option.media.translation.alt` , `property_group_option.media.translation.alt` as `property_group_option.media.alt` , `property_group_option.media.translation.customFields` , `property_group_option.media.translation.customFields` as `property_group_option.media.customFields` , `property_group_option.translation.name` , `property_group_option.translation.name` as `property_group_option.name` , `property_group_option.translation.position` , `property_group_option.translation.position` as `property_group_option.position` , `property_group_option.translation.customFields` , `property_group_option.translation.customFields` as `property_group_option.customFields` FROM `property_group_option` LEFT JOIN `property_group` `property_group_option.group` ON `property_group_option` . `property_group_id` = `property_group_option.group` . `id` LEFT JOIN `media` `property_group_option.media` ON `property_group_option` . `media_id` = `property_group_option.media` . `id` LEFT JOIN (SELECT `property_group_option.translation` . `property_group_option_id` , `property_group_option.translation` . `name` as `property_group_option.translation.name` , `property_group_option.translation` . `position` as `property_group_option.translation.position` , `property_group_option.translation` . `custom_fields` as `property_group_option.translation.customFields` FROM `property_group_option_translation` `property_group_option.translation` WHERE `property_group_option.translation` . `language_id` = ? ) `property_group_option.property_group_option_translation` ON `property_group_option.property_group_option_translation` . `property_group_option_id` = `property_group_option` . `id` LEFT JOIN (SELECT `property_group_option.group.translation` . `property_group_id` , `property_group_option.group.translation` . `name` as `property_group_option.group.translation.name` , `property_group_option.group.translation` . `description` as `property_group_option.group.translation.description` , `property_group_option.group.translation` . `position` as `property_group_option.group.translation.position` , `property_group_option.group.translation` . `custom_fields` as `property_group_option.group.translation.customFields` FROM `property_group_translation` `property_group_option.group.translation` WHERE `property_group_option.group.translation` . `language_id` = ? ) `property_group_option.group.property_group_translation` ON `property_group_option.group.property_group_translation` . `property_group_id` = `property_group_option.group` . `id` LEFT JOIN (SELECT `property_group_option.media.translation` . `media_id` , `property_group_option.media.translation` . `alt` as `property_group_option.media.translation.alt` , `property_group_option.media.translation` . `title` as `property_group_option.media.translation.title` , `property_group_option.media.translation` . `custom_fields` as `property_group_option.media.translation.customFields` FROM `media_translation` `property_group_option.media.translation` WHERE `property_group_option.media.translation` . `language_id` = ? ) `property_group_option.media.media_translation` ON `property_group_option.media.media_translation` . `media_id` = `property_group_option.media` . `id` WHERE `property_group_option` . `id` IN (? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? )
Parameters :
[
b"\x02 0¨(çñA —O®8ͬÞÛ "
b"\x02 0¨(çñA —O®8ͬÞÛ "
b"\x02 0¨(çñA —O®8ͬÞÛ "
b"f\t PÃwŸBN«Ò¼xîÚQú "
b"f\x10 Jç¢Ì@Á”ŒvG\x14 £œ¼ "
b"f#P\x16 àÚC‚§wý7ÔEØr "
b"f; ùÞ(E%¥3Dl¡ì·š "
b"g{\x18 ´«ªE2˜Ë\x0F\x11 áÕÇf "
b"g‰˜\x1E ÃÌC\x1E ¤bo*]}pb "
b"gÀì\x01 …VG\x06 «µáIÁ̸³ "
b"gÓ¶½b½F¿½ºx~œ\x05 }e "
b"h\v fÅQ·G8×\x04 ┐ª¨LÄa "
b"h\x13 €aó½A\x1C ¾ï‰6Ñ\r IÔ "
b"h\x19 kà[ÇKkŒ'¦|;£z "
b"hp*¥…ÇI\x00 ½\x1A $\r O¹%2 "
b"h”ññÒñOù§Au¹MÉ\x0E ¶ "
b"hî\x16 ½¹yH0³LI ›t\x01\x06 "
b"iMÙNk<N#³˜Ã%3\x18 1\v "
b"i~úô°ŒN¯½Ó*\t\x08 °|ª "
b"ižŠÖ/\x12 C]¨ßfX‰µ>\x1C "
b"j\x03 /àÅ\x16 Lº║|\x00 I\f ~'Ö "
b"j!C–ÿ9FI‹"v\x06 n€ÐN "
b"j'ÅL▓\x13 FG»yXr_7éS "
b"j/xG£\x17 AÝßVt’\x17 a¶ "
b"j;Tá|öG\x13 ºŽx\x03 ¹À¾« "
b"je8ùš³I0•‚Ÿ\x7F ÀI®ò "
b"jÓèëL+K`¡Šn“\x14 \r íü "
b"jß\x02 ¸þÞF>¦œ³†üà5ñ "
b"jà\x06 ÛÆEM2±ƒ–ª\x05 y—" "
b"jÓ═Î/ÇI┌ëÎzØM´\x05 Ó "
b"kFe\x13 ¨|Ho–\x12 ®.\x11 jÜ "
b"k‚ÿ»ƒG\x1F –»KiÄ\x14 ×€ "
b"k†(¯º\x1C O–‹J\x01 Òcç0Ò "
b"k┌1µÄ±F■½¼2s¦\x10 êì "
b"kã:ÂGJFå¯qÓÂŰSä "
b"kóMfÆKJ5–Y~’ð40Ù "
b"kþ\x06\x17\x18 xO±º¨ýׄ\x06 ˜^ "
b"l%·G›\x18 N½”é\x7F\x1C ¼\x1E\f ? "
b"lˆ\x1A ‡\x11\x03 A¢ C¼š|\x02 ?ª "
b"l¥<Õ├9FªÅ\e ¬\x13 ƒ DF "
b"m\x1C ƒµòºMòžÿ¤hø3ÎÏ "
b"mwÌÆ\x07 ^O|¦Pñ¨\f }™ "
b"mxø\x1F ?˜AW¦äØ\x06 r¿\x13 ´ "
b"m£A͇úIΕ.ì¥êQZç "
b"m‗RÂn=Aí║\x15\t ▄üK■6 "
b"n\x14 L¹ÍJHƒ›‹¤Új›\x04 â "
b"n2R{‰\x12 N*½ÞZ‰?½rÚ "
b"ni©¸DYFpŒì ߆ShØ "
b"nmœ0ZZBO¾{Ø„àP³z "
b"n}\x0E ‘c\x13 JS›Ð\x11 ê©\x02 \\x01 "
b"n®Ë\t ™š@\r ¬X±\x19 3go "
b"n¯=!Æ\x10 F—”[o\x00 ›\e\x13\x1A "
b"nÒgv\x0F ÜBЮÀ\x11 j\x0F BÅ´ "
b"oˆa@íoK2…ÓÔƒÿvW’ "
b"oäà^]=A=¬—áq*~Þç "
b"p1\e ('+@<—<¥s*wÝ¢ "
b"pe÷+>NF]¦SØn\x05 Î\x17 é "
b"p¢\-ýäD† “„G#\x12 µ± "
b"pÞ¦kemJKÉ{\x0F ÃJ¯u= "
b"pðx,Ù‡@%Œcˆ\x0E aíÎ: "
b"q\x1C Sò\x03 &I┴ü|6Që´*█ "
b"qlÎt·╔K\x08 ØÌsþ\x1C ÃIÂ "
b"q‚¹W\v íBO‘\r ‡IÞ¢«? "
b"qâ\x04 XÄwCà‡ïCOx:œÛ "
b"r‰!ÎÏÈCä‹=ïS\x15 òbê "
b"s\x0F ZP'\x17 G|┤Ê6¬░ÅR\x00 "
b"sI┬J?}H{üìHî%9XÎ "
b"s[\v R\x05 ¬O\f µ!BÙ¶Q,² "
b"si4ÚYûF×ù|░êLìÇ╠ "
b"séQæ×├F·¼Ï¡lØ\x0E Vz "
b"sÝHލaDGŸc9L7*–› "
b"sñP£^rA\x17 ¢Œ\x1C 픘Ð\x1F "
b"t?kãØáL\x03 ¾@C4\x08 RЪ "
b"tI\x18 ZS+Fº³™|>Ûíú´ "
b"t®’\x06 ÝgHH’‹@Á’_ƶ "
b"t║B╚À┐H\x1A ü¼§┤2B¤% "
b"u R;_)GЈ¶N;O\x12 œ\x10 "
b"u'\x01 åÎwJì»\x7F f§V—à "
b"uÕoO\x7F fLš·¨Kù/ÒL\x11 "
b"vØÅþ░èMÉÂñðgÒ¼\x18 » "
b"v¶µ‹–®@\x01 Ÿ.Lއz’? "
b"v·\x1E ?UˆI“šà?æ\x05 ´t$ "
b"vϰ\e –ED\f «u;umÏN– "
b"v×V€\x03 M3®Ìˆ–Ù´á% "
b"vál#h&F\f « 2\x0E ݃BU "
b"väá”JÒK׊Õa€ s÷€ "
b"w8╣Ï\x05 ┤Aúûì[\x04 iÙæ¦ "
b"""
x4\x13 ìå¼M╦Á\x1E Ú\n
;xCS
"""
b"xI¢+\e xHO║HÆ"©Mض "
b"xo°.\r \x19 C\x01 ”€¥[ó\x08\x19 1 "
b"x|•7»bDõ«ŸÒÀ\x08 Ë\r Ù "
b"x„ÆÔØøM1 ÔR\x1F &áT~ "
b"xÅ\x0E p-;B<«\x0E GlQgÐV "
b"xŸC@+Œ@Ÿ²î´2ŸJ · "
b"xÒýñÕèL–¦3jÏýûê\x1A "
b"xÓÖO”\H2Ÿ-cåšãìc "
b"x×\x05\x08 J\x0E G«‰Ÿò.\x15 ’<+ "
b"xéTМÖJî¢årgA¦š\x1C "
b"xõO\x16 š>LáŸV99êú«¹ "
b"y\x0E ƒ#Í\x1E AH’ÕAÆm\x17\x07 – "
b"y-_#^«HV…Í*Ùv3\x0F F "
b"y5ü═ñ\x11 D\t ëAÅh`ÄXv "
b"""
yj‰'²R@Ò§@\n
n<¡~«
"""
b"y˜zwi¨FL¼\x1E\x06 &d]¡µ "
b"yÙsŸã¼H\x7F ¨\x01 †—3#,N "
b"yù*\x07 \x1D J\x15 ©¬6Qæ\x02 4ž "
b"zMÚFøßNu¬¦Lø' \x05 N "
b"zcsÊì[F òëßP¹9²░ "
b"zŸHx«\x17 G9“!-Z\f à<· "
b"{\x0E ŸzÔúC_»ªßX\x1C P\x18 H "
b"{uwH\x18 %Kš¾EÆcœKî› "
b"{†€4K:O\x7F ™Ú\x17 nŸ•\x11 ' "
b"|[\x11 °¼œFbŸY/í0\x16 ˆ "
b"|mõwï5MI³ôÆ\x11 ,ä…7 "
b"|¼\\x00 H\x02 H┴üù\e ±║E└; "
b"|ÁæºGüK讋i#˜~ª "
b"}5\x02 +·ÉEykªœèBŒ’ "
b"}S\x10 bM║N ¥ÅvÙ─*½\x1A "
b"}° ›´\t KÎ’'7FAq¥– "
b"~\x05 ©ŠÓQB2šÙðÿ0]ƒ• "
b"~WYlôšF\v º\f Ðý”Ü×ä "
b"~så\x12 Q\x13 E/–òÎèÿ%>‹ "
b"~àŸ>†uMV“\x10 ˆuî\x1C [ "
b"\x7F Mlå$RIáâïr┌Ńþ& "
b"\x7F U!ÆvLL^¸\x05 ²Ij¸ƒ( "
b"\x7F gÈjJ³H\•ž$Ædö½ "
b"\x7F üâå(¤B2╝\x1A ║UíèÉà "
b"\x7F ¢+§ÝýC\x03 ƒØd]àl\x10 þ "
b"\x7F Ô6\x1E ÄYL;ù█ì¢9ó¸_ "
b"€\x15 U1^`F\x08 Ÿ+æ…îõ\x06 € "
b"€\x1F þò—øD¨PßÓÿ<ô´ "
b"€0\x08 o÷D†‘‡³Çín¦Ó "
b"Ç0û┼µ,D▓ìzÞ÷6Þ\v ß "
b"€8(¤\x02 ªF\x17 ˆÎ¹ñ\x16 á%± "
b"Ç@\x13 <«\x04 M>×ϱÙì\f\x1F c "
b"€Ev דLù¿bà\x12 'ÁoT "
b"€j\x17 ‘€îEÞ¤xH\x19\x1E ù2D "
b"€l\x12\x16 ïÓEþ¤XW\x08 £—…™ "
b"üf`\x15\x19 ;G$Ø┌(Çü▒9$ "
b"ü~Í\x06 ÒÓM║äZP:8Þ╩à "
b"‚0RKˆ"I\x1E ¬—]9»V~w "
b"ƒSBLj²FïxØõØk\x0E Q "
b"ƒp]Ì\x0E ^Bd€-•pÀ™[× "
b"ƒìß\x19\x15 ÃC/¹l7(ö?mŽ "
b"„\x10 Ë\x1D\x13 ßD\x06 °“¦/-ö¤Ÿ "
b"ädº:▄\x1E LeÉ\x10 ┤│Ó╔79 "
b"äy├ôÞ\x7F KuØ▄Ì\x18 c▓{§ "
b"„|ê‰>ÄA,¬¤ç!uâ-ñ "
b"äü9µÉ<Lpâ"7\x1F sØ|° "
b"„Õh\x1F\x05 ;M\x11 °BŸµNk0# "
b"„à¡E ÅO\x08 ¿\x18\x13 0ß½™Ê "
b"„üZ`$\x1A C+žfЏk\Äë "
b"àR▄1¨▓NñûЪ¥¬Ìì× "
b"…aÐb£‡N6¥øÁõýè\x06 û "
b"""
…Ëkâ¹øL¨™ý•Õ»¾\n
c
"""
b"…ýÄ\x1F 4HJ§’\cçhÈÃò "
b"†HøOÁóJЧ‚I\v ›\x07 tƒ "
b"†k¹%\x1A i@÷´R!%\x16\x13 9p "
b"†Á[5bBKƒ¾\x12 "%áïË "
b"‡VŠ+3¡CtŸó8É\x15 az( "
b"‡bº:\t +O\x18 ©,,“B°¬Ÿ "
b"çd\x1E ÂüÈA\x7F Á‗%Æ\x13\x0E ÛD "
b"‡†Û’\v 3H"®‰Á\x04 (Þd¸ "
b"‡²ðg±gDe³™PXíÍ[ "
b"ˆ$.lS-Gœ—æy~ÍWùA "
b"ˆœc§ù[MÚ˜³Ð¡\x04 Ù¶¿ "
b"ê×>v¤{N¸üݧzL▓\x01 ¬ "
b"ˆ \x03 —"~O»–\r •ÂË`\Æ "
b"ˆÇÿ¡MÂIfŠúF/¼Ö4Å "
b"êÊ\x1E <Þ0AfØ÷\f Ò¾|╝¶ "
b"‰k©j¬iKVšƒ¿Y\x12 ‡©# "
b"ëo1hØ~Jß╣=6üTÀ ┼ "
b"‰ŒÜ©®CMb¨$\x1D š¤¹û% "
b"Š*t\x02 ú:JcŒCƒ@%S\t Z "
b"èeÉ┌ÌÑH,ø9\x11\x17 £äí┘ "
b"бØ{Ž\x1E Iá—ñ\r È4^P— "
b"ï*■]─éDØÉ░:ðKîB "
b"ï[ Áp└A*ÁìÇ»ò«ƒ\x05 "
b"ïÅJ%ÒnE¥ü\x02 \ú5mf° "
b"ïôcÓéÞN╝▒Åål\x18 j8Ä "
b"ï┤æ?_▒Nn║Ë\x11 ØY▓g "
b"""
‹ËÎó\x08\v E!¤?ÔŪz\n
4
"""
b"‹ß!hü·Ou¾»)Hhå16 "
b"Œ~\x19\f "vDÝÈŽø%”B9 "
b"ì:!ôà¼KTØe à¾lk\x0F "
b"ìé\x7F Ã╣ÏCV╝\x02 ç>ñä\x15 F "
b"ì©\x03 \t ñ@█éª╚»Aûèñ "
b"Ž\x01 ¶ì\x0E ¯J$‘0<,Ï.\x12\x13 "
b"Ž\x11 »UÕ\x16 Oä´¹Ö¹Šür· "
b"Ž0d\x1C 7·CI‚Xn˜\x08 S%‹ "
b"ÄFô\x08 █rL─ì▓õ!M╣±═ "
b"""
ÄF¢e6ÓHج³!dgk\n
Ð
"""
b"ŽHƧf\x03 OÏ£\x1E õ\!Âll "
b"Äv\e a0E\x1A Å;§býEQ§ "
b"ŽÑ¼Â;šD‹Ÿ=ß23þ“C "
b"Äý\x18 Õ\t\x00 Eæï¾ê"¿Éò¾ "
b"Åi╠\x12 u8BNæ;!çw─áú "
b"Åntï╣\x13 FÉó┴`\r \f Ó1x "
b"Å£D╔®»H:Ñ\x1F\x07 ®ø‗\x0F d "
b"Å¢$/á▓A\x1A ┐\x16 Ùµ╔|T╦ "
b"Åð└\x0F ■\e B\x14 ╝=aØ´pà/ "
b"Å▄H╗U(C°Üh×?ΫA┼ "
b"É\r µ┘W`K¡â´d\x00 qRWJ "
b"É\x12 p ╗\x14 A\x0F êMÄ'╝Í¢¿ "
b"É&▒I\x06 ?L\x1A ÿZü▓ó▒S. "
b"Éíæ\x1F `XKb¥r└╝ófÏ? "
b"ÉÏþiÍ─@<ê\x11 ö╦G"ný "
b"É█ÄW.ÛNúû!TW■¢É╩ "
b"‘Ž=“\f zL–‘\x12 Ô#æë† "
b"’\x19 A\x01 Q¸Dl·Sè]ÅmB> "
b"ÆT2;ì\f Ey¿£®\x13 Y7▓┐ "
b"’j¯³\x07 \Ll£6=ª\x1D Âjd "
b"’toÝ+ÅO\x02 ·ØÊMâ0\x14\x0E "
b"ÆÂ├Æ\t ┐LIì%\r \x17 Xð\x18 ) "
b"ÆÌìè³\x03 I█òå\x14 ┘ÉSþë "
b"“\x1A 5&0"CEš†Õ\x19 â\x1E ˜) "
b"ôfí\x1A ╝ÍG╩ÄÉ▒`\x05 ╬Â■ "
b"ô»¡Õ\x03 ùK÷üPç\ ÿ© "
b"“Ï¢\x10 {\x18 O£˜’(bw\v % "
b"ö\x16 l╬ùºM┼«ƒn┼IüX9 "
b"”\!ø’\f B$§…yàDó´™ "
b"”wBÄ~SE\x08 ¤f{eÕ¡\x06 z "
b"”™\x0F q³CLõ¥{d3Ÿôê> "
b"”¨@\x13 §ÊBfˆ^ŠgÀ¶®t "
b"”ßî\x02 m2Båº*x C²ßƒ "
b"•2Ž71ùNý€C3lÔâuê "
b"•>\x02 H{åJ0–B2A\x18 ¬å\t "
b"•>MZõ†E2¡fCTUflÆ "
b"•Ê©{ÍøLeƒˆ8\x0E Õ’,“ "
b"""
•ÙN\f \n
$A0—/ipñnï\x11
"""
b"–âÌë<KC£„=\x7F\x12 §\x00 õ\x00 "
b"—09wìåM‚ž§™Æ;*m[ "
b"—O$&[hI5£¦Ê7º+\x01 × "
b"—XÖ=Ç£N’ƒ¸ü°•\x19 k% "
b"ùZ_\x7F Ú\x1A M╔©Âgê╬ÉÂ\v "
b"—dyÐÛSE…‡J0€ÙòH³ "
b"—fPRžñKNžÒ\x06 ¨\x19 >íE "
b"—›†YžÉ@0‘ìá9ÐØ\x07 È "
b"—æ0y<ÅDë²½gn²z!è "
b"˜W2‡NEH1¹\v ✙ûÎè "
b"˜ŒØËc\e L\x08 ºÕÏh¯¾Ãœ "
b"˜–\x03\x14 \r B¬Ž\x03 >•E‹7… "
b"˜šóÓÏVD¯œ\f |ï„ëE "
b"˜¤iwËí@=Žê¬|Ý\x19\x01 I "
b"˜½ÿ’^ŸNÀ’ê‘î÷6¹ç "
b"˜Ý\x1E à±$G%‘˜3Õ¡\x10 ÙX "
b"™\x08 E€¯wE˜½·•ˆ\x18 )BE "
b"™OmVjABUœ\x14 |\x7F ݯ\x15 ½ "
b"™R–\x00 ¹ÿHdzYé˜\x18 «M¯ "
b"™cËeš¥Ct¥¨²{ï\x1F ¤\x16 "
b"™Ö¡fšªGé¨gÉ\x12 ¬ïo4 "
b"™ä\t •\v \Mú¨ ¼çde#V "
b"™öp\x06\x13 TD\x19 ¯ _³u\x01 j§ "
b"™üIï²óE°»bÙ?\x1F c\x02 — "
b"Ü\e %ìÓÿCàûÓÈQ╝\v\e ─ "
b"šFO=6<L³‚\x16 ^œ»LSà "
b"ÜP¿J▒┘Dø¼ı®ý▒\x1F àØ "
b"ÜS1)ü7C└ûìî\e ª\x1D\e ^ "
b"šdEsf\x0F N<´[Î%ÿ2\x1E\x1D "
b"š¡M猻@ »CLáú“éH "
b"Üó6GæBIØ×\x00 ▓ÃÑ\v *┴ "
b"šðÍ\x11 ÒkK,œõizš„\x1F w "
b"ø\x05 °ÄÛ╣H¶üäËZï§à¯ "
b"ø\x15 ²«_┬F\x18 ëk{ß`\x06 Å┌ "
b"""
ø\x1F ·\x06 ╣AE§Å\n
p╝-¡\x11\x1F
"""
b"""
›c~·³¶E\n
¬»Ç÷L0Ì\x1A
"""
b"ø▒/cÅFJ\x10 ¼m,e\r \x15 $¯ "
b"›¶þÙ‚–@ž¬\x14 W‘zAuu "
b"›½Û¾Ù½G†¨Wg2\x06 ŽIe "
b"›Â³Øª\x18 Hž‰î*øVž\x01 { "
b"œ\x07 ØŽ-£J<—M¥\x0F 7\x10 %! "
b"£(=ÉèM╔ëò\█└{ Ó "
b"£12╚¶\x19 N*ò±ü*(╔&~ "
b"œ©¦ÕŠPJŽ™Æ\x12 ¯«\x14 zÎ "
b"""
œÊƱ\x19 ÅNU£\n
5YyžìM
"""
b"£÷\x02 cõ&C▒Å\x1F eÊnßþ\x12 "
b"Ø/¤¾¨BN\ñê=æ÷_˰ "
b"Ø~vM¸²Hóª¡Cº▀K!\x1F "
b"×>ù,SúK╩ÄìNâÖ/N└ "
b"ž„ç·ó,IÔ‘G1\x1C K\x1D Ü\x0E "
b"žº‰%‹.N\x0F ¼\x02 Ó7§{ð| "
b"×°ÙêÈOcü\x11\x15 8\x03 Ø╬¢ "
b"ƒM_SÀIN▓ûÅP°ÿ▀¼µ "
b"Ÿ\x02 W|\x14 KJ¼ÒÔa\dVa "
b" \x18 :+ˆÒL\x10 ‰h>)žðå "
b"á4lÖPìF7ä£┴é╝LÉó "
b" 4šÅ`M‡†¦\x00 Èÿr{{ "
b" IŠ|\x05\x14 I\x1D ¦lMÁu\x05 ;· "
b" _eξˆM¹ ¨Ñ½ÉœeŠ "
b"áè\\x18 ÆØ@÷▒ë;%ÈÐ\x14 À "
b" ¶B|÷îD÷¹\x1A ƒ©ÿÙ˜\x7F "
b"""
ØÐ\x16 E3EM·\n
ÝKæ/¶I
"""
b"""
¡f\n
$ó‚F—©\x0F ¥ˆï\t Ú\x14
"""
b"¡lõ”çèA%¿UZõPÒò˜ "
b"¡r1?ÄÇOœ†\x00 šAþÃ}X "
b"¡š.\r óIMI´’ „xVnÙ "
b"í├òâ.#Ofñ\x02 HÅd°ð, "
b"¡Èƹ´ØFóе\x17 qxHJ\x19 "
b"óeýÊʳO¢êúiìü¥<õ "
b"ól\x00 úõäBßê÷rÓ5ÓÅ "
b"£aµö\x06 ÎFz‹Ruž\e 9Aì "
b"£†oý@\D\x03 ·'YS~ä$4 "
b"£š|’À½GÀ™pÓ˜œþÒÊ "
b"£¨N“¹ŒOÛ¨¯nOÛ\x11 ÷¬ "
b"¤‰B¹\x1E\x07 BQ›Ê{\x16 fzùŽ "
b"ñóìÃ▄8IpÂÅ\x19 ¨&A\v b "
b"¤ºu9\x02 fF7”ÛáE\x00 &\x07 f "
b"¤øŠß\x12\x1F HÉŸÓë)à›\x1F ñ "
b"Ñ+═UØ┘KùùÜ{âµ`HÉ "
b"¥•°›\x05 àIw»ÂÛÑÂ6«) "
b"ÑØ¦ÂMPCõ░\x1A u\v ¨Gó² "
b"¥Þü’âbMÏ©ü…Å[x "
b"¥ìje>ëM›Ž9ýeXG÷y "
b"¦RV}=PAÜ£Ñ;B‰îü\n "
b"¦t7(!•GÕšâ5\x19 ¶þwâ "
b"¦zà\x0F 5\x7F LR‹ø±z\x08 Þ*\x1E "
b"ª░p\x13 ÒìB╣Ö\t 3±╩»\x08 N "
b"ºG÷\x01 ü┼AµüSP\r ~¾µÓ "
b"§“?[2óJ\x1C ŒÇ/iáŸàÁ "
b"§¨e’|^D\x7F œ\x7F Š¦Ù¾éÈ "
b"""
º¡jûeÛ@3¿Õß\x07 \n
ìÙD
"""
b"º┬6¸YnFmª╩Á┘2'æì "
b"§Ê\r ©à E\x06 ¥¤C¬4Œ\9 "
b"¨\e Ê%4ÿG[¢Ï\x04 “s\x0E\x01 – "
b"¨<„r?lI;œ¿\x00 ƒ Ãú– "
b"¿É«Ê·A\x03 áÿ\x06 \Ë┴é "
b"¿Î\x12\x10 wD¢Ü┌ØE"~zµ "
b"©N\x11 p7©N!…PøèäT÷- "
b"©k4ÛH#N˜˜ËŽŠd^Y¬ "
b"®ó«▒█\x13 M/¿Ùɱ9ú©\x01 "
b"""
ªY|¥èÆ@ô¯C²\n
bL<\x04
"""
b"ªœ—\x15\x01 #I߀·¡.”U4÷ "
b"ªÙ\x14 ”õCC8¸î\f Ásv\r © "
b"¬■×█¾õBÉø3*ôy\x1D rÈ "
b"«'‡Œ…‰G¿›ó÷3y\x10 Q\r "
b"«T\x11 Çû‡C̲Ý\x18 ;GÇ\x15 û "
b"½┤àÔ:lBSî-þ²-ØC) "
b"""
½¢x4¼\x1D HqÅs,¯Ùñ\n
\x14
"""
b"«Ëf–»aB¶©;=I†LËå "
b"¬\x1F\x11 Ó\x17 ÓH~–â06·&MÙ "
b"""
¬\•1€\e J`±9€Ž\f ¿\n
\x1E
"""
b"¬]YTÅoCT‹üNAD° "
b"¬–¡ó\x1C WOÈšØ1j¶3À& "
b"¬›q\x19 †ŒLÿ† IÙp6ñn "
b"¬ºß®?\x0E Dð´KÀ\e hàˆ\x1A "
b"¬ýu†Ð(Hñ¬€\x1F Gvï¤\x14 "
b"¬ýã^ö©O?™(è\x02 1\r CÖ "
b" ³^ì¬CÊŠÂðÌ>\x06 Ì> "
b"8Fà\f èGà€¬{Óé\x12 ݱ "
b"T{ÝúÎG¡¬ÂWê¨z‘Ú "
b"sZñëûB\x1E “ä\x08 °sĨš "
b"š\L\x13\x03 A½º4^ʉQ\x10  "
b"ÿôÛ)pEc®1С\x1A –ô” "
b"®ExÞk\x7F E%¼²J ãóÜž "
b"®Yµ»RŸM¸‰Ì`º¸(¥² "
b"®aÚ“Ñ,BïŽ>%+N¥[O "
b"«Ø├^"!GЫ|®¢\x01 )&t "
b"®Ï\x04 ±¡ÈJC…éæ\F\x15 d< "
b"®ä¦yz%B–ºÉãÿü"˜] "
b"¯\x11 ´|$FA\x03 ˆZ«[©À®| "
b"¯\x12 ?¨cÊD\x01 ¬1Y¥š-ó¬ "
b"¯iSQ¥kIµ‚P)%TÅÿ² "
b"»iÉ\x0E ªÒCd╣é|Üð<─▄ "
b"»ÉƒÏvÑHçô½V©▄~¾Z "
b"»×\x19 q^\x03 NöÁ¢ØÂ©ú▒2 "
b"""
¯·ËÇæ\x02 C\n
¢U"\x17 "ý+\x10
"""
b"""
░\x14 æ?IîM\n
åO┬Ô±\x1D pÉ
"""
b"°\x16 –P íEÖ‡uFÐ߯Ќ "
b"▒ÅqÓ{áL1àì2R+\x15 /┌ "
b"±Ï£ÖñòCëˆq\!æhÍ\x1A "
b"²5W\x11 ÜÜHتÚÇá\x03\t €\f "
b"²>~T?ÖJ\x10 —Dšn\x1C n>ƒ "
b"²’{Ÿ,FAǾ\x1D ®ïlæ\x0F 6 "
b"²Ó‰¿\f g@³¯ÁE²ìòXk "
b"▓Í«C'\x00 Dõƒ¹.╠TõÅÜ "
b"³Œ!ìy‘A‡¶…Ø…\e áy@ "
b"³ºõÛñßD§»\x1C æÞ‚—§ž "
b"´\x06 0ÝW)A•žãMu<µp\x0F "
b"´3?\x7F\x15\x07 @\x11 žé¸Çp]I” "
b"´;‚ZdÆNq¨\x18\x05 ؃£åç "
b"´MtšàfOP§6\x01 ²œxQ< "
b"""
´†àÂGÐAí„Ìã\n
\f âˆ\x1F
"""
b"µ\x14 ]k=_AÓ°\x10 _/ô\x18 nŠ "
b"µb«\x08\t ¿Eâ›CzqÎ?Ù "
b"µ”\îßœJ\x1F ²/F<®E¶æ "
b"µÞåëàÑN\x16 ¢FÛSk\x06 žW "
b"µß©åBìOì¿=Í–‹ù›\x13 "
b"µùú²{½G”ŒËÕê»"< "
b"Â\x0E ¹Z[ÀI$▓Îì7u<I\x1D "
b"¶;\x16 -VUO¦Ÿôy$‚\x04 R "
b"Âij\x7F YXBÿ×█¦B\x18 Kؾ "
b"""
ÂŪ┴ú\n
OÝåÿf»|?ó\x11
"""
b"ÂØ Xà│LÌ│eÏÞd░X├ "
b"¶ÞÏ%€\x15 DH›¯þ\x10 ¶•\x00 ¿ "
b"À\t Ä·ËÿH ö¾\x07 ØóL\v N "
b"·£´Ó\·Lu¦ó”v9‘DÚ "
b"¸\x11 ´fÔÂLY¨6%þ0é%” "
b"©T¢Ã®ýIÞ«pÉñ┐»KÌ "
b"©ì2uuþMQ▓CX═\x04 ╠%É "
b"""
¸ë\x17 ›\x10 TDoºvZ\x05 \n
\x08 fº
"""
b"¹\x05 4\x04 ñ…GÊ€5kÍZ\x05 n\r "
b"¹b\x15 MïNEWº\t â\x1A\x1C éèÐ "
b"¹ˆ„ã „B.„ªY…\x15 uÇZ "
b"¹Ñ<I€+@¸½š4èÊ0uè "
b"ºA8Î\x12 öLã¦Mä:Q\r ©6 "
b"║Ïè─\x03 ÌCq┤ìµ\x04 ¼Qá\e "
b"║ ─└ªEOÈѹ\v à#^É« "
b"╗\x01\x16 ¡╣åHØæ0ëC$¸Ñ "
b"»\r Ÿc:ÍK”¨Ì±\x19\x1A ﹃ "
b"»-É«ÀùJ\x1F ®q\x07 ¿a‚[\x1F "
b"╗ëì└}®A÷ƒDx┌\x0F ÀÚÝ "
b"╗ÖÅB-½D>½Â╩┴d\f µ┬ "
b"¼P8³\x1A šGf©øüÜ\e ¾Y» "
b"½ sžáxN?µ1‘öž•Ý• "
b"½Õ\x02\x08 ;\LýŽû\x11 VÖVº\x15 "
b"¢Îmàç░OCØñ¨aö§Yñ "
b"¥4TênmB²¼ÉV,w\x0F ▄v "
b"¾©»dª¡CJ»ÀíËbLe\x18 "
b"┐ ]AõúIì®Ö¦"╬┘|Ù "
b"¿5ž\x13 CÈI.‡JjIY,#³ "
b"┴YÂØY¨Bõ▒F: î¤╦+ "
b"Á”90\f Ò@\x07 ˜Bÿ¨\x14 Cžr "
b"Áþ\x06 3å$FX®$^\x1A\x11 ¹ø‡ "
b"Â\x0F ”8fçM\x1E ®[?\x08 8º`½ "
b"┬>Ê\x16 i¿DØèe\x0F ╦┴Yÿ "
b"""
┬r░Ò\n
]Jõàõ░\x04 U>Ém
"""
b"Âx=8WŸC-•ò\x1C îR5ÕW "
b"ÂÒn;©ÈIk”OÁ—kM\x15 • "
b"Ã<öd£¤Mtª\x7F ¯9X\x1F ¸\x7F "
b"ÃÖéh¥Hù¤þÀ\x05 ³#’\t "
b"Ãäñ\x12 \r BF´£\x16 Ÿ¶ê›7T "
b"Ä~\x17 %‰P@à—ûaßið¯+ "
b"─¯Å▀ìE\x1D ▓O`ÓäÂı┤ "
b"┼)îÉ!■Aüîlë#+\x16 ƒ´ "
b"ŇT\x11 IJOô‹ç–A"¡\v U "
b"ž^?mÆH\x13 ¬K‹\x18 jH¥· "
b"Åȳ³¢ÃC\x1D ´Á|pWqu‚ "
b"Åø„†\x1F ‘C\t §h7®\x1C û2Ë "
b"ãMäp{ J ú\x1D 3 Ëüê0 "
b"ÆTÛè\x06 @I¢£wïi«eÖ3 "
b"Ã#hõ-ZBTü\x11 iP«BÞª "
b"ÇD9\x17\x1D oHŠ•‘o*§ðok "
b"Ç“çÉytN´¡ßŸ\x06 ”i9\x05 "
b"Ç©Æ9>HïœèçËá<æõ "
b"ÇãœÐ_\x14 M\x01 µ“\x00 iìJìß "
b"È~!§vuM{¢‘ؘ¼ñ+ß "
b"╚æ┌ÅÔfG\x1A ¿64╦[Cg$ "
b"È’\f 9ÃìFºš¿*’\x00 ÖdÙ "
b"ÈòÂø'ÈGߟøQHÄ\x18 íæ "
b"Èþðnö\x14 Nøµ\t …Uƒp•Î "
b"ÉUÏ!=1J¼‡”…΂Ç_; "
b"╔£¿Ø«²C ┤±\x05\x02 Ùº─\ "
b"Ê1"ß \x0E K\x10 “IŸË¼˜i; "
b"ÊYœ\x12 ë\x17 L%‡×5ã\x11 .w„ "
b"Ê«5ºí\t CxˆcÙ¬‘j`Á "
b"ÊÔ ÛŠ§C¢¼H\x14\x05\x15 Ñ©– "
b"ÊÝ`/d„L\x7F ¥ÆÆ†¼Ê“ "
b"ÊêkØ#mEˆ£óFÃ;ìµ\x05 "
b"Ë\x1E +¾«B/—WÖ;ÔŠæ‡ "
b"╦cAÉÒfO~î²R▒ôtOÿ "
b"Ëuø¸äqHs˜Ôø0Û‹îº "
b"╦vú┴P©JBïØ'{ÆAd┬ "
b"╦æ┼bØé@d¢Tq ù¤Z¼ "
b"╦║ÿa\x08\x1F @ÉÁb¸Ã─Ø▒A "
b"ËÈ#)å\x14 MVŽ$\x00 [&\x16 © "
b"ËÒN›B8Fѵ\x10 |\x04 ž\x08 -Ï "
b"╦Óv`\x00 ïF=╝¢\x12 ì╝\n LÓ "
b"Ëè$'l–Gâ½wSâ4W9È "
b"""
╠\n
WOØ·N¤▓▀#Mº\x16 ª«
"""
b"Ì2Nc¶€I®«.ݦ]Ì¥* "
b"Ìh¸w$ŒG\t ‚ŽìEþξ' "
b"Ì|r[¦ÀFœ¬ÎÕ~|\x12 ¢ "
b"╠\x7F\x03 m¶HYéØj@æ½■\e "
b"Ìïd€éŒN´„”¼SÆëL "
b"Í.Ë\e »\HH‚¶N•ø½Ü\ "
b"ÍACxÞgLÜ‹S˜gŒ\x16 žû "
b"ÍYª‘gýD3¶; ¢=¾"æ "
b"ÍŽ’}6ñNk‡¡È¸ªô}¢ "
b"═┴tf}┤HØäx░¸`fªä "
b"Í÷ˆ\x1E áÉO€œ¢w\x18 #p5É "
b"Î\x1F -¼:\x7F B½´‰Mc´ì\x12 "
b"Î+.\x10 ÎÁ@b¨Éxûjõ#¡ "
b"ÎÍÉ‚\x17 ‚F}œN\x11 §Ù\f Z\e "
b"ÎþžÛºÇI»“ÖE•d\x18 p+ "
b"¤9qRå‗I8ÉöëmÏ█ï+ "
b"ÏDNë WF—‚KŒù\x00 3ŸÊ "
b"Ï\ ÆÎ‰M§²eî—l B¹ "
b"ÏkõbÈ>D]¥gnÉÏ)æo "
b"Ï‚”ðïqH=›ä\x0F Ÿ!lÛý "
b"Ï»-Xa[F´–ë›þÜffå "
b"¤ÚÍü╬ÜB▓║Êý▓Õ\x08 ÐÑ "
b"¤§î\x04 skD\x0E òþqºØ¬\x0F ½ "
b"Ð+\x04 c:îN ®P\x17 E&”‘\x1C "
b"Ð-Û^h‚MÀ·dЧ0›YË "
b"Ð>“¶å!A–œT,¨\x1C ¡¨~ "
b"ÐBV\e aöH´”q¶\x1E §Gyc "
b"в\x00 Ç`ÿ@º›7\x05\f -æ\x06 2 "
b"Ðþ†ñI©Fߘo¸E \v W\x14 "
b"ÑMñwÌÀDïžìðÙ¼\x15 8§ "
b"Ðpg·§ºMVº\x0F X'Å╬Ã, "
b"УìrÖÚI█ƒKy\x19 ┬└┤ "
b"Ñæ3Lj>AÑ»\x02\x12 6‹bU§ "
b"Ò#w¹«¿O&²¸M׊ây• "
]
SELECT
`property_group_option` . `id` as `property_group_option.id` ,
`property_group_option` . `property_group_id` as `property_group_option.groupId` ,
`property_group_option` . `color_hex_code` as `property_group_option.colorHexCode` ,
`property_group_option` . `media_id` as `property_group_option.mediaId` ,
`property_group_option` . `created_at` as `property_group_option.createdAt` ,
`property_group_option` . `updated_at` as `property_group_option.updatedAt` ,
`property_group_option.group` . `id` as `property_group_option.group.id` ,
`property_group_option.group` . `display_type` as `property_group_option.group.displayType` ,
`property_group_option.group` . `sorting_type` as `property_group_option.group.sortingType` ,
`property_group_option.group` . `filterable` as `property_group_option.group.filterable` ,
`property_group_option.group` . `visible_on_product_detail_page` as `property_group_option.group.visibleOnProductDetailPage` ,
`property_group_option.group` . `created_at` as `property_group_option.group.createdAt` ,
`property_group_option.group` . `updated_at` as `property_group_option.group.updatedAt` ,
`property_group_option.group.translation.name` ,
`property_group_option.group.translation.name` as `property_group_option.group.name` ,
`property_group_option.group.translation.description` ,
`property_group_option.group.translation.description` as `property_group_option.group.description` ,
`property_group_option.group.translation.position` ,
`property_group_option.group.translation.position` as `property_group_option.group.position` ,
`property_group_option.group.translation.customFields` ,
`property_group_option.group.translation.customFields` as `property_group_option.group.customFields` ,
`property_group_option.media` . `id` as `property_group_option.media.id` ,
`property_group_option.media` . `user_id` as `property_group_option.media.userId` ,
`property_group_option.media` . `media_folder_id` as `property_group_option.media.mediaFolderId` ,
`property_group_option.media` . `mime_type` as `property_group_option.media.mimeType` ,
`property_group_option.media` . `file_extension` as `property_group_option.media.fileExtension` ,
`property_group_option.media` . `uploaded_at` as `property_group_option.media.uploadedAt` ,
`property_group_option.media` . `file_name` as `property_group_option.media.fileName` ,
`property_group_option.media` . `file_size` as `property_group_option.media.fileSize` ,
`property_group_option.media` . `media_type` as `property_group_option.media.mediaTypeRaw` ,
`property_group_option.media` . `meta_data` as `property_group_option.media.metaData` ,
`property_group_option.media` . `config` as `property_group_option.media.config` ,
`property_group_option.media` . `path` as `property_group_option.media.path` ,
`property_group_option.media` . `private` as `property_group_option.media.private` ,
`property_group_option.media` . `thumbnails_ro` as `property_group_option.media.thumbnailsRo` ,
`property_group_option.media` . `file_hash` as `property_group_option.media.fileHash` ,
`property_group_option.media` . `created_at` as `property_group_option.media.createdAt` ,
`property_group_option.media` . `updated_at` as `property_group_option.media.updatedAt` ,
`property_group_option.media.translation.title` ,
`property_group_option.media.translation.title` as `property_group_option.media.title` ,
`property_group_option.media.translation.alt` ,
`property_group_option.media.translation.alt` as `property_group_option.media.alt` ,
`property_group_option.media.translation.customFields` ,
`property_group_option.media.translation.customFields` as `property_group_option.media.customFields` ,
`property_group_option.translation.name` ,
`property_group_option.translation.name` as `property_group_option.name` ,
`property_group_option.translation.position` ,
`property_group_option.translation.position` as `property_group_option.position` ,
`property_group_option.translation.customFields` ,
`property_group_option.translation.customFields` as `property_group_option.customFields`
FROM
`property_group_option`
LEFT JOIN `property_group` `property_group_option.group` ON `property_group_option` . `property_group_id` = `property_group_option.group` . `id`
LEFT JOIN `media` `property_group_option.media` ON `property_group_option` . `media_id` = `property_group_option.media` . `id`
LEFT JOIN (
SELECT
`property_group_option.translation` . `property_group_option_id` ,
`property_group_option.translation` . `name` as `property_group_option.translation.name` ,
`property_group_option.translation` . `position` as `property_group_option.translation.position` ,
`property_group_option.translation` . `custom_fields` as `property_group_option.translation.customFields`
FROM
`property_group_option_translation` `property_group_option.translation`
WHERE
`property_group_option.translation` . `language_id` = ?
) `property_group_option.property_group_option_translation` ON `property_group_option.property_group_option_translation` . `property_group_option_id` = `property_group_option` . `id`
LEFT JOIN (
SELECT
`property_group_option.group.translation` . `property_group_id` ,
`property_group_option.group.translation` . `name` as `property_group_option.group.translation.name` ,
`property_group_option.group.translation` . `description` as `property_group_option.group.translation.description` ,
`property_group_option.group.translation` . `position` as `property_group_option.group.translation.position` ,
`property_group_option.group.translation` . `custom_fields` as `property_group_option.group.translation.customFields`
FROM
`property_group_translation` `property_group_option.group.translation`
WHERE
`property_group_option.group.translation` . `language_id` = ?
) `property_group_option.group.property_group_translation` ON `property_group_option.group.property_group_translation` . `property_group_id` = `property_group_option.group` . `id`
LEFT JOIN (
SELECT
`property_group_option.media.translation` . `media_id` ,
`property_group_option.media.translation` . `alt` as `property_group_option.media.translation.alt` ,
`property_group_option.media.translation` . `title` as `property_group_option.media.translation.title` ,
`property_group_option.media.translation` . `custom_fields` as `property_group_option.media.translation.customFields`
FROM
`media_translation` `property_group_option.media.translation`
WHERE
`property_group_option.media.translation` . `language_id` = ?
) `property_group_option.media.media_translation` ON `property_group_option.media.media_translation` . `media_id` = `property_group_option.media` . `id`
WHERE
`property_group_option` . `id` IN (
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
?
)
Copy
SELECT `property_group_option` . `id` as `property_group_option.id` , `property_group_option` . `property_group_id` as `property_group_option.groupId` , `property_group_option` . `color_hex_code` as `property_group_option.colorHexCode` , `property_group_option` . `media_id` as `property_group_option.mediaId` , `property_group_option` . `created_at` as `property_group_option.createdAt` , `property_group_option` . `updated_at` as `property_group_option.updatedAt` , `property_group_option.group` . `id` as `property_group_option.group.id` , `property_group_option.group` . `display_type` as `property_group_option.group.displayType` , `property_group_option.group` . `sorting_type` as `property_group_option.group.sortingType` , `property_group_option.group` . `filterable` as `property_group_option.group.filterable` , `property_group_option.group` . `visible_on_product_detail_page` as `property_group_option.group.visibleOnProductDetailPage` , `property_group_option.group` . `created_at` as `property_group_option.group.createdAt` , `property_group_option.group` . `updated_at` as `property_group_option.group.updatedAt` , `property_group_option.group.translation.name` , `property_group_option.group.translation.name` as `property_group_option.group.name` , `property_group_option.group.translation.description` , `property_group_option.group.translation.description` as `property_group_option.group.description` , `property_group_option.group.translation.position` , `property_group_option.group.translation.position` as `property_group_option.group.position` , `property_group_option.group.translation.customFields` , `property_group_option.group.translation.customFields` as `property_group_option.group.customFields` , `property_group_option.media` . `id` as `property_group_option.media.id` , `property_group_option.media` . `user_id` as `property_group_option.media.userId` , `property_group_option.media` . `media_folder_id` as `property_group_option.media.mediaFolderId` , `property_group_option.media` . `mime_type` as `property_group_option.media.mimeType` , `property_group_option.media` . `file_extension` as `property_group_option.media.fileExtension` , `property_group_option.media` . `uploaded_at` as `property_group_option.media.uploadedAt` , `property_group_option.media` . `file_name` as `property_group_option.media.fileName` , `property_group_option.media` . `file_size` as `property_group_option.media.fileSize` , `property_group_option.media` . `media_type` as `property_group_option.media.mediaTypeRaw` , `property_group_option.media` . `meta_data` as `property_group_option.media.metaData` , `property_group_option.media` . `config` as `property_group_option.media.config` , `property_group_option.media` . `path` as `property_group_option.media.path` , `property_group_option.media` . `private` as `property_group_option.media.private` , `property_group_option.media` . `thumbnails_ro` as `property_group_option.media.thumbnailsRo` , `property_group_option.media` . `file_hash` as `property_group_option.media.fileHash` , `property_group_option.media` . `created_at` as `property_group_option.media.createdAt` , `property_group_option.media` . `updated_at` as `property_group_option.media.updatedAt` , `property_group_option.media.translation.title` , `property_group_option.media.translation.title` as `property_group_option.media.title` , `property_group_option.media.translation.alt` , `property_group_option.media.translation.alt` as `property_group_option.media.alt` , `property_group_option.media.translation.customFields` , `property_group_option.media.translation.customFields` as `property_group_option.media.customFields` , `property_group_option.translation.name` , `property_group_option.translation.name` as `property_group_option.name` , `property_group_option.translation.position` , `property_group_option.translation.position` as `property_group_option.position` , `property_group_option.translation.customFields` , `property_group_option.translation.customFields` as `property_group_option.customFields` FROM `property_group_option` LEFT JOIN `property_group` `property_group_option.group` ON `property_group_option` . `property_group_id` = `property_group_option.group` . `id` LEFT JOIN `media` `property_group_option.media` ON `property_group_option` . `media_id` = `property_group_option.media` . `id` LEFT JOIN (SELECT `property_group_option.translation` . `property_group_option_id` , `property_group_option.translation` . `name` as `property_group_option.translation.name` , `property_group_option.translation` . `position` as `property_group_option.translation.position` , `property_group_option.translation` . `custom_fields` as `property_group_option.translation.customFields` FROM `property_group_option_translation` `property_group_option.translation` WHERE `property_group_option.translation` . `language_id` = 0x0230A828E7F14120974FAE38CDACDEDB ) `property_group_option.property_group_option_translation` ON `property_group_option.property_group_option_translation` . `property_group_option_id` = `property_group_option` . `id` LEFT JOIN (SELECT `property_group_option.group.translation` . `property_group_id` , `property_group_option.group.translation` . `name` as `property_group_option.group.translation.name` , `property_group_option.group.translation` . `description` as `property_group_option.group.translation.description` , `property_group_option.group.translation` . `position` as `property_group_option.group.translation.position` , `property_group_option.group.translation` . `custom_fields` as `property_group_option.group.translation.customFields` FROM `property_group_translation` `property_group_option.group.translation` WHERE `property_group_option.group.translation` . `language_id` = 0x0230A828E7F14120974FAE38CDACDEDB ) `property_group_option.group.property_group_translation` ON `property_group_option.group.property_group_translation` . `property_group_id` = `property_group_option.group` . `id` LEFT JOIN (SELECT `property_group_option.media.translation` . `media_id` , `property_group_option.media.translation` . `alt` as `property_group_option.media.translation.alt` , `property_group_option.media.translation` . `title` as `property_group_option.media.translation.title` , `property_group_option.media.translation` . `custom_fields` as `property_group_option.media.translation.customFields` FROM `media_translation` `property_group_option.media.translation` WHERE `property_group_option.media.translation` . `language_id` = 0x0230A828E7F14120974FAE38CDACDEDB ) `property_group_option.media.media_translation` ON `property_group_option.media.media_translation` . `media_id` = `property_group_option.media` . `id` WHERE `property_group_option` . `id` IN (0x660950C3779F424EABD2BC78EEDA51FA , 0x66104AE7A2CC40C1948C764714A39CBC , 0x66235016E0DA4382A777FD37D445D872 , 0x663BA0F9DE284525A533446CA1ECB79A , 0x677B18B4ABAA453298CB0F11E1D5C766 , 0x6789981EC3CC431EA4626F2A5D7D7062 , 0x67C0EC0185564706ABB5E149C1CCB8B3 , 0x67D3B6BD62BD46BFBDBA787E9C057D65 , 0x680B668F51FA47389E04BFA6F94C8E61 , 0x68138061F3BD411CBEEF8936D10D49D4 , 0x68196BE05BC74B6B8C27A6AD7C3BA37A , 0x68702AA585C74900BD1A240D4FB92532 , 0x6894F1F1D2F14FF9A74175B94DC90EB6 , 0x68EE16BDB9794830B34C49A09B740106 , 0x694DD94E6B3C4E23B398C3253318310B , 0x697EFAF4B08C4EAFBDD32A0908B07CAA , 0x699E8AD62F12435DA8DF665889B53E1C , 0x6A032F858F164CA7BA7C00490C7E2799 , 0x6A214396FF3946498B2276066E80D04E , 0x6A278F4CB2134647AF7958725F378253 , 0x6A2F7847A31741DDADDF5674921761B6 , 0x6A3B54E17CF64713BA8E7803B9C0BEAB , 0x6A6538F99AB3493095829F7FC049AEF2 , 0x6AD3E8EB4C2B4B60A18A6E93140DEDFC , 0x6ADF02B8FEDE463EA69CB386FCE035F1 , 0x6AE006DBC6454D32B18396AA05799722 , 0x6AE0CDD72F8049DA89D77A9D4DEF05E0 , 0x6B466513A87C486F961220AE2E116ADC , 0x6B82FFBB83AD471F96BB4B69C414D780 , 0x6B8628AFBA1C4F968B4A01D263E730D2 , 0x6BDA31E68EF146FEABAC3273DD10888D , 0x6BE33AC2474A46E5AF71D3C2C5B053E4 , 0x6BF34D66C64B4A3596597E92F03430D9 , 0x6BFE061718784FB1BAA8FDD78406985E , 0x6C25B7479B184EBD94E97F1CBC1E0C3F , 0x6C881A87110341A2A043BC9A7C023FAA , 0x6CBE3CE5C33946A68F1BAA139F204446 , 0x6D1C83B5F2BA4DF29EFFA468F833CECF , 0x6D77CCC6075E4F7CA650F1A80C7D9920 , 0x6D78F81F3F984157A6E4D80672BF13B4 , 0x6DA341CD87FA49CE952EECA5EA515AE7 , 0x6DF252B66E3D41A1BA1509DC814BFE36 , 0x6E144CB9CD4A48839B8BA4DA6A9B04E2 , 0x6E32527B89124E2ABDDE5A893FBD72DA , 0x6E69A9B8445946708CECA0DF865368D8 , 0x6E6D9C305A5A424FBE7BD884E050B37A , 0x6E7D0E9163134A539BD011EAA9025C01 , 0x6EAECB09999A400DAC58C2B11933676F , 0x6EAF3D21C6104697945B6F009B1B131A , 0x6EE367760F9A42D1A9B7116A0F428FEF , 0x6F886140ED6F4B3285D3D483FF765792 , 0x6FE4E05E5D3D413DAC97E1712A7EDEE7 , 0x70311B28272B403C973CA5732A77DDA2 , 0x7065F72B3E4E465DA653D86E05CE17E9 , 0x70A25C2DFDE44486A09384472312B5B1 , 0x70E8DD6B656D4A4B907B0FC74AEE753D , 0x70F0782CD98740258C63880E61EDCE3A , 0x711C5395032649C1817C365189EF2ADB , 0x716CD774FAC94B089DDE73E71CC749B6 , 0x7182B9570BED424F910D8749DEA2AB3F , 0x71E20458C47743E087EF434F783A9CDB , 0x728921CECFC843E48B3DEF5315F262EA , 0x730F5A502717477CB4D236AAB08F5200 , 0x7349C24A3F7D487B818D488C253958D7 , 0x735B0B5205AC4F0CB52142D9B6512CB2 , 0x736934E95996469E977CB0884C8D80CC , 0x738251919EC346FAACD8AD6C9D0E567A , 0x73DD488EA86144479F63394C372A969B , 0x73F150A35E724117A28C1CED9498D01F , 0x743F6BE3D8E14C03BE4043340852D0AA , 0x7449185A532B46BAB3997C3EDBEDFAB4 , 0x74AE9206DD674848928B40C1925FC6B6 , 0x74BA42C8B7BF481A81ACF5B43242CF25 , 0x7520523B5F2947D088B64E3B4F129C10 , 0x752701E5CE774AECBB7F66A756C297C3 , 0x75D56F4F7F664C9AB7A84BF92FD24C11 , 0x769D8FE7B08A4D90B6A4D067E3AC18AF , 0x76B6B58B96AE40019F2E4C8E877A923F , 0x76B71E3F558849939AE03FE605B47424 , 0x76CFB01B9645440CAB753B756DCF4E96 , 0x76D756C280034D33AECC8896D9B4E125 , 0x76E16C236826460CAB20320EDD834255 , 0x76E4E1944AD24BD78AD561802073F780 , 0x7738B9D805B441A3968D5B0469EB91DD , 0x7834138D86AC4DCBB51EE90A3B784353 , 0x7849BD2B1B78484FBA489222B84D9DF4 , 0x786FB02E0D1943019480A55BF3081931 , 0x787C9537BB6244F5AB9FD2C008CB0DD9 , 0x7884C6D4D8F84D31A0D4521F26E1547E , 0x788F0E702D3B423CAE0E476C5167D156 , 0x789F43402B8C409FB2EEB4329F4A20B7 , 0x78D2FDF1D5E84C96A6336ACFFDFBEA1A , 0x78D3D64F945C48329F2D63E59AE3EC63 , 0x78D705084A0E47AB899FF22E15923C2B , 0x78E954D09CD64AEEA2E5726741A69A1C , 0x78F54F169A3E4CE19F563939EAFAABB9 , 0x790E8323CD1E414892D541C66D170796 , 0x792D5F235EAB485685CD2AD976330F46 , 0x793581CDA411440989418F68608E5876 , 0x796A8927B25240D2A7400A6E3CA17EAB , 0x79987A7769A8464CBC1E0626645DA1B5 , 0x79D9739FE3BC487FA801869733232C4E , 0x79F92A07AD1D4A15A9AC3651E602349E , 0x7A4DDA46F8DF4E75ACA64CF82720054E , 0x7A6373D28D5B46209589E150FB39FDB0 , 0x7A9F4878AB17473993212D5A0CE03CB7 , 0x7B0E9F7AD4FA435FBBAADF581C501848 , 0x7B75774818254B9ABE45C6639C4BEE9B , 0x7B8680344B3A4F7F99DA176E9F951127 , 0x7C5B11B0BC9C46629F592FED30162088 , 0x7C6DF577EF354D49B3F4C6112CE48537 , 0x7CAC5C00480248C181971BF1BA45C03B , 0x7CC1E6BA47FC4BE8AE8B6923AD987EAA , 0x7D35022BB7C94579AD6BAA9CE8428C92 , 0x7D5310624DBA4EFFBE8F76EBC42AAB1A , 0x7DB0A09BB4094BCE922737464171A596 , 0x7E05A98AD35142329AD9F0FF305D8395 , 0x7E57596CF49A460BBA0CD0FD94DCD7E4 , 0x7E73E5125113452F96F2CEE8FF253E8B , 0x7EE09F3E86754D5693108875EEAD1C5B , 0x7F4D6C86245249A0838B72DA8F9FE726 , 0x7F5521C6764C4C5EB805B2496AB88328 , 0x7F67C86A4AB3485CAD959E24C664F6BD , 0x7F81838628CF4232BC1ABA55A18A90C7 , 0x7FBD2BF5EDEC43039F9D645D856C10E7 , 0x7FE2361E8E594C3B97DB8DBD39A2F75F , 0x801555315E6046089F2BE685EEF50680 , 0x801FFEF297F844A8AD50DFD3FF3CF4B4 , 0x8030086FADF744869187B3C7ED6EA6D3 , 0x803096C5E62C44B28D7AE8F636E80BE1 , 0x803828A402AA461788CEB9F116E125B1 , 0x8040133CAE044D3E9ED8F1EB8D0C1F63 , 0x804576A0D7934CF9BF62E01227C16F54 , 0x806A179180EE45DEA47848191EF93244 , 0x806C1216EFD345FEA4585708A3978599 , 0x81666015193B47249DDA288081B13924 , 0x817ED606E3E04DBA845A503A38E8CAC7 , 0x8230524B8822491EAC975D39BB567E77 , 0x8353424C6AB246EFAD78D8F5D86B0E51 , 0x83705DCC0E5E4264802D9570C0995BD7 , 0x83ECDF1915C3432FB96C3728F63F6D8E , 0x8410CB1D13DF4406B093A62F2DF6A49F , 0x8464A73ADC1E4C659010B4B3E0C93739 , 0x8479C393E87F4B759DDCDE1863B27BF5 , 0x847CEA893EC4412CACA4E72175E22DF1 , 0x848139E6903C4C708322371F739D7CF8 , 0x84D5681F053B4D11B0429FB54E6B3023 , 0x84E0A14520C54F08BF181330DFBD99CA , 0x84FC5A60241A432B9E668AB86B5CC4EB , 0x8552DC31F9B24EA496D1A6BEAADE8D9E , 0x8561D062A3874E36A5F8C1F5FDE806FB , 0x85CB6BE2B9F84CA899FD95D5BBBE0A63 , 0x85FDC41F34484AA7925C63E768C8C3F2 , 0x8648F84FC1F34A8AA782490B9B077483 , 0x866BB9251A6940F7B452212516133970 , 0x86C15B3562424B83BE122225E1EFCBAD , 0x87568A2B33A143749FF338C915617A28 , 0x8762BA3A092B4F18A92C2C9342B0AC9F , 0x87641EB681D4417FB5F22592130EEA44 , 0x8786DB920B334822AE89C10428DE64B8 , 0x87B2F067B1674465B3995058EDCDAD5B , 0x88242E6C532D479C97E6797ECD57F941 , 0x889C63A7F95B4DDA98B3D0A104D9B6BF , 0x889E3E76CF7B4EF781EDF57A4CB201AA , 0x88A00397227E4FBB960D95C2CB605CC6 , 0x88C7FFA14DC249668AFA462FBCD634C5 , 0x88D21E3CE83041669DF60CE3F37CBCF4 , 0x896BA96AAC694B569A83BF591287A923 , 0x896F31689D7E4AE1B93D368154B7FFC5 , 0x898CDCA9AE434D62A8241D9AA4B9FB25 , 0x8A2A7402FA3A4A638C4383402553095A , 0x8A6590DADEA5482C9B3911179C84A1D9 , 0x8AB1D87B8E1E49E197F10DC8345E5097 , 0x8B2AFE5DC482449D90B03AD04B8C42FF , 0x8B5B20B570C0412AB58D80AF95AE9F05 , 0x8B8F4A25E36E45BE81025CA3356D66F8 , 0x8B9363E082E84EBCB18F866C186A388E , 0x8BB4913F5FB14E6EBAD3119D59B267F0 , 0x8BCBCEF3080B4521A43FD4C5AA7A0A34 , 0x8BDF2168FCB74F75BEBB294868E53136 , 0x8C7E190C227644DDADC88EF825944239 , 0x8D3A219385AC4B549D65FF85F36C6B0F , 0x8D827FC7B9D84356BC02873EA4841546 , 0x8DB803FF09A440DB82A6C8AF41968AA4 , 0x8E01B6EC0EAF4A2491303C2CCF2E1213 , 0x8E11BB55D5164FE4B4B9D6B98AFC72B7 , 0x8E30641C37B7434982586E980853258B , 0x8E469308DB724CC48DB2E4214DB9F1CD , 0x8E46BD6536E0489DAAFC2164676B0AD1 , 0x8E48C6A766034FCFA31EF55C21C26C6C , 0x8E761B6130F0451A8F3BF562EC4551F5 , 0x8ED1BCC23B9A448B9F3DDF3233FE9343 , 0x8EEC18E5090045918BF38822A89095F3 , 0x8F69CC127538424E913B218777C4A0A3 , 0x8F6E748BB9134690A2C1600D0CE03178 , 0x8F9C44C9A9AF483AA51F07A99BF20F64 , 0x8FBD242FA0B2411ABF16EBE6C97C54CB , 0x8FD0C00FFE1B4214BC3D619DEF70852F , 0x8FDC48BB552843F89A689E3FD7AE41C5 , 0x900DE6D957604BAD83EF64007152574A , 0x90127020BB14410F884D8E27BCD6BDA8 , 0x9026B149063F4C1A985A81B2A2B1532E , 0x90A1911F60584B62BE72C0BCA266D83F , 0x90D8E769D6C4403C881194CB47226EEC , 0x90DB8E572EEA4EA396215457FEBD90CA , 0x918E3D930C7A4C96AD9112D423E6EB86 , 0x9219410151B8446CB753E85DC56D423E , 0x9254323B8D0C4579A89CA9135937B2BF , 0x926AAFB3075C4C6CA3363DAA1DC26A64 , 0x92746FDD2BC54F02B7D8CA4DE230140E , 0x92B6C39209BF4C498D250D1758D01829 , 0x92DE8D8AFC0349DB958614D99053E789 , 0x931A3526302243459A86D519E21E9829 , 0x9366A11ABCD647CA8E90B16005CEB6FE , 0x93AFADE503974BF68150875C20FF98B8 , 0x93CFA2107B184FA398922862770B25AD , 0x94166CCE97A74DC5AE9F6EC549815839 , 0x945C21F8920C4224A78579E044F3B499 , 0x947742C47E534508A4667B65D5A1067A , 0x94990F71B3434CF5A57B64339FF4EA3E , 0x94A84013A7CA4266885E8A67C0B6AE74 , 0x94DFEE026D3242E5BA2A78A043B2DF83 , 0x95328E3731F94EFD8043336CD4E275EA , 0x953E02487BE54A309642324118ACE509 , 0x953E4D5AF5864532A166435455666CC6 , 0x95CAA97BCDF84C658388380ED5922C93 , 0x95D94E0C0A244130972F6970F16EEF11 , 0x96E2CCEB3C4B43A3843D7F12A700F500 , 0x97303977ECE54D829EA799C63B2A6D5B , 0x974F24265B684935A3A6CA37BA2B01D7 , 0x9758D63DC7A34E9283B8FCB095196B25 , 0x975A5F7FE91A4DC9B8B66788CE90B60B , 0x976479D0DB534585874A3080D9F248B3 , 0x976650529EF14B4E9ED206A8193EED45 , 0x979B86599EC9403091ECE139D0D807C8 , 0x97E630793CC544EBB2BD676EB27A21E8 , 0x985732874E454831B90BE29C99FBCEE8 , 0x988CD8CB631B4C08BAD5CF68AFBEC39C , 0x989603140DA042AC8E033E95458B3785 , 0x989AF3D3CF5644AF9C0C7CADEF84EB45 , 0x98A46977CBED403D8EEAAC7CDD190149 , 0x98BDFF925E9F4EC092EA91EEF736B9E7 , 0x98DD1EE0B1244725919833D5A110D958 , 0x99084580AF774598BDB7958818294245 , 0x994F6D566A4142559C147C7FDDAF15BD , 0x99529600B9FF48C7B359E99818AB4DAF , 0x9963CB659AA54374A5A8B27BEF1FA416 , 0x99D6A1669AAA47E9A867C912ACEF6F34 , 0x99E409950B5C4DFAA820BCE764652356 , 0x99F6700613544419AF205FB375016AA7 , 0x99FC49EFB2F345B0BB62D93F1F630297 , 0x9A1B258DE098438596E0D451BC0B1BC4 , 0x9A464F3D363C4CB382165E9CBB4C53C3 , 0x9A50A84AB1D9449BACD5A9ECB11F859D , 0x9A533129813743C0968D8C1BA61D1B5E , 0x9A644573660F4E3CB45BCE25FF321E1D , 0x9AA14DE78CBB40A0BB434CE1FA93E948 , 0x9AA236479142499D9E00B2C7A50B2AC1 , 0x9AF0CD11D26B4B2C9CF5697A9A841F77 , 0x9B05F88EEAB948F48184D35A8BF585EE , 0x9B15FDAE5FC24618896B7BE160068FDA , 0x9B1FFA06B94145F58F0A70BC2DAD111F , 0x9B637EB7B3B6450AACBBC7F74C30CC1A , 0x9BB12F638F464A10AC6D2C650D1524EE , 0x9BB6FED98296409EAC1457917A417575 , 0x9BBDDBBED9BD4786A8576732068E4965 , 0x9BC2B3D8AA18489E89EE2AF8569E017B , 0x9C07D88E2DA34A3C974DA50F37102521 , 0x9C283D90F08A4DC989955CDBC07B20E0 , 0x9C3132C8F4194E2A95F1812A28C9267E , 0x9CA9A6D58A504A8E99C612AFAB147ACE , 0x9CCAC6B119C54E55A30A3559799EEC4D , 0x9CF60263E42643B18F1F65D26EE1E712 , 0x9D2FCFF3F9424E5CA4883D91F65FD3F8 , 0x9D7E764DF7FD48A2A6AD43A7DF4B211F , 0x9E3E972C53A34BCA8E8D4E83992F4EC0 , 0x9E84E7B7F32C49D49147311C4B1DDC0E , 0x9EBA89258B2E4E0FBC02D337A77BF07C , 0x9EF8EBF088D44F6381111538039DCEBD , 0x9F4D5F53B7494EB2968F50F898DFACE6 , 0x9FAD02577C144B4ABCD2D4615C645661 , 0xA0183A2B88D24C1089683E299EF0E5A0 , 0xA0346C99508D4637849CC182BC4C90A2 , 0xA034AD9AC5604D8786A600C8FF727B7B , 0xA0498A7C0514491DA66C4DC175053BB7 , 0xA05F65CEBE884DB9A0A8D1BDC99C658A , 0xA08A5C18929D40F6B1893B25D4D114B7 , 0xA0B6427CF7EE44F7B91A83A9FFD9987F , 0xA0D8D0164533454DB70ADD4BE62FB649 , 0xA1660A24F3824697A90FA588EF09DA14 , 0xA16CF594E7E84125BF555AF550D2F298 , 0xA172313FC4C74F9C86009A41FEC37D58 , 0xA19A2E0DF3494D49B492A08478566ED9 , 0xA1C395832E234F66A402488F64F8D02C , 0xA1C8C6B9B4D846F38AB5177178484A19 , 0xA265ECD2D2FC4FBD88A3698D81BE3CE4 , 0xA26C00A3E48442E188F672E0F035E08F , 0xA361B5F606CE467A8B52759E1B3941EC , 0xA3866FFD405C4403B72759537EE42434 , 0xA39A7C92C0BD47C09970D3989CFED2CA , 0xA3A84E93B98C4FDBA8AF6E4FDB11F7AC , 0xA48942B91E0742519BCA7B16667AF98E , 0xA4A28DC7DC384970B68F19F926410B62 , 0xA4BA75390266463794DBE14500260766 , 0xA4F88ADF121F48C99FD3EB29E09B1FF1 , 0xA52BCD559DD94B97979A7B83E6604890 , 0xA595B09B05E04977BBC2DBD1C236AB29 , 0xA59DDDB64D5043E4B01A750BF947A2FD , 0xA5DEFC92E2624DCFA975CC8885C55B78 , 0xA5EC6A653EEB4D9B8E39FD655847F779 , 0xA652567D3D5041DCA3D13B4289EEFC0A , 0xA6743728219547D59AE23519B6FE77E2 , 0xA67AE00F357F4C528BF8B17A08DE2A1E , 0xA6B07013E38D42B9990933F1CAAF084E , 0xA747F60181C541E68153500D7EF3E6E0 , 0xA7933F5B32F34A1C8CC72F69E19FE0C1 , 0xA7A865927C5E447F9C7F8AA6D9BEE9C8 , 0xA7AD6A9665EA4033A8E5E1070A8DEB44 , 0xA7C236F7596E466DA6CAB5D93227918D , 0xA7CA0DA9E0204506A5A443AC348C5C39 , 0xA81BCA2534FF475BA2CF0493730E0196 , 0xA83C84723F6C493B9CBF0083A0C3FA96 , 0xA890AED2FAF04103A098065CD3C182F0 , 0xA8D71210207744BD9ADA9D45227E7AE6 , 0xA94E117037A94E218550F8E8E454F72D , 0xA96B34DB48234E9898CB8E8A645E59AC , 0xA9A2AEB1DB134D2FA8EB90F139A3B801 , 0xAA597CA5E8C640F4AF43B20A624C3C04 , 0xAA9C9715012349DF80B7A12E945534F7 , 0xAAD91494F5434338B8EE0CC173760DA9 , 0xAAFE9EDBF3E442909B332A93791D72D4 , 0xAB27878C858947BF9BF3F7337910510D , 0xAB5411C7FB8743CCB2DD183B47C715FB , 0xABB485E23A6C42538C2DE7FD2D9D4329 , 0xABBD7834AC1D48718F732CEEEBA40A14 , 0xABCB6696BB6142B6A93B3D49864CCBE5 , 0xAC1F11D317D3487E96E23036B7264DD9 , 0xAC5C9531801B4A60B139808E0CBF0A1E , 0xAC5D5954C56F43548BFC4E4144B020A0 , 0xAC96A1F31C574FC89AD8316AB633C026 , 0xAC9B7119868C4CFF862049D97036F16E , 0xACBADFAE3F0E44F0B44BC01B68E0881A , 0xACFD7586D02848F1AC801F4776EFA414 , 0xACFDE35EF6A94F3F9928E802310D43D6 , 0xAD20B35EECAC43CA8AC2F0CC3E06CC3E , 0xAD3846E00CE847E080AC7BD3E912DDB1 , 0xAD547BDDFACE47A1ACC257EAA87A91DA , 0xAD735AF1EBFB421E93E408B073C4A89A , 0xAD9A5C4C130341BDBA345ECA895110C2 , 0xADFFF4DB29704563AE31D0A11A96F494 , 0xAE4578DE6B7F4525BCB24AA0E3F3DC9E , 0xAE59B5BB529F4DB889CC60BAB828A5B2 , 0xAE61DA93D12C42EF8E3E252B4EA55B4F , 0xAE9DC35E222147D1AE7CA9BD01292674 , 0xAECF04B1A1C84A4385E9E65C4615643C , 0xAEE4A6797A254296BAC9E3FFFC22985D , 0xAF11B47C24464103885AAB5BA9C0AE7C , 0xAF123FA863CA4401AC3159A59A2DF3AC , 0xAF695351A56B49B58250292554C5FFB2 , 0xAF69900EA6E34364B9827C9AD03CC4DC , 0xAF909FD876A5488793AB56B8DC7EF35A , 0xAF9E19715E034E94B5BD9DB6B8A3B132 , 0xAFB7CBC7E602430AA255221722FD2B10 , 0xB014913F498C4D0A864FC2E2F11D7090 , 0xB016965020ED45D6877546D0DFAFD08C , 0xB18F71E07BA04C31858D32522B152FDA , 0xB1CFA3D6F1F243EB88715C21E668CD1A , 0xB2355711DCDC48D8AADAC7E10309800C , 0xB23E7E543FD64A1097449A6E1C6E3E83 , 0xB2927B9F2C4641C7BE1DAEEF6CE60F36 , 0xB2D389BF0C6740B3AFC145B2ECF2586B , 0xB2D6AE43270044E49FFB2ECC54E48F9A , 0xB38C21EC79914187B685D8851BE17940 , 0xB3BAF5DBF1DF44A7BB1CE6DE8297A79E , 0xB40630DD572941959EE34D753CB5700F , 0xB4333F7F150740119EE9B8C7705D4994 , 0xB43B825A64C64E71A81805D883A3E5E7 , 0xB44D749AE0664F50A73601B29C78513C , 0xB486E0C247D041ED84CCE30A0CE2881F , 0xB5145D6B3D5F41D3B0105F2FF4186E8A , 0xB562AB0809BF45E29B437AAD71CE3FD9 , 0xB5945CEEDF9C4A1FB22F463CAE45B6E6 , 0xB5DEE5EBE0D14E16A246DB536B069E57 , 0xB5DFA9E542EC4FECBF3DCD968BF99B13 , 0xB5F9FAB27BBD47948CCBD5EAC2BB223C , 0xB60EFB5A5BB74924B2D78D37753C491D , 0xB63B162D56554FA69FF479AD24820452 , 0xB68EFC7F595842989EDBDD42184B9DF3 , 0xB68FA6C1A30A4FED869866AF7C3FA211 , 0xB69D205885B34CDEB365D8E864B058C3 , 0xB6DECF25801544489BAFFE10B69500BF , 0xB7098EFAD39848FF94F3079DA24C0B4E , 0xB7A3B4D35CB74C75A6F39476399144DA , 0xB811B466D4C24C59A83625FE30E92594 , 0xB854BDC7A9EC49E8AE7090A4BFAF4BDE , 0xB88D327575E74D51B24358CD04CC2590 , 0xB8EB179B1054446FBA765A050A0866BA , 0xB9053404F18547CA80356BCD5A056E0D , 0xB962154DEF4E4557BA09E21A1CE9E8D0 , 0xB98884E3A084422E84AA59851575C75A , 0xB9D13C49802B40B8BD9A34E8CA3075E8 , 0xBA4138CE12F64CE3A64DE43A510DA936 , 0xBAD88AC403DE4371B48DE604AC51A01B , 0xBAFFC4C0A6454FD4A5FB0B85235E90AE , 0xBB0116ADB986489D9130894324F7A5FF , 0xBB0D9F633ACD4B94A8CCB1191AEFB983 , 0xBB2DC9ABC0F94A1FAE7107BF61825B1F , 0xBB898DC07DA941F69F4478DA0FB7E9ED , 0xBB998F422DAB443EABB6CAC1640CE6C2 , 0xBC5038B31A9A4766A9F8FCDC1BBE59BB , 0xBDA0739EE1784E3FB53191F69E95DD95 , 0xBDD502083B5C4CFD8EFB1156D656BA15 , 0xBDD76D8587B04F439DA4F96194F559A4 , 0xBE3454886E6D42FDAC90562C770FDC76 , 0xBEA9BB64AAA1434ABBC0EDCB624C6518 , 0xBF205D41E4A3498DA999DD22CED97CEB , 0xBF359E1343C8492E874A6A49592C23B3 , 0xC159B69D59F942E4B1463AFF8CCFCB2B , 0xC19439300CD240079842FFA814439E72 , 0xC1FE0633E5244658AE245E1A11B9F887 , 0xC20F943866E74D1EAE5B3F0838BA60BD , 0xC23ED21669A8449D8AF0650FCBC15998 , 0xC272B0E30A5D4AE485E4B004553E906D , 0xC2783D38579F432D95F21CEE5235D557 , 0xC2D26E3BA9C8496B944FC1976B4D1595 , 0xC33CF664A3A44D74AA7FAF39581FB87F , 0xC3C396E968A548F9A4FEC005B3239209 , 0xC3E4F1120D4246B4A3169FB6EA9B3754 , 0xC47E1725895040E097FB61DF69F0AF2B , 0xC4EEF08FDF8D451DB24F60E084B6D5B4 , 0xC5298C9021FE41818C6C89232B169FEF , 0xC5875411C4B24FF48BE7964122A10B55 , 0xC5BE5E3F6DC64813AC4B8B186A48A5B7 , 0xC5C8B3B3A2C3431DB4C17C7057717582 , 0xC5F884861F914309A76837AE1CFB32CB , 0xC64D84707B204AFFA31D3320D3818830 , 0xC654DBE8064049A2A377EF69AB65D633 , 0xC72368E42D5A425481116950AE42E8A6 , 0xC74439171D6F488A95916F2AA7F06F6B , 0xC793E7C979744EB4A1DF9F0694693905 , 0xC7A9ADC6393E48EF9CE8E7CBE13CE6F5 , 0xC7E39CD05F144D01B5930069EC4AECDF , 0xC87E21A776754D7BA291D898BCF12BDF , 0xC891DA8FE266471AA83634CB5B436724 , 0xC8920C39C3EC46BA9ABF2A9200D664D9 , 0xC8F2C2F827C847DF9FF85148C418EDE6 , 0xC8FEF06EF6144EF8B5098555837095CE , 0xC955CF213D314ABC879485CE82C75F3B , 0xC99CA89DAEFD43FFB4F10502EBA7C45C , 0xCA3122DF200E4B1093499FCBBC98693B , 0xCA599C12EB174C2587D735E3112E7784 , 0xCAAB35BAED0943788863D9AC916A60C1 , 0xCAD420DB8AA743A2BC48140515D1A996 , 0xCADD602F64844C7FADA5C6C686BCCA93 , 0xCAEA6BD8236D4588A3F346C33BECB505 , 0xCB1EA02BBEAB422F9757D63BD48AE687 , 0xCB634190E3664F7E8CFD52B193744F98 , 0xCB75F8B8E471487398D4F830DB8BEEBA , 0xCB76A3C150B84A428B9D277B924164C2 , 0xCB91C5629D824064BD54712097CF5AAC , 0xCBBA9861081F4090B562F7C7C49DB141 , 0xCBC82329E5144D568E24005B2616A920 , 0xCBD24E9B423846D1B5107C049E082DCF , 0xCBE07660008B463DBCBD128DBC0A4CE0 , 0xCBE824276C9647E2BD7753E2345739C8 , 0xCC0A574F9DFA4ECFB2DF234DA716A6AE , 0xCC324E63B68049AEAB2EDDA65DCCA52A , 0xCC68B877248C4709828EEC45FECEBE27 , 0xCC7C725BA6C0469CACCED57E7C12A2A0 , 0xCC7F036DF4F04859829D6A4091ABFE1B , 0xCCEF6480E98C4EB48494C2BC53C6EB4C , 0xCD2ECB1BBB5C484882B64E95F8BDDC5C , 0xCD414378DE674CDC8B5398678C169EFB , 0xCD59AA9167FD4433B63BA0A23DBE22E6 , 0xCD8E927D36F14E6B87A1C8B8AAF47DA2 , 0xCDC174667DB4489D8478B0F76066A684 , 0xCDF7881EE1C94F809CA27718237035C9 , 0xCE1F2DBC3A7F42BDB4894D63ADB4EC12 , 0xCE2B2E10CEC14062A8C978FB6AF523A1 , 0xCECDC9821782467D9C4E11A7D90C5A1B , 0xCEFE9EDBBAC749BB93D645956418702B , 0xCF39715286F249389094896DD8DB8B2B , 0xCF444EEBA0574697824B8CF900339FCA , 0xCF5CA0C6CE894DA7B265EE976C2042B9 , 0xCF6BF562C83E445DA5676EC9CF29E66F , 0xCF8294F0EF71483D9BE40F9F216CDBFD , 0xCFBB2D58615B46B496EB9BFEDC6666E5 , 0xCFE9D681CE9A42B2BAD2ECB2E508D1A5 , 0xCFF58C04736B440E95E771A79DAA0FAB , 0xD02B04633AEE4E20AE5017452694911C , 0xD02DDB5E68824DC0B764D0A7309B59CB , 0xD03E93B6E52141969C542CA81CA1A87E , 0xD042561B61F648B49471B61EA7477963 , 0xD0B200C760FF40BA9B37050C2DE60632 , 0xD0FE86F149A946DF986FB845A00B5714 , 0xD14DF177CCC044EF9EECF0D9BC1538A7 , 0xD17067FAF5A74D56A70F58278FCEC72C , 0xD19C8D7299E949DB9F4B7919FFC2C0B4 , 0xD1E6334C6A3E41D1BB0212368B6255A7 , 0xD22377B9ABBF4F26B2B84DD78AE27995 );
Copy
65
11.44 ms
SELECT `property_group_option` . `id` FROM `property_group_option` LEFT JOIN `property_group` `property_group_option.group` ON `property_group_option` . `property_group_id` = `property_group_option.group` . `id` WHERE ((`property_group_option.group` . `filterable` = ? )) AND (`property_group_option` . `id` IN (? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? )) ORDER BY `property_group_option` . `id` ASC LIMIT 500 OFFSET 1000
Parameters :
[
true
b"\x00\x00 ÅÜ\x07 ºIÃ C…"Ç\f é "
b"\x00 THÔGðK8¬$;Ù\x18 L«€ "
b"\x00 [}yæ•I(½ÌsAl´Ë\x14 "
b"\x00 ÆÉyD°Hyÿ¨\x03 R\r mÓI "
b"\x00 ìCï¢I|┤53ÅÇÆÅè "
b"\x01 `½žäÕ@\x02 ‹\x1E s »«™Ø "
b"\x01 ¤ Ç01Ks«œ¤,瀧n "
b"\x01 ¿—\x05 4³A2ƒËû\x1E ¿\x02 Ф "
b"\x01 ÁBrÌÞAz„Š<\÷¨ý, "
b"\x01 µ\x15 =S╬Bz┐üL%(`ãB "
b"\x02 ˆ\x7F ŠZŠO4™®iV½\x1E ZÓ "
b"\x02 É_YÜÞE¾áQ3⬽PÊ "
b"\x03\e ¹DcpO2”òÈ\x1C $©«4 "
b"\x03 >n`\x02 @Cìšè\x16 8Ö@xÛ "
b"\x03 J.}yÿEkŸ•\x13 7¥ˆÐï "
b"\x03 KoqÆû@\x17 Éf\Ïâ9ëð "
b"\x03 VÄ¥îÇBƒ²,ÝϧÀb½ "
b"""
\x03 Û§\n
ê‘IÚ»&f;\x14 á\x18 Ð
"""
b"\x04\x12 Ét:VL9»IÝËŠ„BJ "
b"""
\x04 7‡%ÍÕLZŸ±zÿ\n
0¦°
"""
b"\x04 kú\x12 ‰`Cú‘AO9£}3È "
b"\x04 Ì^žiÔG事GvóSTð "
b"\x05 ;¼@AîH=–Àß>\x7F +bU "
b"\x05 âx╬\r rGúÅ÷_¶.├¾a "
b"\x06 ^│îr▒DR▒\x0E ÉÙ+¡└┤ "
b"\x06 Õô\f\x1C JMë‘4/"\x1F P\x16\x1D "
b"\x08\x17 €>BRHçª÷É$PÕ¼Æ "
b"\x08 "\x1D ×#\x08 Mߘ+–*dXì7 "
b"\x08 9\x1A Ã\x16 ÉIfïV║\x15 ã┌ɵ "
b"\x08 V…Ïb{I\x1D ‚iT|–²ú{ "
b"\x08 b╝╦½ñJ\x12 ƒìó\x1F Ý'¸╗ "
b"\x08 鞤“\x1D C»˜é_R \x14 Ÿn "
b"\x08 ¹Ý÷RbA╝×&■ɦüIm "
b"\t IônÀß@▒øfàü¬¡\x12 Å "
b"\t wLwídH\x0F 𾕆{\x0F 9H "
b"""
\n
\e ò"»øK ØS[3P³HÊ
"""
b"""
\n
"Ø«"\x06 HqƒWŠW[\f ÇD
"""
b"""
\n
_ß'BðMx¢‘=µ4&m\x03
"""
b"""
\n
g2UµµLë¨?á®ER\x05 Ù
"""
b"""
\n
y‹w\x16\x08 J‹Œ>Õ£€TA‡
"""
b"""
\n
§\x0F AO½ED¼Ýì,1©Hš
"""
b"""
\n
Îÿµ┬íAvé┴qJ¨ì╠
"""
b"\f\x17 D\x06 CRA,½‰>³Ù'Ïš "
b"\f\x18 ßì¦èFô·Xn[Háïó "
b"""
\f N\n
ÞDbN“‡\x02 ^6b9À¥
"""
b"\f •x73ÓCœ‹½×s8)v± "
b"\f 3N\x02 }HúüÛâµ[¥Æ╝ "
b"\r +‡-íÌJ@¼Ÿ\x10 wòMü "
b"\r ûhî■╦@ıäK╩~ã\x1F LÅ "
b"\x0F\x13 ŒòYèHë²\x10 ÙpF\x05 ïZ "
b"\x10 4”Å%F@]\x18 æ^Ã\x16 ê÷ "
b"\x10 Å&.b O-¼é$¦ÊBj\x0E "
b"\x11 +iMgÉH.…\x1E ²{ë·7 "
b"\x11 nð*+}Mb„Á¤KÒjsº "
b"\x11 ë6)§·I\f ˆ%âÄ[ÖEú "
b"\x12 é'vý\x05 Né«Uü¢J!À\x02 "
b"\x13\x19 ╩)ܦL9ØUìsºø\x15\x05 "
b"\x13 0\x1F .äŸN¿´XoE–\x1D Ò+ "
b"\x13 f╔│üÐE¸▒\x05\f çX]Û^ "
b"\x13 ¸¦Å¦÷M4¹ß\x10 ¦œ\x01 ¶/ "
b"\x14\x04 Å\x01\x1A ¯FhéwK┴_\x1F ╝m "
b"\x14 2╬f}ÎLßÀÙò¸_‗\x12 Ø "
b"\x14 G\x07 ÈILGŠ€V ORtóK "
b"\x14 ¤qßzE\x19 ‘\x00 dìdÀH– "
b"\x14 §=Vc»CÓ‚\x16 !£y¸\x0F f "
b"\x15 {\f 8úHCÿüye$\x01 \ë\f "
b"\x15 °nzþ3Ag¶kòh%:¬G "
b"\x16 ˆ2Ý\r ¡@\x13 †häB˜è´} "
b"\x16 º{žN\x04 Eµ¾aSÁ÷'Ä\v "
b"\x16 ÿG\f KmG[ƒ\x07 ’XÌ$w@ "
b"\x17 Pø°t\x0F F?‰^[”a\x0F ír "
b"\x17 gïKt\x08 NXµÔ‹sh©\x12 n "
b"\x19 îóÅ\x08 ├I*®\x11 Ìà`´þª "
b"\x1A X"\x1C ÏûN°€F}¿ÝaUx "
b"\e LµµÖ\x18 Ae·Üë4œ\x13 8+ "
b"\e µö$\x17 ÃB “A)Ý{{µ9 "
b"\x1C †\x01 Ë¢ùD2º¿\x10\x08\t -Š= "
b"\x1D\x1F Äöj\x16 Eή\v Ô*”ï^\x04 "
b"\x1D œO0\r fG»³÷Ê9D Ée "
b"\x1E ZD•I€I„šx\x00 ¹\t u½, "
b"\x1E i¶B·¹Lýµ>“×(*v\x17 "
b"\x1E µÿ®V×JT„û¢\x1E ¡Sœ÷ "
b" \x15 ÷ŽçWD@¾/ùŽ…4&è "
b" Qz`×ÝCö†j·h‰6\x1D\f "
b" SC¶y0G¡▓×<ìc*\x7F ä "
b" •‘UËÝC\x11 ‰] \x13 âA\x1C 4 "
b" ¶\x19 œýõO>œ{!ý³¶Û "
b" Ù&ÿÄrANµ«†ÃÃg\x02 ? "
b" ñ—α’AÌ…¥ÿ;è\x02 Ó7 "
b"!ŽLM2#H<¶@]®ÇÉ-Å "
b"!ãž8ÝlOk‹²e×YÃ#˜ "
b""\x12 ®09%Bþ¬d\x14 │Øotg "
b""</¸ÇMH¯€b†\f îW¬Œ "
b""="T}\x12 J˜‰}?nÍèJÍ "
b""è¸j\x04 ═G\x10 ▒ıLæ┴Ø\x06\x06 "
b""«\x0E :KLL„¹n´‚x|&F "
b""ã\x01 D»+Ae‹æJŶ\e G| "
b""é²ý‘PHθH.WŠ…\x0F ã "
b""ì\x1C ôž\x10 Gá´w]®ó¸\x19\f "
b"#³ô/SˆIF½*îyZ\x04 T® "
b"#Àaw\x0E úCá‘\v pY\x1F\x07 ‰[ "
b"#ÚpÉ▓*N0ï\x07\x11 DÿùEÞ "
b"#‗¸çÆìG╦╗£6UÉÝ█ "
b"$\x10 ü]ÙXC¡ÀùRN\x18 @g² "
b"$4#¾\x0E RNo¶.rjÈ9\x01 œ "
b"$Båb═h@çêü ^r,tÎ "
b"$Óéo:\x12 D/†ÒqQƒní´ "
b"%\x01\x08 V~#BñôÇh\x10 ¯ü╗j "
b"%%2®!ëK\e ª°ýÈ«\x16 e1 "
b"%ZË\x16\x0E cKIù\r YÄ<Ç┬ü "
b"%`U€©2G}¸ ˆë\e ûËé "
b"%À>V\x08 FKÏŸ¤ŒT‰Å†8 "
b"%Ö)‡cfMfªïlL^D•I "
b"""
&ó░a\n
2M\t ª_■╝°▓¿É
"""
b"'\f ®ÕÑ(N▀òŹ\f ±ËË? "
b"'LÌ,7’CT¹¯8öGLä` "
b"'j A÷ZLV öÛŠ\v ƒ\x05 ~ "
b"(X\x05 ~/éKF¾©ÏÄl¥‹˜ "
b"(†äh\x1E LIÙ«ƒ‹w»îļ "
b"(óÿŽ+O,…«Ú$\x12 ç5m "
b"(óÔ*âéJF‹4÷VÕeÿÎ "
b")X´[êÿEË—óì¦<"–? "
b")”?ý\x1F Fòº$0\x12 \x00 ªÞ "
b")«\x1E ©”«O® –5¨=Ž©¶ "
b")½Zk¥WB™®Å<Þˆ\x15\x02 q "
b")┌\x05 AÙ¡DèÅà┬%Â■CY "
b"*\x19 @\x7F 5+C‡¥œd¯öò\x17\x1E "
b"*WZ'•xG°’¾òuä?F¹ "
b"+×Å|3‗CÏ¡┐°8¢┤╩³ "
b"+§á8sáHX‚8\x02 NÌêÒ. "
b",8"›·v@\x0E ޶ÃÃ\x06 …\x12\x00 "
b",j×\x01 `vN˜ƒ¸û\x1F\f ›>^ "
b",Ù奂»A(›\V\x02 @ûTÖ "
b"-&&\x10 ¹DAµ£"²î¢~jL "
b"-ž~±…šK/¼Ñ»H\x10 yY\x12 "
b"-Ä¢ð@ðM¸¢Ç5\x06 %ÆQ’ "
b".\x18 'ÿp\x12 EG©\x12 4ê\x02 Ëä{ "
b".EÅ3ì(Eþª±Ô/ÿçÍ¿ "
b".GýnguDQ¾>¥YKõQc "
b"0\x03 „û _@f‚žFA\x15 p¤\x17 "
b"0u‹N%÷E”¨°\x14 -ƒ^³P "
b"0ˆ“3†ˆAþ’\t 8zˆQ3\x03 "
b"""
0²Ñ█;╠K&ì\n
+¾░Y"¥
"""
b"1ÈãÏq¾AJ‘lµõÛ}~¸ "
b"1ÿ¢–\x07 dOý¶yà•\e ,†H "
b"2FùèAfN»¤Wý$ì7×N "
b"2wád\x18\x14 F\f ž„щ§+ÀÕ "
b"2žþìý\x15 @©‡Þ$¸ˆ¿p? "
b"2õªý®ÕM’·\x05 JsPá\x13 "
b"3@K½ÝÆ@ú…Ð(²6¹\x1E % "
b"3u\x02 ô\x0E ìN¸¢n,\r %ºT7 "
b"3Öª®úÂEÃØ├Ë\v ¶gÃr "
b"""
4ËüI\f ─Ngì╠5þ\n
ı7·
"""
b"5I¯N\x11 4G^Š›~<Ï‚ùŸ "
b"5Üøy#ÑFLèÑøÃþ╗ÃØ "
b"5©É6ǼM▒ö\x0F Fbhðoj "
b"5÷«x\x0F ìCÇ¢GÂX—£´\x00 "
b"6âØ╣└·A\x04 ú\x12 Ò|ʤ═Ó "
b"6ÞÃ[¹/O¦²C¶ZûÊŽ„ "
b"6Óõ\f ´YMû╣¼·ØSÈós "
b"6õw\x1C v^F«à¯\x1A ÔÇ•ß "
b"7[yá4>NñŠý:ê´iþó "
b"8Æ7ÇmþHÙÆ"ö¨þÛ×É "
b"9/C0\x05 ]FÒƒ¼Q\x06 ÇéñÐ "
b";&àÇ›)JÊ—1—:DËw• "
b"""
;:êÅ’zO\n
ŒŠ:\v å;ƒp
"""
b";oþ¨õ¹G$ØÄ\x19 }î\x13 ±@ "
b";ÉXwk«FŸ”=ç\x1E 6z\x06 e "
b"<\x17 ;m=\x04 @X¥9\x06 aqfÏW "
b"<,kÁ*jBZ‡¥\x10 Eœáìõ "
b"<K\x17 ðùåA\x1E ‹Ñ¨Ñ{2bð "
b"<¼ð\x04 ¤UJج║µf\x06 uÑ{ "
b"<█Ì×QËKÓØ┬®ı½K|W "
b"""
=`+\n
kZLv€=\x05 ýñ›\x17 ˜
"""
b">g╠¤Û²A▄ì]ø\x1A èªôÖ "
b"@ßYÒx\x1F J̈¿4DGƒw§ "
b"""
A\x17 þ\x18\x0E ÆN°€4¯‹³µ\n
y
"""
b"A\x1C 2˜™ðE5±üºö%×¶n "
b"Apx-IÚ@gŠ\t çá\x05 £\x18 = "
b"A’cª\t ,@¥§,\x03 Í5«Q\x07 "
b"Aå\x01 ;gÖM:’·¢uÚŠôA "
b"B}椪HIT¿”<DÔ\x0E ?æ "
b"C\x06 Ù%\x1F NG\x00 ´É.ÔeÌíÒ "
b"C\x16 ¨_5ïKÌ´\x10\x1D ¢\x04 /ae "
b"C\x18 ”\x03\x05 ãCĬÁ9‹\x0E ¯‹ÿ "
b"C1┘\x1D <ìG}░NâÆ \e q▒ "
b"C5hl¬FFúµá"™c°“ "
b"C\R\f áXC§¢»&»¿\x08\x11 å "
b"CÅm()ÜDB¢Ùæ¦┘╬╚ü "
b"CýÒîôKDü┤\x01 ┐ã\x1F ,\x16 ¹ "
b"Cò†8˜óG⇰\x17\x03 ÞP\x0F û "
b"D'\v ¦srD€±mæ\x02 °ÄÆÑ "
b"""
Dy)[k\n
O▒âÖó<Åï«H
"""
b"DÀ@·}…F\x06 ±\x1F E<ƒ¶ªô "
b"E\x14 ^0E╠I\v Ø]W(º-\x03 E "
b"EOu: \x01 C|©œì~‹¬Q5 "
b"E¯\x1D Ñé:K/¿¢QôÓ¤Äu "
b"F\x02 Ϊ¨áNn®ê\r %tÔ¨q "
b"FÞp…ÎJE¢‚–ÿs\t Ú¥# "
b"FÙ╠¶±hC`ÉìÐ\x0E\x08 8¯½ "
b"G\x18 þ£ÕvN–ž.xxožú„ "
b"GGì6æÑAîºzX¿Ìä/Ô "
b"GÞ®í˜}L\x10 –þ\x08 h\x0F\x7F ÜÛ "
b"HOf\x15 ÛÚL¦ÿ\f ½Ø\x02 [?ì "
b"I7ðÁù:M"¬9¯q¿¢íw "
b"""
J0\x05 á\n
RJÐ╝j;0┐üá\x0E
"""
b"JÁ│ì`9C\x1E Â┬\x05\f $\x00 ■l "
b"K>tÅ)`NM¬╦®\x0E ¼ò&Ë "
b"L"KÉaÛD¾ž2bv7&D@ "
b"Lð3ñ¯¨F ‹ KêÞÙ™\x0F "
b"M6QzHÔCÅŒ(\t (†—¬b "
b"MEö1©\x11 Kް â¿\x03 Üv\f "
b"M¶\x00 ¾c\x16 Jt±.%Ƥ@‚\x1C "
b"N\x1C µ²k±DD¶±»\f >‘Mõ "
b"NHó\x01 V–LÈŒ†\x7F ‡°7\x13 Å "
b"OKØ›æ§O͈zhœ\x03 à,Ò "
b"OQø\x03 :—IÏ£\f þF™}8² "
b"OÚ›þ&\x18 C\x13 ¦Ngð\x13 Ò|/ "
b"PSüq?áK——Ïg,>q“D "
b"Pÿ4|─^A¦┐lØ7Ú¡\x0F · "
b"PìÏÆž’EP•ïÑ\f ÷#Š\f "
b"Q4 ^(ÁM$³J£Ë+Û\x06 Ÿ "
b"QYÑŒägD\x19 š!\x11 þ€™Î, "
b"Q€K\t £É@Å‹hþÓ\e Ä´£ "
b"Q ÏO\x1C\x13 H\x17 ™™ãó&ˆmä "
b"S\x00 V‡ÀCEݬ7ú7¸ Ñü "
b"SH—\x1D o3B©®\x06 4O…[ô& "
b"SHÅ\x11 quIñ‰\x17 ‰’žr\x16 Y "
b"T\x08 ypOƒE`íü.N¨)v1 "
b"T\x14 v’ËûCAšm\x11 âlDÜ "
b"TÝå\x1E\x1D "LóƯs¿nÑØ "
b"U“ù4Í6Lx®º‘¤ xó\x1C "
b"UÖåÄ\x15 EØ£³c{øÐذ "
b"VàÝıL(IöáÉ%\x16 m´ÈS "
b"W\x00 壚ÓB\ƒ\x06 Û±Ö¾YÆ "
b"WQ¸?’Ó@.¡9šhûu¯\x08 "
b"X\x17 \Å^?O\x07 ŒMç`Cë¶¢ "
b"XõÌ7÷¸J®…8¾ü&§ÒÈ "
b"Yt+l%{AÍ„“¹8&™‚ˆ "
b"YëÅ‗├@HxáÖ\x0F 3═|`┐ "
b"Y—Ù\x1D ÀxI—½ïhßÅ ‰\x12 "
b"YÊ£gKaEв¦°K~ƒ¯p "
b"Z·®ÊˆdN.•)\x02 ö\x01 ¯–M "
b"Z▄£.\x10 ÕFÉØ\f ýW«\e i# "
b"[\x10 ³\x06 ¸\x05 K¸²\x10 ±Ï\x1E )MÝ "
b"[.uÒ˜\x1E A\x1F ®ÚÍ8ðªPV "
b"[¼x¸ñêJBª5í\x18 šk„[ "
b"\#ìyÒ\x15 H─óL¼/î█\x10\x00 "
b"\È/Á\x13 &KȼÉ╦<×o×\x01 "
b"^TäAû}MÍì░\x10 Ï}°\x14 å "
b"^tØ═Í┘E@«¶pèý"┴ "
b"_Ëë»\x11 €BIš¾ì,Ä4ný "
b"_Ï[\x01 ÔÙB`˜Ué^\x13 ËÒØ "
b"_¹}4¡ZO´ìj=jL\x0E Í┴ "
b"`\x1E ½9†dB’œLF\\x17 XW\ "
b"`µ▒░\x7F ÝG┬í¸T ¡ttÅ "
b"a-=t)ÖBLµŒÉñÂÍ0m "
b"aè\r ã\f ╣M̽ây¼ìÏe║ "
b"aêû\x01 îÇEIŠ\x7F WŸÀ¦ ú "
b"b\x1C xÅ\x02 ·J€¢\x04 x`í=aV "
b"bGž:»ùMî·òÚ˜w¼›¼ "
b"c\f ”šà"KÇ—\v ê÷}„5j "
b"c?\x00 ¢Ÿ¸H!¼Õ©;@{jB "
b"c &oGÁMk¡ˆÍÁpZ˜§ "
b"dØÎVÞ\x05 O"ˆ<gM§ã»G "
b"e¢Fé´#Oy£xÝÞÄZ2¿ "
b"eÀ\x1A ôy\x0F ON²¤âSš\x04 ¡× "
b"f\t PÃwŸBN«Ò¼xîÚQú "
b"f#P\x16 àÚC‚§wý7ÔEØr "
b"f; ùÞ(E%¥3Dl¡ì·š "
b"g‰˜\x1E ÃÌC\x1E ¤bo*]}pb "
b"hp*¥…ÇI\x00 ½\x1A $\r O¹%2 "
b"hî\x16 ½¹yH0³LI ›t\x01\x06 "
b"i~úô°ŒN¯½Ó*\t\x08 °|ª "
b"j\x03 /àÅ\x16 Lº║|\x00 I\f ~'Ö "
b"j'ÅL▓\x13 FG»yXr_7éS "
b"jÓèëL+K`¡Šn“\x14 \r íü "
b"jß\x02 ¸þÞF>¦œ³†üà5ñ "
b"jà\x06 ÛÆEM2±ƒ–ª\x05 y—" "
b"kFe\x13 ¨|Ho–\x12 ®.\x11 jÜ "
b"k‚ÿ»ƒG\x1F –»KiÄ\x14 ×€ "
b"k†(¯º\x1C O–‹J\x01 Òcç0Ò "
b"kã:ÂGJFå¯qÓÂŰSä "
b"kþ\x06\x17\x18 xO±º¨ýׄ\x06 ˜^ "
b"l¥<Õ├9FªÅ\e ¬\x13 ƒ DF "
b"m\x1C ƒµòºMòžÿ¤hø3ÎÏ "
b"mwÌÆ\x07 ^O|¦Pñ¨\f }™ "
b"m‗RÂn=Aí║\x15\t ▄üK■6 "
b"n\x14 L¹ÍJHƒ›‹¤Új›\x04 â "
b"nÒgv\x0F ÜBЮÀ\x11 j\x0F BÅ´ "
b"oäà^]=A=¬—áq*~Þç "
b"p1\e ('+@<—<¥s*wÝ¢ "
b"qlÎt·╔K\x08 ØÌsþ\x1C ÃIÂ "
b"q‚¹W\v íBO‘\r ‡IÞ¢«? "
b"r‰!ÎÏÈCä‹=ïS\x15 òbê "
b"séQæ×├F·¼Ï¡lØ\x0E Vz "
b"sñP£^rA\x17 ¢Œ\x1C 픘Ð\x1F "
b"t?kãØáL\x03 ¾@C4\x08 RЪ "
b"t║B╚À┐H\x1A ü¼§┤2B¤% "
b"u R;_)GЈ¶N;O\x12 œ\x10 "
b"v·\x1E ?UˆI“šà?æ\x05 ´t$ "
b"vϰ\e –ED\f «u;umÏN– "
b"v×V€\x03 M3®Ìˆ–Ù´á% "
b"vál#h&F\f « 2\x0E ݃BU "
b"väá”JÒK׊Õa€ s÷€ "
b"""
x4\x13 ìå¼M╦Á\x1E Ú\n
;xCS
"""
b"xI¢+\e xHO║HÆ"©Mض "
b"x|•7»bDõ«ŸÒÀ\x08 Ë\r Ù "
b"xŸC@+Œ@Ÿ²î´2ŸJ · "
b"xÒýñÕèL–¦3jÏýûê\x1A "
b"xÓÖO”\H2Ÿ-cåšãìc "
b"x×\x05\x08 J\x0E G«‰Ÿò.\x15 ’<+ "
b"y-_#^«HV…Í*Ùv3\x0F F "
b"""
yj‰'²R@Ò§@\n
n<¡~«
"""
b"zMÚFøßNu¬¦Lø' \x05 N "
b"zŸHx«\x17 G9“!-Z\f à<· "
b"{†€4K:O\x7F ™Ú\x17 nŸ•\x11 ' "
b"|[\x11 °¼œFbŸY/í0\x16 ˆ "
b"|ÁæºGüK讋i#˜~ª "
b"~WYlôšF\v º\f Ðý”Ü×ä "
b"\x7F Mlå$RIáâïr┌Ńþ& "
b"\x7F gÈjJ³H\•ž$Ædö½ "
b"\x7F üâå(¤B2╝\x1A ║UíèÉà "
b"\x7F ¢+§ÝýC\x03 ƒØd]àl\x10 þ "
b"\x7F Ô6\x1E ÄYL;ù█ì¢9ó¸_ "
b"€\x15 U1^`F\x08 Ÿ+æ…îõ\x06 € "
b"€0\x08 o÷D†‘‡³Çín¦Ó "
b"Ç0û┼µ,D▓ìzÞ÷6Þ\v ß "
b"€Ev דLù¿bà\x12 'ÁoT "
b"€l\x12\x16 ïÓEþ¤XW\x08 £—…™ "
b"ƒSBLj²FïxØõØk\x0E Q "
b"ƒìß\x19\x15 ÃC/¹l7(ö?mŽ "
b"äy├ôÞ\x7F KuØ▄Ì\x18 c▓{§ "
b"„|ê‰>ÄA,¬¤ç!uâ-ñ "
b"„üZ`$\x1A C+žfЏk\Äë "
b"""
…Ëkâ¹øL¨™ý•Õ»¾\n
c
"""
b"…ýÄ\x1F 4HJ§’\cçhÈÃò "
b"†HøOÁóJЧ‚I\v ›\x07 tƒ "
b"†k¹%\x1A i@÷´R!%\x16\x13 9p "
b"†Á[5bBKƒ¾\x12 "%áïË "
b"çd\x1E ÂüÈA\x7F Á‗%Æ\x13\x0E ÛD "
b"‡†Û’\v 3H"®‰Á\x04 (Þd¸ "
b"ˆ \x03 —"~O»–\r •ÂË`\Æ "
b"ëo1hØ~Jß╣=6üTÀ ┼ "
b"Š*t\x02 ú:JcŒCƒ@%S\t Z "
b"бØ{Ž\x1E Iá—ñ\r È4^P— "
b"ï*■]─éDØÉ░:ðKîB "
b"ï┤æ?_▒Nn║Ë\x11 ØY▓g "
b"""
‹ËÎó\x08\v E!¤?ÔŪz\n
4
"""
b"‹ß!hü·Ou¾»)Hhå16 "
b"Ž\x01 ¶ì\x0E ¯J$‘0<,Ï.\x12\x13 "
b"Ž\x11 »UÕ\x16 Oä´¹Ö¹Šür· "
b"Ž0d\x1C 7·CI‚Xn˜\x08 S%‹ "
b"ÄFô\x08 █rL─ì▓õ!M╣±═ "
b"""
ÄF¢e6ÓHج³!dgk\n
Ð
"""
b"ŽHƧf\x03 OÏ£\x1E õ\!Âll "
b"ŽÑ¼Â;šD‹Ÿ=ß23þ“C "
b"Äý\x18 Õ\t\x00 Eæï¾ê"¿Éò¾ "
b"Åi╠\x12 u8BNæ;!çw─áú "
b"Åntï╣\x13 FÉó┴`\r \f Ó1x "
b"Å¢$/á▓A\x1A ┐\x16 Ùµ╔|T╦ "
b"É\r µ┘W`K¡â´d\x00 qRWJ "
b"É\x12 p ╗\x14 A\x0F êMÄ'╝Í¢¿ "
b"É&▒I\x06 ?L\x1A ÿZü▓ó▒S. "
b"Éíæ\x1F `XKb¥r└╝ófÏ? "
b"‘Ž=“\f zL–‘\x12 Ô#æë† "
b"ÆT2;ì\f Ey¿£®\x13 Y7▓┐ "
b"’toÝ+ÅO\x02 ·ØÊMâ0\x14\x0E "
b"ÆÌìè³\x03 I█òå\x14 ┘ÉSþë "
b"“\x1A 5&0"CEš†Õ\x19 â\x1E ˜) "
b"ô»¡Õ\x03 ùK÷üPç\ ÿ© "
b"“Ï¢\x10 {\x18 O£˜’(bw\v % "
b"ö\x16 l╬ùºM┼«ƒn┼IüX9 "
b"”\!ø’\f B$§…yàDó´™ "
b"”wBÄ~SE\x08 ¤f{eÕ¡\x06 z "
b"”™\x0F q³CLõ¥{d3Ÿôê> "
b"”ßî\x02 m2Båº*x C²ßƒ "
b"•2Ž71ùNý€C3lÔâuê "
b"•>MZõ†E2¡fCTUflÆ "
b"•Ê©{ÍøLeƒˆ8\x0E Õ’,“ "
b"""
•ÙN\f \n
$A0—/ipñnï\x11
"""
b"–âÌë<KC£„=\x7F\x12 §\x00 õ\x00 "
b"—09wìåM‚ž§™Æ;*m[ "
b"˜ŒØËc\e L\x08 ºÕÏh¯¾Ãœ "
b"˜–\x03\x14 \r B¬Ž\x03 >•E‹7… "
b"˜¤iwËí@=Žê¬|Ý\x19\x01 I "
b"˜½ÿ’^ŸNÀ’ê‘î÷6¹ç "
b"™OmVjABUœ\x14 |\x7F ݯ\x15 ½ "
b"™cËeš¥Ct¥¨²{ï\x1F ¤\x16 "
b"™öp\x06\x13 TD\x19 ¯ _³u\x01 j§ "
b"šFO=6<L³‚\x16 ^œ»LSà "
b"ÜP¿J▒┘Dø¼ı®ý▒\x1F àØ "
b"šdEsf\x0F N<´[Î%ÿ2\x1E\x1D "
b"š¡M猻@ »CLáú“éH "
b"Üó6GæBIØ×\x00 ▓ÃÑ\v *┴ "
b"""
ø\x1F ·\x06 ╣AE§Å\n
p╝-¡\x11\x1F
"""
b"›¶þÙ‚–@ž¬\x14 W‘zAuu "
b"›½Û¾Ù½G†¨Wg2\x06 ŽIe "
b"›Â³Øª\x18 Hž‰î*øVž\x01 { "
b"œ\x07 ØŽ-£J<—M¥\x0F 7\x10 %! "
b"£(=ÉèM╔ëò\█└{ Ó "
b"œ©¦ÕŠPJŽ™Æ\x12 ¯«\x14 zÎ "
b"Ø~vM¸²Hóª¡Cº▀K!\x1F "
b"×>ù,SúK╩ÄìNâÖ/N└ "
b"×°ÙêÈOcü\x11\x15 8\x03 Ø╬¢ "
b"á4lÖPìF7ä£┴é╝LÉó "
b"áè\\x18 ÆØ@÷▒ë;%ÈÐ\x14 À "
b"¡lõ”çèA%¿UZõPÒò˜ "
b"¡r1?ÄÇOœ†\x00 šAþÃ}X "
b"¡š.\r óIMI´’ „xVnÙ "
b"í├òâ.#Ofñ\x02 HÅd°ð, "
b"¡Èƹ´ØFóе\x17 qxHJ\x19 "
b"ól\x00 úõäBßê÷rÓ5ÓÅ "
b"£¨N“¹ŒOÛ¨¯nOÛ\x11 ÷¬ "
b"ñóìÃ▄8IpÂÅ\x19 ¨&A\v b "
b"¤ºu9\x02 fF7”ÛáE\x00 &\x07 f "
b"Ñ+═UØ┘KùùÜ{âµ`HÉ "
b"¥•°›\x05 àIw»ÂÛÑÂ6«) "
b"ÑØ¦ÂMPCõ░\x1A u\v ¨Gó² "
b"¥Þü’âbMÏ©ü…Å[x "
b"¦RV}=PAÜ£Ñ;B‰îü\n "
b"¦t7(!•GÕšâ5\x19 ¶þwâ "
b"¦zà\x0F 5\x7F LR‹ø±z\x08 Þ*\x1E "
b"ºG÷\x01 ü┼AµüSP\r ~¾µÓ "
b"§“?[2óJ\x1C ŒÇ/iáŸàÁ "
b"§¨e’|^D\x7F œ\x7F Š¦Ù¾éÈ "
b"""
º¡jûeÛ@3¿Õß\x07 \n
ìÙD
"""
b"©N\x11 p7©N!…PøèäT÷- "
b"""
ªY|¥èÆ@ô¯C²\n
bL<\x04
"""
b"ªœ—\x15\x01 #I߀·¡.”U4÷ "
b"«T\x11 Çû‡C̲Ý\x18 ;GÇ\x15 û "
b"½┤àÔ:lBSî-þ²-ØC) "
b"""
¬\•1€\e J`±9€Ž\f ¿\n
\x1E
"""
b"¬]YTÅoCT‹üNAD° "
b"¬–¡ó\x1C WOÈšØ1j¶3À& "
b"¬›q\x19 †ŒLÿ† IÙp6ñn "
b"¬ýu†Ð(Hñ¬€\x1F Gvï¤\x14 "
b" ³^ì¬CÊŠÂðÌ>\x06 Ì> "
b"8Fà\f èGà€¬{Óé\x12 ݱ "
b"T{ÝúÎG¡¬ÂWê¨z‘Ú "
b"sZñëûB\x1E “ä\x08 °sĨš "
b"š\L\x13\x03 A½º4^ʉQ\x10  "
b"®Yµ»RŸM¸‰Ì`º¸(¥² "
b"«Ø├^"!GЫ|®¢\x01 )&t "
b"®Ï\x04 ±¡ÈJC…éæ\F\x15 d< "
b"¯\x12 ?¨cÊD\x01 ¬1Y¥š-ó¬ "
b"¯iSQ¥kIµ‚P)%TÅÿ² "
b"»iÉ\x0E ªÒCd╣é|Üð<─▄ "
b"»×\x19 q^\x03 NöÁ¢ØÂ©ú▒2 "
b"""
¯·ËÇæ\x02 C\n
¢U"\x17 "ý+\x10
"""
b"°\x16 –P íEÖ‡uFÐ߯Ќ "
b"±Ï£ÖñòCëˆq\!æhÍ\x1A "
b"²>~T?ÖJ\x10 —Dšn\x1C n>ƒ "
b"´\x06 0ÝW)A•žãMu<µp\x0F "
b"µ\x14 ]k=_AÓ°\x10 _/ô\x18 nŠ "
b"µÞåëàÑN\x16 ¢FÛSk\x06 žW "
b"µß©åBìOì¿=Í–‹ù›\x13 "
b"¶;\x16 -VUO¦Ÿôy$‚\x04 R "
b"Âij\x7F YXBÿ×█¦B\x18 Kؾ "
b"¶ÞÏ%€\x15 DH›¯þ\x10 ¶•\x00 ¿ "
b"À\t Ä·ËÿH ö¾\x07 ØóL\v N "
b"·£´Ó\·Lu¦ó”v9‘DÚ "
b"©T¢Ã®ýIÞ«pÉñ┐»KÌ "
b"©ì2uuþMQ▓CX═\x04 ╠%É "
b"""
¸ë\x17 ›\x10 TDoºvZ\x05 \n
\x08 fº
"""
b"¹\x05 4\x04 ñ…GÊ€5kÍZ\x05 n\r "
b"¹ˆ„ã „B.„ªY…\x15 uÇZ "
b"¹Ñ<I€+@¸½š4èÊ0uè "
b"ºA8Î\x12 öLã¦Mä:Q\r ©6 "
b"║Ïè─\x03 ÌCq┤ìµ\x04 ¼Qá\e "
b"╗ÖÅB-½D>½Â╩┴d\f µ┬ "
b"¼P8³\x1A šGf©øüÜ\e ¾Y» "
b"½Õ\x02\x08 ;\LýŽû\x11 VÖVº\x15 "
b"¾©»dª¡CJ»ÀíËbLe\x18 "
b"Áþ\x06 3å$FX®$^\x1A\x11 ¹ø‡ "
b"Â\x0F ”8fçM\x1E ®[?\x08 8º`½ "
b"┬>Ê\x16 i¿DØèe\x0F ╦┴Yÿ "
b"ÃÖéh¥Hù¤þÀ\x05 ³#’\t "
b"Ä~\x17 %‰P@à—ûaßið¯+ "
b"─¯Å▀ìE\x1D ▓O`ÓäÂı┤ "
b"┼)îÉ!■Aüîlë#+\x16 ƒ´ "
b"ŇT\x11 IJOô‹ç–A"¡\v U "
b"Åø„†\x1F ‘C\t §h7®\x1C û2Ë "
b"ÆTÛè\x06 @I¢£wïi«eÖ3 "
b"ÇD9\x17\x1D oHŠ•‘o*§ðok "
b"Ç©Æ9>HïœèçËá<æõ "
b"ÇãœÐ_\x14 M\x01 µ“\x00 iìJìß "
b"╚æ┌ÅÔfG\x1A ¿64╦[Cg$ "
b"Èþðnö\x14 Nøµ\t …Uƒp•Î "
b"ÊYœ\x12 ë\x17 L%‡×5ã\x11 .w„ "
b"Ê«5ºí\t CxˆcÙ¬‘j`Á "
b"ÊÔ ÛŠ§C¢¼H\x14\x05\x15 Ñ©– "
b"Ë\x1E +¾«B/—WÖ;ÔŠæ‡ "
b"╦cAÉÒfO~î²R▒ôtOÿ "
b"╦vú┴P©JBïØ'{ÆAd┬ "
b"ËÈ#)å\x14 MVŽ$\x00 [&\x16 © "
b"╦Óv`\x00 ïF=╝¢\x12 ì╝\n LÓ "
b"""
╠\n
WOØ·N¤▓▀#Mº\x16 ª«
"""
b"Ì|r[¦ÀFœ¬ÎÕ~|\x12 ¢ "
b"Ìïd€éŒN´„”¼SÆëL "
b"Í.Ë\e »\HH‚¶N•ø½Ü\ "
b"═┴tf}┤HØäx░¸`fªä "
b"Í÷ˆ\x1E áÉO€œ¢w\x18 #p5É "
b"Î\x1F -¼:\x7F B½´‰Mc´ì\x12 "
b"Î+.\x10 ÎÁ@b¨Éxûjõ#¡ "
b"ÎÍÉ‚\x17 ‚F}œN\x11 §Ù\f Z\e "
b"¤9qRå‗I8ÉöëmÏ█ï+ "
b"Ï\ ÆÎ‰M§²eî—l B¹ "
b"ÏkõbÈ>D]¥gnÉÏ)æo "
b"Ð-Û^h‚MÀ·dЧ0›YË "
b"ÐBV\e aöH´”q¶\x1E §Gyc "
b"в\x00 Ç`ÿ@º›7\x05\f -æ\x06 2 "
b"ÑMñwÌÀDïžìðÙ¼\x15 8§ "
b"УìrÖÚI█ƒKy\x19 ┬└┤ "
b"Ñæ3Lj>AÑ»\x02\x12 6‹bU§ "
b"Ò#w¹«¿O&²¸M׊ây• "
b"Ò¾ \”µKÖ¢<µ\x16\x16 cìú "
b"Ó\x1A\x12 ²ÿ$Gu´ctSDÒ•\r "
b"ËbR9\x13 µANÿ¢░\x1E\x1D É\x14\x17 "
b"Ó{Ë\x05 êÔLЇ·*QTÍ7k "
b"Ëë╬þJTD,Ñùü\f Þ@>J "
b"Ë».]ÞtLy»ÒpzüWýL "
b"˸xû\·F\x01 ìc┌$\x13 \r "- "
b"Èty©41F{ƒ\x11\x15 vÅ£\x12 ╩ "
b"Ôš\x7F æ\x17\v KŒ OA3¾ê×, "
b"Ô·\x0E £ùSF\t ´¹Ð?´aŽ\x03 "
b"ı-Ò%ì´Hëæ▄^\v ¥mW1 "
b"ÕwÉîÜÜHâ£\x07 ˆJº¢uä "
b"Õ„µ\x04 ×fBžø1,cy\x07 ) "
b"""
ÕËö\x12 §\n
G0€¬\x1E }Ø\f v\x01
"""
b"ıÞSÚú¶IØÿ¦\x1E °\x1E £p¢ "
b"ı¨¿M¶IıÅÍ░'\x1F ò1o "
b"Ö˜\x04 –éPK\x14 ¡_^4¸&=± "
b"×+.‚A\x02 L¹™à\x7F UH¿Ò\x07 "
b"ÎM ³î\x10 G─òA@\x1C ü]èª "
b"×ýšg\x18 {@\x0F ¹\t °Õ\x12 ßÕß "
b"Ø(9B°<Ia!›m\x11 ëWk "
b"Ø9‚JÑ/Gh•¾ZwG¬ê¸ "
b"ØX,\x15 8\x16 M\x15 ”Pö¯T4†€ "
b"""
Ø{ˆŽ†\n
Hu¢8âa\x11 Wû6
"""
b"ÏÆ▒¹}4E6üxGº\x1E ö▓\x10 "
b"Ï┴G▒AAI\x07 ü#âf\x03 ─lA "
b"ØýJú1M¯„s¨’¶Š©` "
b"""
ÙÜ€´\x08 ¬Kî–\n
\x1C Õ\x1A šî¾
"""
b"Úe\x14 bí9L¨šÇx\e »\x1D ’L "
b"ÚŒ˜m°ïF\x18 ŠêœSx\x02 `“ "
b"ÛObæ\x17 ULϤ—ù\x02 «¨6+ "
b"ÛZ®Bi\x11 @¨·Ò³6>ì\x10 £ "
b"█\µ\x1E\t óGbÉÙñnýn±┤ "
b"▄\x1A ü"t├Aàï\x10\x1A äk┐9■ "
b"Üp‹''ÉO…®rb\x08 ÜÝ\x02 . "
b"Üþ’Z ÑJˆ£ä·aÇr½Õ "
b"¦\x01 {\x04\x04 øL\x03 ╣ðüW=hLL "
b"ÝÃþ•¡±L‰‹_²1ÿ‘\e Ò "
b"ÝÏmGæƒ@¾½eV{Ìk“§ "
b"Ýñ\x18\x15 á\x17 K\x05 ½–þZ\x03 #‰æ "
b"Ì*ÈÊıÉIdÁ┤Ó´ú2\x16 ÷ "
b"""
ÞÄ\x02 P'\x02 Iò—\n
±)\x0E ¾‰Ë
"""
b"ÞæOµ\x15 CC9½%\x7F ¹Ó,Í? "
b"ßp¬žìíG#“Ïš¿ˆþ~\x08 "
b"߇ýÅ/ÖI\x07 ²°´›[È’\x11 "
b"Ó;\x1F\x01 rç@Ý®ÖGοÉ\x08 ú "
b"à;b+¡žK^ƒˆá\r ¹‚d/ "
b"Óæ`¥ÐeM´Ø5÷ A\v ╝┼ "
b"Ó¾û&ÔÉG娾÷\x17 LMÎü "
b"Ô\x06 g6én@▓ÅÜ╬,┐\e 5\x16 "
b"â\x16 ‚!´\x03 D~°Ð8å£Uøø "
b"Ô¥ª§z»O"Ø_æ®Yh "
b"ã\x07 ´©±\x03 Aé 6ŒêóCw "
b"õüYlBñA2êÖÈr/¬¥╩ "
b"äí¿M’÷Oî»’¶»Á\x06 °º "
b"å<7Ø\x14 PKù³¼z\x0F ÑÏj\x16 "
b"åÖ÷Õõ›M.‰\x18 °\x7F Ö\å\x19 "
b"æ€Ì~m@æ¥\x02 Üê<»#¤ "
b"æ¶ÎT_×A^¹‰>¡þ(z\x14 "
b"çh\x11 ‡RvI‡˜3\x18 «é™Õ¥ "
b"Þz\x0E a\x19 òJ═àÅ\e CÒ\x00 ┌▄ "
b"éyø10QJj”õxˆµ‹¶œ "
b"ÚÉn<NÄO¡£m┌┌ðqÝ╠ "
b"éþœ)#.J\x0E Ÿ‰–\x16 Û÷Ö× "
b"Û$3ñåFB\x19 Ť (µ>ËJ "
b"ëP™½æTE\„/3\x02 ~ñ'\x1A "
b"ë°M¼¿„LÞ´ÌfÎãÛí¨ "
b"ýº÷à×þMúؽB▒┐¨kL "
b"ìòÅj)wGã„éÌ\x0E ¾˜¡Õ "
b"í\x0E 0ý}\x05 Jº‰\x1D ¦ã”i\x19 À "
b"í‘Z~\x1F ¸O¬§Ï¶Þ\x0E é\x1C b "
b"î\x15 VØÞ\x7F Mö“¼½±&}^õ "
b"î\x18\x18 Ø\f :Fê´ïµÝâµÔ' "
b"î@éŸ\x12 ßD\x15 ‰O=½O ¥œ "
b"ï\x14 Šëœ*BQá1M÷I "
b"ï7\e ¦Ä\x04 CH \x19\x05 \ƒ –: "
b"ð/à\e |^IË©jµHSVå› "
b">]╩¨"@■ü¾ \t ┬┌¿l "
b"ñ\x0F €\x15 \x13 @ß¼\x03 m\r ¿ÖNR "
b"±À┐=ì╬I+ç▓┬}¢-io "
b"‗ëm┤<_@└«ÈÅó,gê½ "
b"òÞieÎýG´ºvö,P”.œ "
b"¾\x03 º\x17 3ÂAh£ØQN=s©¬ "
b"ói,õ\x1C\x11 Iw±ýïnUÚ©P "
b"ó’XÏm\x01 BQ€á\x1A Å\x1F ÇÞ\x07 "
b"ó”õ”“åLÕªX\x00 >^›ß\x17 "
b"óÑhÃWð@rª¤xl¤šq¿ "
b"ô£@mdZJ„¹;ÐàW¼(’ "
b"¶¼üÎR\x03 FÙå8\x00\t LZ³a "
b"""
ö\x11 }÷\n
èM-™àìn“ZÄÐ
"""
b"ö\x15 äñ6\x12 LÚ˜V\x15 ÆDFrK "
b"÷™B\e GŸGy˜¿O\x14 ¥\x13 ±b "
b"÷Á2ìù¢F0¹Öã‹8Y2ó "
b"°¢j\x16 ░7Mb¡\x03 ╣åqì¼ì "
b"¨\x00 ▒╚┤JD+┐hÀñ_æÉj "
b"¨+Â┼ıáJäû$│\ØûÚ^ "
b"ùü˜\x14 ’FBP°ºçpØ\N\x14 "
b"ú>²\x11 ‘C\t »óŸˆÒñ<… "
b"û͇ÉÛ\x13 O¶¿}fÇ\r …ÚØ "
b"üp\x1E\x04 Î#MÞ°fÝäÍ€œ\x04 "
b"üÙíæ\x01 'M4„)-žSáU\x15 "
b"ü஋f½GsŽÂ·ìqTª¥ "
b"ý“h²V€M|ƒ;Çûa\x05 §; "
b"þ\x19\x1C ’›\x0F K_¢”iÉó× T "
b"þBpƒhÙM‡«&[ÌW\x02 FÉ "
b"■¡▀Ø$yH^ôÅñ└░C\x0E ¼ "
b"þ³\x12 {¨&C\e •"‰Ún–—¾ "
b"ÿœª:\t\x08 L%±kP"£•ö‘ "
b"ÿÑó\x11 èûNì¤)+%¶ö·s "
b"ÿÛ7Üá·G˜³\\x0E ë¤ü0š "
b"ÿãZ\x14 :ŸO‚•ù°\x18 }~\x1A Ó "
b"\x00 \r \v sk¾I¿Ÿàkáïà×/ "
b"\x01 QT_\v .@]®í\x16 ¨\x17 /â "
b"\x01 V\x0F ¦²\x1D A\x1A ©)ı░³ÅyG "
b"\x01 g▀\x1C /%J<éçRìáJ=¤ "
b"\x01 ŠÜ[òÎFR æ¬zÜnd "
b"\x02 aïí_zL¬©Ã÷Þä&Œ "
b"\x02 Œ–£‚“G\x13 ½s\x07 ºÚJé\f "
b"\x02 ©Å┤0WLUëîV─A!ðN "
b"\x03 é|ÜÑ\x14 BxüS\x12 ípx0¬ "
b"\x03 Ç>\x03 жLs¥Ž‚¥·;*4 "
b"\x05 ,Ë\x00 SçB\f Îé7ãŒáú "
b"""
\x05 ‹\%âRLÒ¥>]\n
ŒñPâ
"""
b"\x05 تñJ2Lè×ÌýË┌\x16 _÷ "
b"\x05 £>/I¦O1Ÿe\v q Híô "
b"\x05 ┘ƒL▒äAÙ░ÚLØ░ù\\x18 "
b"\x05 ¸¢KîµLçØÇ?øy\x12\x1A ý "
b"\x06\v åm\x18 ÿAå©À‗v¤Åý{ "
b"\x06 TÑŽ?"A/›Þ\x15\x05\x00 ¤$_ "
b"\x06 ÅIÕGMBþÖò.#ë\v ɾ "
b"\x06 ê+î{+IM¼·Ÿ@*–EÕ "
b"\x07 :▓/$ìM¹émÍS{wrñ "
b"\x07 ”K·=ÝD¦±aºÏ†üI\x01 "
b"\x08 E}²\x02 VF?┤\x1C \e ÑôXÉ "
b"\t ÜUï1\x1C IØ’45ð“ç{ï "
b"\t ÿçì>0Oî¨zbsÀ"æð "
b"""
\n
(\f üÐ#Aä«Å├Æ1Õ¸!
"""
b"""
\n
Õ¾ï…\x14 BÝ”:…:Z\x1D ÓÍ
"""
b"\v g8Oµ\t NB³\x18 É)í‡pÅ "
b"\v Ü`\x07 ],BÜ€Ò\x1C\x1A ½\x06 s´ "
b"\f ˆoJ`jD‡™œ\x12 öŒ~°z "
b"\r ù┼Õ┤ÒJ4ɪ\x07 æNé\x15 ╝ "
b"\x0E xCìD–LJ»z\x14 šÿjâ· "
b"\x0E ï~ÝÅzC3»àŒ?¸µžÉ "
b"\x10 $ü“°˜Jx•!nÔ¯D›µ "
b"\x10 qŒb\x18 ‰NÊžx0õ- ”‚ "
b"\x11 ‘\x10 ð„úJ/§‚\x19 w\x04\x12\e 6 "
b"\x12 ╗ÅÛÌ┘H.┤´Û,Ú\x12 n) "
b"\x12 Þ%`”ØI\x13 ‚ÛGˇl\x16 ï "
b"\x13 Žm\t …\x04 I\x15 ¸ÿ¯Xô\x00 Öd "
b"\x14\x11\x16 üØ®J?±ÞE\x03 Ê^\x0F † "
b"\x15 nñÛ¢•E\x1E ’µ\x1F LûrÎ "
b"\x15 Ȭ\x00 |ñOV²,å\n àz¶® "
b"\x15 ▀┴3█cB(«\x15 W\x03 ■~\x14 É "
b"\x16 ¢÷‚ØOKQ³B1œ¸#\x07 Ë "
b"\x16 ú\x11\x0F e\x15 E£µÖOU\x02 ˜wz "
b"\x17\x04 ˜õ\x15 ¼LTµ¿.ç~HIr "
b"\x17 CÏÚ\x10 ´Kb˜+\x11 …•²& "
b"\x17 ºó{yÄI°ˆàäX85:. "
b"\x18 &ÞDìÝE>”|Ìø\x19 ÜÕÁ "
b"\x18 `ª╠VØO▓É`qÏßþñC "
b"\x18 ’GÒµ\x0E Ju¢üô\x16 ¨±b "
b"\x18 ¤åè–ËAóŽ~‹É:0š "
b"\x18 Î}\x13 ¨$Mäø¡/·\e )€ "
b"\x19 $)¡dYE9¯šà\x1E ¸l¶Þ "
b"\x19 Àç܃#NEº!XÁlv\x01 X "
b"\x1A #‰\f «\x13 Hu¸(È27Žäs "
b"""
\e\x1C \n
ˆ¥ôG%¯çi®\x10 &J€
"""
b"\e wý} ÑO\x0E ·D\)\x03\x14 tI "
b"\e Ŭr×€B§¤;Ë깘›È "
b"\x1C ìSzÖ\x03 Bm»ú´Û#Ái "
b"\x1D }ª²Z‹Lï¤Ùîn¯H6Õ "
b"\x1E\x10 }œúØL±ª!«dÞ\x03\x1F á "
b"\x1E IÉ─¤ºH§│c═¨¼H. "
b"\x1E œe[a&Eg¯ýgÆ„ß\x13 O "
b"\x1E ¬8c, F²Ÿ.þÎ/üy "
b"\x1E ÉXÝ\e tLœ¸Xºv`$&! "
b"\x1F ê$þ2Ä@]ì4ß\x12 2ÀØd "
b"\x1F ªM\x05 uHCë˜CxK'¬¹: "
b"\x1F ÷\f ºÔJMk¼N\x15 Ǿ>½O "
b" n±Ãv,J,©‡éŸ\f v\x07 à "
b"!oÈ\x18 âºLa‘œ°v"@\x17\x13 "
b"!‹òÉ8TM…Œ\x0F ’ÿF\x0E\x03 e "
b"!’Ý,ʼnH.¸¨œ§ùÀ‹¹ "
b"!┬ cØøF*ô2e¸IH¸Õ "
b""\x19 Á‡`]I\x1A ¦g\x12\x11 ÎiK½ "
b""â3ª#£Fغ¬1!"±\x14 ¸ "
b""æ9Ì€«Jwµê‡\x01 ¥M’¶ "
b"#s-Øw¤E\t ‹à«Õî•\x19 é "
b"#õ\x0F N¦B\x14 ╣üUW\x1C ü▀ß "
b"$/>)\x01 {Hײá÷ôÕî%\x7F "
b"$DPÞ¿0CV±ñ¾9\x01 ¨Ñà "
b"$«²Ê¤"HS–h¿]k#qõ "
b"$ó}´„DJ(Žâ\x02 [º~\x1F l "
b"%u\x11 BD¶O‰§\x19 jÕñEô\x03 "
b"%Úå0üßNÞ”Eþ9\x11\x17\x06 v "
b"&×é\x04 FÇIq£ÇëTŽä|Õ "
b"'4\x10 `tÙBäé!\x1A &ûy$ "
b"'5\x03 Ør_@ü—¦¥ñnå$M "
b"'?0¼\x12\x01 EŸ© ¾˜ä‚šU "
b"""
'Äõ\n
Q+J$£âš‚\x10\v ù\x0E
"""
b"'Ù\x00 ±0\x7F H(®õW\x11 XY™¯ "
b"(ƒoüV¯GÅ©ý0à\x07\x7F ╦Q "
b")cDÙù±Hν\x7F Û[Jè\x06 r "
b")¼‘îßìNQ–.J\x1A ±Ö\W "
b"*&¨¥jnE#¦\\x13 |\x1E üh\x1F "
b"*B]«ÖÌC±¸\x14 Lé\x10 S0Æ "
b"*€u©ÂZAý–J\x1F š´ÅT¼ "
b"""
*Ã\n
±¥@¹Å0M®éà×▒
"""
b"*ÐV\x00 i™K\¬Q\\x11\x1F ¥Øí "
b"+;█bmJLØü┘øÜ2WV\x05 "
b"+²'Äç H\x07 ¿É┌J>ü¦É "
b"+■ƒàiqNá│Å├░▀┘¨\x13 "
b",ê½Ð|KJîŒ7&d\x00 {BÐ "
b"-+6ŒþBMщ\x12\x7F äëb\t "
b"-0²7ã@K\x14 €\x18\x0E ‡¤Á£> "
b"-E»÷fDH摼¦Bk\x1C n` "
b"-la¦*\x11 DP‰©wxZn¾Z "
b".\x13 Û«u¤F%”\x1A Áâ^Ÿ\x1C ½ "
b".Ó×1ØTGíò¦îí_K╔à "
b"/9¢½nüE²┐oá+\x0F z?\x16 "
b"/eÜ+B³MjüHÑóp╣Z: "
b"0\t ” ¢aDF³ŒÀ‘¢ræ\x1A "
b"0|¡+õ&IÖƒÀ\x1A ¶ti\x05 "
b"0è࿘\x03 O@§÷îòOªí\x02 "
b"2ž)Ž<EKu›B꼄\x17 š0 "
b"2ò[*\x15 9J“‘\t ¯TwW$Ä "
b"3\x07 Òû]˜C\r ‰%ÒåX+•Z "
b"3æäÇjËIu ov!86\x1F "
b"4îN.N┬Kü╗╝ ÇM;E¡ "
b"4ÛµøŸ\x17 Cܳ÷å¾¾¦!\x1A "
b"4ÜßQm÷LG¨xŽG]¦ÇI "
b"6¬F,îÅO\x17 ¶ÿòüj;±% "
b"6ËNSl¢IsˆÓKñ©aü\x1A "
b"7{'ÅzM\x06 ×þbæQÌa\x08 "
b"9OEÐþpG±Ž\x10 ¶y\x0E ÚP½ "
b":R7\x10 O\x19 @ÓüÒFy╬]þ\x11 "
b":Tm•\f pNžšÖ\x16 ™á[¦Š "
b":^OpþXJ”‹î!áo\x1C\x0E ³ "
b"""
:q¸zÛ\x1A Aü┤¼ï¸Ø\n
w
"""
b";ŽYT¹´Hn‡Ið¯[îçÆ "
b";×-\x7F œO@/ºÚ·z1\x16 _Ø "
b"<h¤¬:\x16 I¹¬îÆœ˜G|‘ "
b"<‰ý-\f\x15 N#²‚å ”8”· "
b"""
<║£╣ËIM\n
ìv¢\x0F pNw■
"""
b"=k²ª•\x1D H,§ƒ¾·1´«, "
b"=á░¦~øEJ│õͪü\x00 ~x "
b">7\x0E f{/GT¤™\x0F ã±Õ}Š "
b">ZûoUÓHÖœlK\x14 ®$¸ "
b"?Š#£DøJX½O|®qôªª "
b"?ðNÈ„ÖD)ŒE9"ÜÄ8à "
b"@\x01 2ÈIïED§\x7F З\f ;Ë¥ "
b"@~¼´g@HÕœ¢9ß\x19 xÒÆ "
b"@¨\x13 §Ðû@P©ñ\e B\x1E AÊ¡ "
b"@õp}á)Fô«5U\x07 OY\x11 Å "
b"A5šê;ÊL'•\x08\x1E ˜\x01\x1C e\x16 "
b"AJˆø²%O\«*IÕ¶¿ì; "
b"AY¼®WŸ@ÈœI?e÷\x05 —\x0E "
b"""
Au\n
‚«˜Lâ¦có£ð<W\x10
"""
b"Aì¬ïÈNDw½‗(¨L█┤\ "
b"BC§;\x1A –Hæ°\r Ù]:*\x1C r "
b"Br|W KL>ØJO┐±õ\x0F ╗ "
b"B·Ÿ¦kðF䎉у>—’’ "
b"C5Þ\x19 íþM¨˜5´Ã¢b "
b"CÄ\x05 ð\x05 øK_„¾À\x03 ‹ºUÍ "
b"CÚ÷çšÐDR³7²c,øôr "
b"DYÏ6KpKØ¥Øo "ø_\x1C "
b"DªÍ\ê]G\x12 ¼e*W~\x08 §ž "
b"E–\x08 fîCKs \f ¬Ã¼Ý\h "
b"E¢2i6AGú†&‡ÌãI•ª "
b"F\x1C =eÅúEzäà \x1A µ┬º- "
b"F]\x1F\x0F .\x1A GA”T<þ/[iÎ "
b"F‹¹û5åMù©QMþT¥JW "
b"HNUâ07BŰ\x18 sÕõÕ'[ "
b"HÄa¾¹\x0F O[│Ú"YìÆâu "
b"JM\x11 *œõM\x0F ž–cõøâ\x0E = "
b"JS;\x19 iÛC~®(h8ªÉþ" "
b"Jòî4¼¤JU¤]ÏU\x01 €§‰ "
b"K\f ½b1EC¯²ùèYŶ¢B "
b"K\x12 ñÆ\x19 †EP¥ß[f01ƒC "
b"K–\f ½Žˆ@Û‘Ü&(bÁ’\t "
b"KÛ@Ç\x04 Ñ@&œÕ\x10 O\x08\x01 ‰‰ "
b"L)ÇYŠBN6³~hcBozE "
b"""
M¿ïU•|K\x04 €æ¹pL+\n
P
"""
b"MÚE▀ö³MPÇÉ@¸Iƒ\x18\x7F "
b"NCþt\v VF[µÐâ›ýnz\x19 "
b"N¸)&vìL:¡\x1F ×uI\x02 %Â "
b"O‹ÿ\e\x02 rC»‰¤WFÌ\x13 r\x1F "
b"Oû\x16 ╠ïkAqÜ┤▄¼─¹Íü "
b"P5s¥\v ›M¬‡Í q!›ÁÎ "
b"P¸_Ñ\x0E DB@´®_×\x1C ¤¬Þ "
b"Q“ÿ¥Þ†H¡¼û¡úŠ&À+ "
b"QÖƒêbíB¤±\x11 RNö…|J "
b"REM²ùB²¬\x07 š)oEJ\x10 "
b"Rø²ƒúâIï‰ÐÔ‹X\x02 Dc "
b"SýüäÇùJjº¼!5┴5þx "
b"TE K\x02 ÕB)’+ËâÈ‘vk "
b"TR£Àa├M\x00 ü+Wé\x01 à0ý "
b"T\x7F '†ï\x0F AܹºÍ˱œ´s "
b"U(|ÿ¢ªNa¤'|™yƒï\x15 "
b"U7Ê‘}ÓI†”XõžZÐÊá "
b"UD’³\x19\x7F A̧0†\x13 +»\x13 Ô "
b"Ux¦i§\e G—·c)X³ª{, "
b"UØKÅ╩;LıÖ\x01 Ø\x0F -8fq "
b"V\x18 _gÙ\f C²ž—nzÈ\x19 ¿P "
b"V\x1A 0“^ñ@Ò¹çÜ\x02 Ñ }ø "
b"V&áØ}ÍN'ë$UG)ûÑÄ "
b"VCÉ\x1D èéAtüh╩╬YÚ╠┬ "
b"WEÌ\x1E ò\x02 Fr¡ÿ"<('ç\x1D "
b"WÈnê~ÙAŒ˜‚±~–Àif "
b"WõŸ|£IOK‚hDz<Œþ "
b"X̽}\x06\x0F G‗ì│Å▒\x11 *;§ "
b"Y\x16 [ü(ëC2×ò\x06 ô"©÷ÿ "
b"Y\x19 «ÎH6F\x1C ˜<Gë\x17\x05 è# "
b"Y"œ\x06 ž“Mö±¥\x1F Rì¼\x03 5 "
b"Ye\x04 ¯\x1F RFœ…OUVG¨<Ö "
b"Yqº9ÏGCj±ŠŽ\x1F ;6ùÙ "
b"Y£Õ■░\x1D L▄üGÌ\x16 ╣ÁP¦ "
b"Yã~;D\x03 B¤¸\x07 »3×SÌÀ "
b"ZûŸ°éåF}ر\x05\x0F *+ë "
b"[ì*\x04 Q\v @\x18 ▒Iä \x02 d\x1A t "
b"[ºæÎšy@Õ¸Q+Ç^\v …_ "
b"\[\x0E k\f .ATò`▓[ìɤ? "
b"\dÇÄØRG\x13 óc▀\x14 n1ï╠ "
b"]\x0E ▓î´=IW¥?ÂxÀÇÉQ "
b"]\x1C\x01 $1óFó6¼I\x16 .ÂH "
b"]TH†ã\x10 D0‚½ÐÞþR¾. "
b"]é7n╗─D]æÏÇÚþÞÅø "
b"]ÕÕ/\x07\v IlœUi¹/Aƒ£ "
b"]áï¯^\x16 By’\x1C v…ÁyCL "
b"^{öŠs‡N¦½Ñ7H\x17 y¤ß "
b"_\x01\x1C !\x02 »Muä├W©Å±¥v "
b"_\e ÃÌ\x15 dEÇÉëP▄pÉÚû "
b"_~q\x06 ] A{“õÕv¶ïôª "
b"_Ÿ‰Œ\x03\v I–ÿ1\x03 Áa\x06 M "
b"aÕêié[G╔Å╝3\x08 4áÎ} "
b"bÜhª┬JD╣╝·\x08 a┌ü\x03 r "
b"bÌ\v 6®±B\x13 ÉÆ\t ║ÞÆ×\x19 "
b"c'é@¤\x08 A·®ßÛÄT¤\x10 ½ "
b"cF\f\x17 4ÌC`¥If¥¦\x0E ‘, "
b"cì–Ó\x01\x00 I‡‚ió•t~É "
b"""
dí$VoÔLý«ÂÉ\n
Î}┴└
"""
b"e[¼ØÜËMtï zaô\x07 Ø\x0E "
b"e’¤?³L@S‹`kú’SéÄ "
b"f\x03\f —‰\x7F Oܼ¶\x01 €#)J/ "
b"f\x10 Jç¢Ì@Á”ŒvG\x14 £œ¼ "
b"g{\x18 ´«ªE2˜Ë\x0F\x11 áÕÇf "
b"gÀì\x01 …VG\x06 «µáIÁ̸³ "
b"gÓ¶½b½F¿½ºx~œ\x05 }e "
b"h\v fÅQ·G8×\x04 ┐ª¨LÄa "
b"h\x13 €aó½A\x1C ¾ï‰6Ñ\r IÔ "
b"h\x19 kà[ÇKkŒ'¦|;£z "
b"h”ññÒñOù§Au¹MÉ\x0E ¶ "
b"iMÙNk<N#³˜Ã%3\x18 1\v "
b"ižŠÖ/\x12 C]¨ßfX‰µ>\x1C "
b"j!C–ÿ9FI‹"v\x06 n€ÐN "
b"j/xG£\x17 AÝßVt’\x17 a¶ "
b"j;Tá|öG\x13 ºŽx\x03 ¹À¾« "
b"je8ùš³I0•‚Ÿ\x7F ÀI®ò "
b"jÓ═Î/ÇI┌ëÎzØM´\x05 Ó "
b"k┌1µÄ±F■½¼2s¦\x10 êì "
b"kóMfÆKJ5–Y~’ð40Ù "
b"l%·G›\x18 N½”é\x7F\x1C ¼\x1E\f ? "
b"lˆ\x1A ‡\x11\x03 A¢ C¼š|\x02 ?ª "
b"mxø\x1F ?˜AW¦äØ\x06 r¿\x13 ´ "
b"m£A͇úIΕ.ì¥êQZç "
b"n2R{‰\x12 N*½ÞZ‰?½rÚ "
b"ni©¸DYFpŒì ߆ShØ "
b"nmœ0ZZBO¾{Ø„àP³z "
b"n}\x0E ‘c\x13 JS›Ð\x11 ê©\x02 \\x01 "
b"n®Ë\t ™š@\r ¬X±\x19 3go "
b"n¯=!Æ\x10 F—”[o\x00 ›\e\x13\x1A "
b"oˆa@íoK2…ÓÔƒÿvW’ "
b"pe÷+>NF]¦SØn\x05 Î\x17 é "
b"p¢\-ýäD† “„G#\x12 µ± "
b"pÞ¦kemJKÉ{\x0F ÃJ¯u= "
b"pðx,Ù‡@%Œcˆ\x0E aíÎ: "
b"q\x1C Sò\x03 &I┴ü|6Që´*█ "
b"qâ\x04 XÄwCà‡ïCOx:œÛ "
b"s\x0F ZP'\x17 G|┤Ê6¬░ÅR\x00 "
b"sI┬J?}H{üìHî%9XÎ "
b"s[\v R\x05 ¬O\f µ!BÙ¶Q,² "
b"si4ÚYûF×ù|░êLìÇ╠ "
b"sÝHލaDGŸc9L7*–› "
b"tI\x18 ZS+Fº³™|>Ûíú´ "
b"t®’\x06 ÝgHH’‹@Á’_ƶ "
b"u'\x01 åÎwJì»\x7F f§V—à "
b"uÕoO\x7F fLš·¨Kù/ÒL\x11 "
b"vØÅþ░èMÉÂñðgÒ¼\x18 » "
b"v¶µ‹–®@\x01 Ÿ.Lއz’? "
b"w8╣Ï\x05 ┤Aúûì[\x04 iÙæ¦ "
b"xo°.\r \x19 C\x01 ”€¥[ó\x08\x19 1 "
b"x„ÆÔØøM1 ÔR\x1F &áT~ "
b"xÅ\x0E p-;B<«\x0E GlQgÐV "
b"xéTМÖJî¢årgA¦š\x1C "
b"xõO\x16 š>LáŸV99êú«¹ "
b"y\x0E ƒ#Í\x1E AH’ÕAÆm\x17\x07 – "
b"y5ü═ñ\x11 D\t ëAÅh`ÄXv "
b"y˜zwi¨FL¼\x1E\x06 &d]¡µ "
b"yÙsŸã¼H\x7F ¨\x01 †—3#,N "
b"yù*\x07 \x1D J\x15 ©¬6Qæ\x02 4ž "
b"zcsÊì[F òëßP¹9²░ "
b"{\x0E ŸzÔúC_»ªßX\x1C P\x18 H "
b"{uwH\x18 %Kš¾EÆcœKî› "
b"|mõwï5MI³ôÆ\x11 ,ä…7 "
b"|¼\\x00 H\x02 H┴üù\e ±║E└; "
b"}5\x02 +·ÉEykªœèBŒ’ "
b"}S\x10 bM║N ¥ÅvÙ─*½\x1A "
b"}° ›´\t KÎ’'7FAq¥– "
b"~\x05 ©ŠÓQB2šÙðÿ0]ƒ• "
b"~så\x12 Q\x13 E/–òÎèÿ%>‹ "
b"~àŸ>†uMV“\x10 ˆuî\x1C [ "
b"\x7F U!ÆvLL^¸\x05 ²Ij¸ƒ( "
b"€\x1F þò—øD¨PßÓÿ<ô´ "
b"€8(¤\x02 ªF\x17 ˆÎ¹ñ\x16 á%± "
b"Ç@\x13 <«\x04 M>×ϱÙì\f\x1F c "
b"€j\x17 ‘€îEÞ¤xH\x19\x1E ù2D "
b"üf`\x15\x19 ;G$Ø┌(Çü▒9$ "
b"ü~Í\x06 ÒÓM║äZP:8Þ╩à "
b"‚0RKˆ"I\x1E ¬—]9»V~w "
b"ƒp]Ì\x0E ^Bd€-•pÀ™[× "
b"„\x10 Ë\x1D\x13 ßD\x06 °“¦/-ö¤Ÿ "
b"ädº:▄\x1E LeÉ\x10 ┤│Ó╔79 "
b"äü9µÉ<Lpâ"7\x1F sØ|° "
b"„Õh\x1F\x05 ;M\x11 °BŸµNk0# "
b"„à¡E ÅO\x08 ¿\x18\x13 0ß½™Ê "
b"àR▄1¨▓NñûЪ¥¬Ìì× "
b"…aÐb£‡N6¥øÁõýè\x06 û "
b"‡VŠ+3¡CtŸó8É\x15 az( "
b"‡bº:\t +O\x18 ©,,“B°¬Ÿ "
b"‡²ðg±gDe³™PXíÍ[ "
b"ˆ$.lS-Gœ—æy~ÍWùA "
b"ˆœc§ù[MÚ˜³Ð¡\x04 Ù¶¿ "
b"ê×>v¤{N¸üݧzL▓\x01 ¬ "
b"ˆÇÿ¡MÂIfŠúF/¼Ö4Å "
b"êÊ\x1E <Þ0AfØ÷\f Ò¾|╝¶ "
b"‰k©j¬iKVšƒ¿Y\x12 ‡©# "
b"‰ŒÜ©®CMb¨$\x1D š¤¹û% "
b"èeÉ┌ÌÑH,ø9\x11\x17 £äí┘ "
b"ï[ Áp└A*ÁìÇ»ò«ƒ\x05 "
b"ïÅJ%ÒnE¥ü\x02 \ú5mf° "
b"ïôcÓéÞN╝▒Åål\x18 j8Ä "
b"Œ~\x19\f "vDÝÈŽø%”B9 "
b"ì:!ôà¼KTØe à¾lk\x0F "
b"ìé\x7F Ã╣ÏCV╝\x02 ç>ñä\x15 F "
b"ì©\x03 \t ñ@█éª╚»Aûèñ "
b"Äv\e a0E\x1A Å;§býEQ§ "
b"Å£D╔®»H:Ñ\x1F\x07 ®ø‗\x0F d "
b"Åð└\x0F ■\e B\x14 ╝=aØ´pà/ "
b"Å▄H╗U(C°Üh×?ΫA┼ "
b"ÉÏþiÍ─@<ê\x11 ö╦G"ný "
b"É█ÄW.ÛNúû!TW■¢É╩ "
b"’\x19 A\x01 Q¸Dl·Sè]ÅmB> "
b"’j¯³\x07 \Ll£6=ª\x1D Âjd "
b"ÆÂ├Æ\t ┐LIì%\r \x17 Xð\x18 ) "
b"ôfí\x1A ╝ÍG╩ÄÉ▒`\x05 ╬Â■ "
b"”¨@\x13 §ÊBfˆ^ŠgÀ¶®t "
b"•>\x02 H{åJ0–B2A\x18 ¬å\t "
b"—O$&[hI5£¦Ê7º+\x01 × "
b"—XÖ=Ç£N’ƒ¸ü°•\x19 k% "
b"ùZ_\x7F Ú\x1A M╔©Âgê╬ÉÂ\v "
b"—dyÐÛSE…‡J0€ÙòH³ "
b"—fPRžñKNžÒ\x06 ¨\x19 >íE "
b"—›†YžÉ@0‘ìá9ÐØ\x07 È "
b"—æ0y<ÅDë²½gn²z!è "
b"˜W2‡NEH1¹\v ✙ûÎè "
b"˜šóÓÏVD¯œ\f |ï„ëE "
b"˜Ý\x1E à±$G%‘˜3Õ¡\x10 ÙX "
b"™\x08 E€¯wE˜½·•ˆ\x18 )BE "
b"™R–\x00 ¹ÿHdzYé˜\x18 «M¯ "
b"™Ö¡fšªGé¨gÉ\x12 ¬ïo4 "
b"™ä\t •\v \Mú¨ ¼çde#V "
b"™üIï²óE°»bÙ?\x1F c\x02 — "
b"Ü\e %ìÓÿCàûÓÈQ╝\v\e ─ "
b"ÜS1)ü7C└ûìî\e ª\x1D\e ^ "
b"šðÍ\x11 ÒkK,œõizš„\x1F w "
b"ø\x05 °ÄÛ╣H¶üäËZï§à¯ "
b"ø\x15 ²«_┬F\x18 ëk{ß`\x06 Å┌ "
b"""
›c~·³¶E\n
¬»Ç÷L0Ì\x1A
"""
b"ø▒/cÅFJ\x10 ¼m,e\r \x15 $¯ "
b"£12╚¶\x19 N*ò±ü*(╔&~ "
b"""
œÊƱ\x19 ÅNU£\n
5YyžìM
"""
b"£÷\x02 cõ&C▒Å\x1F eÊnßþ\x12 "
b"Ø/¤¾¨BN\ñê=æ÷_˰ "
b"ž„ç·ó,IÔ‘G1\x1C K\x1D Ü\x0E "
b"žº‰%‹.N\x0F ¼\x02 Ó7§{ð| "
b"ƒM_SÀIN▓ûÅP°ÿ▀¼µ "
b"Ÿ\x02 W|\x14 KJ¼ÒÔa\dVa "
b" \x18 :+ˆÒL\x10 ‰h>)žðå "
b" 4šÅ`M‡†¦\x00 Èÿr{{ "
b" IŠ|\x05\x14 I\x1D ¦lMÁu\x05 ;· "
b" _eξˆM¹ ¨Ñ½ÉœeŠ "
b" ¶B|÷îD÷¹\x1A ƒ©ÿÙ˜\x7F "
b"""
ØÐ\x16 E3EM·\n
ÝKæ/¶I
"""
b"""
¡f\n
$ó‚F—©\x0F ¥ˆï\t Ú\x14
"""
b"óeýÊʳO¢êúiìü¥<õ "
b"£aµö\x06 ÎFz‹Ruž\e 9Aì "
b"£†oý@\D\x03 ·'YS~ä$4 "
b"£š|’À½GÀ™pÓ˜œþÒÊ "
b"¤‰B¹\x1E\x07 BQ›Ê{\x16 fzùŽ "
b"¤øŠß\x12\x1F HÉŸÓë)à›\x1F ñ "
b"¥ìje>ëM›Ž9ýeXG÷y "
b"ª░p\x13 ÒìB╣Ö\t 3±╩»\x08 N "
b"º┬6¸YnFmª╩Á┘2'æì "
b"§Ê\r ©à E\x06 ¥¤C¬4Œ\9 "
b"¨\e Ê%4ÿG[¢Ï\x04 “s\x0E\x01 – "
b"¨<„r?lI;œ¿\x00 ƒ Ãú– "
b"¿É«Ê·A\x03 áÿ\x06 \Ë┴é "
b"¿Î\x12\x10 wD¢Ü┌ØE"~zµ "
b"©k4ÛH#N˜˜ËŽŠd^Y¬ "
b"®ó«▒█\x13 M/¿Ùɱ9ú©\x01 "
b"ªÙ\x14 ”õCC8¸î\f Ásv\r © "
b"¬■×█¾õBÉø3*ôy\x1D rÈ "
b"«'‡Œ…‰G¿›ó÷3y\x10 Q\r "
b"""
½¢x4¼\x1D HqÅs,¯Ùñ\n
\x14
"""
b"«Ëf–»aB¶©;=I†LËå "
b"¬\x1F\x11 Ó\x17 ÓH~–â06·&MÙ "
b"¬ºß®?\x0E Dð´KÀ\e hàˆ\x1A "
b"¬ýã^ö©O?™(è\x02 1\r CÖ "
b"ÿôÛ)pEc®1С\x1A –ô” "
b"®ExÞk\x7F E%¼²J ãóÜž "
b"®aÚ“Ñ,BïŽ>%+N¥[O "
b"®ä¦yz%B–ºÉãÿü"˜] "
b"¯\x11 ´|$FA\x03 ˆZ«[©À®| "
b"»ÉƒÏvÑHçô½V©▄~¾Z "
b"""
░\x14 æ?IîM\n
åO┬Ô±\x1D pÉ
"""
b"▒ÅqÓ{áL1àì2R+\x15 /┌ "
b"²5W\x11 ÜÜHتÚÇá\x03\t €\f "
b"²’{Ÿ,FAǾ\x1D ®ïlæ\x0F 6 "
b"²Ó‰¿\f g@³¯ÁE²ìòXk "
b"▓Í«C'\x00 Dõƒ¹.╠TõÅÜ "
b"³Œ!ìy‘A‡¶…Ø…\e áy@ "
b"³ºõÛñßD§»\x1C æÞ‚—§ž "
b"´3?\x7F\x15\x07 @\x11 žé¸Çp]I” "
b"´;‚ZdÆNq¨\x18\x05 ؃£åç "
b"´MtšàfOP§6\x01 ²œxQ< "
b"""
´†àÂGÐAí„Ìã\n
\f âˆ\x1F
"""
b"µb«\x08\t ¿Eâ›CzqÎ?Ù "
b"µ”\îßœJ\x1F ²/F<®E¶æ "
b"µùú²{½G”ŒËÕê»"< "
b"Â\x0E ¹Z[ÀI$▓Îì7u<I\x1D "
b"""
ÂŪ┴ú\n
OÝåÿf»|?ó\x11
"""
b"ÂØ Xà│LÌ│eÏÞd░X├ "
b"¸\x11 ´fÔÂLY¨6%þ0é%” "
b"¹b\x15 MïNEWº\t â\x1A\x1C éèÐ "
b"║ ─└ªEOÈѹ\v à#^É« "
b"╗\x01\x16 ¡╣åHØæ0ëC$¸Ñ "
b"»\r Ÿc:ÍK”¨Ì±\x19\x1A ﹃ "
b"»-É«ÀùJ\x1F ®q\x07 ¿a‚[\x1F "
b"╗ëì└}®A÷ƒDx┌\x0F ÀÚÝ "
b"½ sžáxN?µ1‘öž•Ý• "
b"¢Îmàç░OCØñ¨aö§Yñ "
b"¥4TênmB²¼ÉV,w\x0F ▄v "
b"┐ ]AõúIì®Ö¦"╬┘|Ù "
b"¿5ž\x13 CÈI.‡JjIY,#³ "
b"┴YÂØY¨Bõ▒F: î¤╦+ "
b"Á”90\f Ò@\x07 ˜Bÿ¨\x14 Cžr "
b"""
┬r░Ò\n
]Jõàõ░\x04 U>Ém
"""
b"Âx=8WŸC-•ò\x1C îR5ÕW "
b"ÂÒn;©ÈIk”OÁ—kM\x15 • "
b"Ã<öd£¤Mtª\x7F ¯9X\x1F ¸\x7F "
b"Ãäñ\x12 \r BF´£\x16 Ÿ¶ê›7T "
b"ž^?mÆH\x13 ¬K‹\x18 jH¥· "
b"Åȳ³¢ÃC\x1D ´Á|pWqu‚ "
b"ãMäp{ J ú\x1D 3 Ëüê0 "
b"Ã#hõ-ZBTü\x11 iP«BÞª "
b"Ç“çÉytN´¡ßŸ\x06 ”i9\x05 "
b"È~!§vuM{¢‘ؘ¼ñ+ß "
b"È’\f 9ÃìFºš¿*’\x00 ÖdÙ "
b"ÈòÂø'ÈGߟøQHÄ\x18 íæ "
b"ÉUÏ!=1J¼‡”…΂Ç_; "
b"╔£¿Ø«²C ┤±\x05\x02 Ùº─\ "
b"Ê1"ß \x0E K\x10 “IŸË¼˜i; "
b"ÊÝ`/d„L\x7F ¥ÆÆ†¼Ê“ "
b"ÊêkØ#mEˆ£óFÃ;ìµ\x05 "
b"Ëuø¸äqHs˜Ôø0Û‹îº "
b"╦æ┼bØé@d¢Tq ù¤Z¼ "
b"╦║ÿa\x08\x1F @ÉÁb¸Ã─Ø▒A "
b"ËÒN›B8Fѵ\x10 |\x04 ž\x08 -Ï "
b"Ëè$'l–Gâ½wSâ4W9È "
b"Ì2Nc¶€I®«.ݦ]Ì¥* "
b"Ìh¸w$ŒG\t ‚ŽìEþξ' "
b"╠\x7F\x03 m¶HYéØj@æ½■\e "
b"ÍACxÞgLÜ‹S˜gŒ\x16 žû "
b"ÍYª‘gýD3¶; ¢=¾"æ "
b"ÍŽ’}6ñNk‡¡È¸ªô}¢ "
b"ÎþžÛºÇI»“ÖE•d\x18 p+ "
b"ÏDNë WF—‚KŒù\x00 3ŸÊ "
b"Ï‚”ðïqH=›ä\x0F Ÿ!lÛý "
b"Ï»-Xa[F´–ë›þÜffå "
b"¤ÚÍü╬ÜB▓║Êý▓Õ\x08 ÐÑ "
b"¤§î\x04 skD\x0E òþqºØ¬\x0F ½ "
b"Ð+\x04 c:îN ®P\x17 E&”‘\x1C "
b"Ð>“¶å!A–œT,¨\x1C ¡¨~ "
b"Ðþ†ñI©Fߘo¸E \v W\x14 "
b"Ðpg·§ºMVº\x0F X'Å╬Ã, "
b"ÒB*:h;J&©,½¹J±ÍÄ "
b"Ó\t ¬”«ôI\x1E ¹\Ò>\x15 HœÇ "
b"Ó6óµùæIU±øDŽÄLc§ "
b"Ó@º-z8N\x16 ¦\x11 Î!ºPQò "
b"Ó¼ëM»NOšœi9×Ä¡G‰ "
b"Óæ|‚\x03\x1E D2¢7^D'ˆ›\x1C "
b"Ô)\v „ûÇGx¹}ê¼äRÇ\x13 "
b"""
ÈÅ\n
móëHÍå'╝\r Vê\e |
"""
b"ÈñØèeµK`ØÈéáÏsEº "
b"Ô« ÓòœI²—`t:•¿Å_ "
b"ıcÑ(è\x1F F¤ìÔéàW\x10 :£ "
b"ıÃÎ0█ÖN\x1F ì¤ÏË╝òÖ "
b"ÖXg—ß\x12 @Á®9C`o¿\x1C "
b"Ö“8ÝìôIn™úéj©X|â "
b"Ö¹Ÿã=XF¥´Yíå\x13 üî» "
b"×Ç[ƒ *DÇžaÆ<Žƒ¿\x06 "
b"Τ¦öÀÖGªÉ<4N=§Ôƒ "
b"Øgw7*CCvä˜ÞûÙ–G "
b"Øœü]ãdH3¡£Ñ.X®£š "
b"ÙŽ\x17 r\x1D RK@œm_Y\x02 ßÒ\x12 "
b"ÙÅGÇ®\t FDº&D—÷3\x06 ý "
b"ÚZ¿:\x19 lM ¾Ü &Œ€\x1F ¾ "
b"Û\x1E A\t\x00 ŸCz¸`ùü\x04 z¶€ "
b"Ûl\x04 ;ß'H\x1F §R üàÕ“I "
b"""
Û¾o\n
ÅÒMu¼k£8cj8m
"""
b"ÛèÜþ£\f AﬣÍxtmõN "
b"█ý³Ü¥nO}î\x1E ãi¾ØÌù "
b"Ü\x00 ±\x01\x1E PIŒ½Ç\x19 ï\x10 R)b "
b"ܬ4…\x06 ‡K7¾\t\x1C À\x1A ¹ýM "
b"▄┐âE\x1A ºFàØMõÀÛMæà "
b"¦\ÃCÏrH╠ÿüêqCì╗\t "
b"""
Þ\n
F`¯ÈAÚƒ½»kà€\x17\x12
"""
b"Þ\r ý‡Ö @š¨‘TÁͤÀ\r "
b"Þƒ'ºîZB¿£\x11 ”AΟ\x04\x00 "
b"Ó4âMµ■G╝ïÍÅB\x16 ¤ÙØ "
b"ߨ¸B┬\r DÞì`g\x11 ê\x17 ]\x01 "
b"â•Y@ëÇE\x13 ¡¯ö0ö\e ÞŠ "
b"Ô│Å/ÃúAã┐─V│└S©╬ "
b"ãe\x1D ±à\x06 @;ƒ\r A,? È@ "
b"""
ã˜Å…‡\n
Fx†ÀóX\x17 Ž>(
"""
b"ä\v 0—ó³N¤Œ×\x15 ~^2Ș "
b"äÙ':2¼Ke¿«qêÅš\x13 Ê "
b"æ*·˜ìwAe¬¢$\x03 ˜{\x05 "
b"悉aNíF¸œ‹¶^÷ï3L "
b"çpŠô‹ôK\¼Ó¨¢Oc6ö "
b"þÑ\x0E ¿Æ¥DeÉ¿CBÊ6û\x12 "
b"ç©¡\x14 üÏA5®O†Ñ—oʬ "
b"è\x17 Ëtq\x18 M\x01 ˜‹lyë\x15 úf "
b"è#\x06 Ç>ðC×–ç"û\f è¼Ò "
b"Þ╚¸\x01 ▓ÖGæè÷\x11 n½║\r É "
b"Þ╔u\x07 Ì\x10 Hqìñ\r Ú¢ë\x13 { "
b"Þ´1╠Äb@rØÍA'┴-^\x13 "
b"ÛÅälñcC@âõ[ª>▄78 "
b"êö!\x11 áGð‡æÚô4{Þæ "
b"Û├£»ünH\x16 ÅFãļþ░O "
b"ë\f\x07\x19 ÈFHá ƒ.ÀLPÿ0 "
b"ëJbPƒàJ˜ƒ&¡Ñ$;ñI "
b"붬½ˆ\x0E F)žmúÎVïJŽ "
b"ì&f¯\x07 :Gý›¨\r Í‚óSò "
b"ìø\x15\x13 èB;žL‘\x1D b즿 "
b"ÝÈÅèoÊF\x17 ñÐç┘\x13 ƒ´Ä "
b"îÑvádzBç¯áúAüÏ{² "
b"ï\t ÜÁñØLþ–²f)—TØù "
b"ïw\x1D jå_M Ž\x00 *‚Z¢Ìp "
b"´Ó9Ä çK\r âêBɳs§° "
b"ð\x10 è\x06 \r ÞJÓ¿¶ö¯Ñ—\x08 "
b"𢠤voK\x06 §Ô\t ‚\x1E ÷Ì\x18 "
b"▒:©_·ELÑÒåþìËäS "
b"ðç#}\\r Hhª&¨®ˆ6ð@ "
b"ðö¿±Ü<Mn™Ê¡Ý\v Ã*y "
b"ñQOË\x05 •@ù’G«“Õˆ+ "
b"òªÏ\x00\x7F\x05 Nÿ‡w±´háÖ_ "
b"ó$ç9Ç|Hâ–¯‘ø0>jO "
b"ó€ãyFòB\x00 ˆ¼Ì€¥Tñž "
b"¾─Çb▒\x12 J§Ø8■NI]£║ "
b"¾Ú╣×Ì\x1E B©É<|eã&\e\x12 "
b"ô\x18 O\x07 ›?D$½¦–\x17 ÇÀᘠ"
b"¶Yy¦-@$ìD¡Ëï\x19 !ý "
b"õùb;ï\x1E Mr£û×Iºsᜠ"
b"ö¶\x1E =MæM+¸\t z6žÏ™û "
b"÷\x01 Lj6^G)€îÝ}¬Õl– "
b"""
¸\n
w\x03 ÄÇB_®ÅF:\x1F ÈDs
"""
b"÷4Dï\x08\x1A Jó€Î\x05 Ôô\t T= "
b"÷Y^a¹¦@°‰D\x0E É”~\x0F š "
b"¸Ù\v æsFFZ│Ò╣\x01 írü\ "
b"øï½™|ŠDA¿Ó0@î™Ç\f "
b"°¸'╦┬ÚNF▓pì:(×Ü\ "
b"¨k─@N\e C÷Å\x10 Û\x1C vÀÓ─ "
b"úHŠ™ñºD΄Ô\x01 Š@\x0F äb "
b"úP™,!=G…€¬\x0E A/Lÿ™ "
b"·ò╔\x12 ├\x14 C·«^\x17 Ø\x00 V¬ð "
b"ú—mÉœêOà¨\x00 ßw]º:ò "
b"ú°@yÊ€Hÿ¼=§ÕVÿôR "
b"üI\x15 ¯oÚI’¥\x11\x16\x00 Ç7Ü5 "
b"üdq¿è\x04 KÚœ\x03\x07 ÉÁcûô "
b"üiXÕ†XEršbPFÇèKõ "
b"ü„\x05\x14 L×KÜ´¡ž>Cþs! "
b"ü›Hìâ5JŸ´³$Åk\x7F Má "
b"ü¡Sûµ`Kdª#&É>Ä÷‡ "
b"ü¶ãcù9Bã€o¥ã]ÚÂ{ "
b"ý\r œÖÿE†’U\x10 <\x00 Ú\f Ü "
b"þ\x00 #šPüFœ¼’ÎØ´<È» "
b"þ\x05\x1A cä´Lå“ÙuE÷&\x1D ä "
b"þ„šÕ‚ý@-¿Àž,-«\x7F \ "
b"ÿ\x06 ~\x17\f \r L\x1E ‰È®r\x13 Ëêð "
b"ÿϳË,»H‰¯Œ”ùêQ€¯ "
b" ÷|x\x1A ¼@3ÉuÂ▀sj°@ "
]
SELECT
`property_group_option` . `id`
FROM
`property_group_option`
LEFT JOIN `property_group` `property_group_option.group` ON `property_group_option` . `property_group_id` = `property_group_option.group` . `id`
WHERE
(
(
`property_group_option.group` . `filterable` = ?
)
)
AND (
`property_group_option` . `id` IN (
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
?
)
)
ORDER BY
`property_group_option` . `id` ASC
LIMIT
500
OFFSET
1000
Copy
SELECT `property_group_option` . `id` FROM `property_group_option` LEFT JOIN `property_group` `property_group_option.group` ON `property_group_option` . `property_group_id` = `property_group_option.group` . `id` WHERE ((`property_group_option.group` . `filterable` = 1 )) AND (`property_group_option` . `id` IN (0x0000C5DC07BA49C3A020438522C70CE9 , 0x005448D447F04B38AC243BD9184CAB80 , 0x005B7D79E6954928BDCC73416CB4CB14 , 0x0092907944F8487998F903520D6DE049 , 0x00F08D438BBD497CB435338F80928F8A , 0x0160BD9EE4D540028B1E7320BBAB99D8 , 0x01A4A0C730314B73AB9CA42CE780A76E , 0x01BF970534B3413283CBFB1EBF02D0A4 , 0x01C14272CCDE417A848A3C5CF7A8FD2C , 0x01E6153D53CE427ABF814C252860C642 , 0x02887F8A5A8A4F3499AE6956BD1E5AD3 , 0x02905F599AE845F3A0513383AAAB50D2 , 0x031BB94463704F3294F2C81C24A9AB34 , 0x033E6E60024043EC9AE81638D64078DB , 0x034A2E7D79FF456B9F951337A588D0EF , 0x034B6F719296401790665CD8833989D0 , 0x0356C4A5EEC74283B22CDDCFA7C062BD , 0x03DBA70AEA9149DABB26663B14E118D0 , 0x0412C9743A564C39BB49DDCB8A84424A , 0x04378725CDD54C5A9FB17AFF0A30A6B0 , 0x046BFA12896043FA91414F39A37D33C8 , 0x04CC5E9E69D447E4BA8B4776F35354F0 , 0x053BBC4041EE483D96C0DF3E7F2B6255 , 0x058378CE0D7247A38FF65FF42EC3F361 , 0x065EB38C72B14452B10E90EB2BADC0B4 , 0x06D5F40C1C4A4DEB91342F221F50161D , 0x0817803E425248E7AAF7C92450D5BCC6 , 0x08221DD723084DDF982B962A6458EC37 , 0x08391AC7169049668B56BA15C6DA90E6 , 0x085685CF627B491D8269547C96B2FA7B , 0x0862BCCBABA44A129F8DA21FED27F7BB , 0x08E99EA4931D43BB98E95F52A0149F6E , 0x08FBEDF6526241BC9E26FE90DD81496D , 0x0949936EB7E140B19B668581AAAD128F , 0x09774C77ED64480F9ABE95867B0F3948 , 0x0A1B9522AF9B4BFF9D535B3350FC48D2 , 0x0A22D8AB2206487183578A575B0CC744 , 0x0A5FDF2742F04D78A2913DB534266D03 , 0x0A673255B5B54CEBA83FE1AE455205D9 , 0x0A798B7716084A8B8C3ED5A380544187 , 0x0AA70F414FBD4544BCDDEC2C31A9489A , 0x0AD798E6C2A1417682C1714AF0F98DCC , 0x0C1744064352412CBD893EB3D927CF9A , 0x0C18DFECA6E846F4B7586E5B48E1EFF3 , 0x0C4E0ADE44624E9387025E366239C0A5 , 0x0C95783733D3439C8BBDD773382976B1 , 0x0CFF334E027D48A381EA83E65BBE92BC , 0x0D2B872DEDCC4A40BC9F1077F24DFCC2 , 0x0D96688CFECB40D5844BCA7EC61F4C8F , 0x0F138CF259E848EBB210D9704605EF5A , 0x103494C52546405DAD18E65EC316EAF7 , 0x10C5262E62A04F2DBCE924A6CA426A0E , 0x112B694D67C9482E851EADB27BEBB737 , 0x116EF02A2B7D4D6284C1A44BD26A73BA , 0x11EB3629A7B7490C8825E2C45BD645FA , 0x12E92776FD054EE9AB55FCA24A21C002 , 0x1319CA299ADD4C399D558D73A79B1505 , 0x13301F2EE49F4EBFB4586F45961DD22B , 0x1366C9B381D145F7B1050C87585DEA5E , 0x13B8A6C5A6F74D34B9DF10A69C01B62F , 0x14048F011AEE466882774BC15F1FBC6D , 0x1432CE667DD74CE1B7EB95F75FF2129D , 0x144707C8494C478A8056A04F5274F34B , 0x14A471DFAD7A4519910064EC64C04896 , 0x14A73D5663BB43D3821621A379B80F66 , 0x157B0C38A348439881796524015C890C , 0x15B06E7AFE334167B66BF268253AAC47 , 0x168832DD0DA140138668E44298E8B47D , 0x16BA7B9E4E0445B5BE6153C1F727C40B , 0x16FF470C4B6D475B83079258CC247740 , 0x1750F8B0740F463F895E5B94610FED72 , 0x1767EF4B74084E58B5D48B7368A9126E , 0x198CA28F08C3492AA911DE8560EFE7A6 , 0x1A58221CCFFB4EB080467DBFDD615578 , 0x1B4CB5B5D6184165B7DCEB349C13382B , 0x1BB5F62417C34220934129DD7B7BB539 , 0x1C8601CBA2F94432BABF1008092D8A3D , 0x1D1FC4F66A1645CEAE0BD42A94EF5E04 , 0x1D9C4F300D6647BBB3F7CA3944A0C965 , 0x1E5A4495498049849A7800B90975BD2C , 0x1E69B642B7B94CFDB53E93D7282A7617 , 0x1EB5FFAE56D74A5484FBA21EA1539CF7 , 0x2015F78EE7574440BE2FF98E853426E8 , 0x20517A60D7DD43F6866AB76889361D0C , 0x205343F4793047ADB29E3C8D632A7F84 , 0x20959155CBDD4311895DA013E2411C34 , 0x20B6199CFDF54F3E9C7B21C3BDB3B6DB , 0x20D926FFC472414EB5AB86C3C367023F , 0x20F197CEB19241CC85A5FF3BE802D337 , 0x218E4C4D3223483CB6405DAEC7C92DC5 , 0x21E39E38DD6C4F6B8BB265D759C32398 , 0x2212A930392542E7AA6414B39D6F7467 , 0x223C2FB8C74D48AF8062860CEE57AC8C , 0x223D22547D124A98897D3F6ECDE84ACD , 0x228AF76A04CD4710B1D54C91C19D0606 , 0x22AB0E3A4B4C4C84B96EB482787C2646 , 0x22E30144BB2B41658BE64AC5B61B477C , 0x22E9B2FD915048CEB8482E578A850FE3 , 0x22EC1CF49E1047E1B4775DAEF3B8190C , 0x23B3F42F53884946BD2AEE795A0454AE , 0x23C061770EFA43E1910B70591F07895B , 0x23E97090B22A4E308B071144989745E8 , 0x23F2F787928D47CBBB9C365590EDDBF0 , 0x2410815DEB5843ADB797524E184067FD , 0x243423BE0E524E6FB62E726AC839019C , 0x24428662CD6840878881205E722C74D7 , 0x24D3E96F3A12442F86D27151836EEDB4 , 0x250108567E2342A493806810EE81BB6A , 0x252532AE21EB4B1BAAB0FDC8AB166531 , 0x255AD3160E634B49970D598E3C80C281 , 0x25605580A932477DB82088EB1BFBCBE9 , 0x25C03E5608464BCF9FA48C5489C58638 , 0x25D6298763664D66AAEF6C4C5E449549 , 0x26A2B0610A324D09A65FFEBCF8B2A890 , 0x270CA9E5A5284EDF958FFB0CF1D3D33F , 0x274CCC2C37924354B9AF38F6474CE460 , 0x276AA041F75A4C56A0F6DB8A0B83057E , 0x2858057E2FE94B46BEA9CFC46CA58B98 , 0x2886E4681E4C49D9AB838B77BBEEC4BC , 0x28ADF3FF8E2B4F2C85ABDA2412E7356D , 0x28F3D42AE2E94A468B34F756D565FFCE , 0x2958B45BEAFF45CB97F3ECA63C22963F , 0x29943FADFD1F46F2BA243012A000AADE , 0x29AB1EA994AB4FAEA09635A83D8EA9B6 , 0x29BD5A6BA5574299AEC53CDE88150271 , 0x29DA0541EBAD448A8F85C225B6FE4359 , 0x2A19407F352B4387A59C64AFF6F2171E , 0x2A575A27957847B092BEF275E43F46B9 , 0x2B9E8F7C33F243D8ADBFF838BDB4CAFC , 0x2BA7E13873E148588238024ECCEAD22E , 0x2C38229BB776400E8EB6C3C306851200 , 0x2C6AD70160764E9883B8FB1F0C9B3E5E , 0x2CD9E5A582BB41289B5C560240FB54D6 , 0x2D262610B94441B5A322B2EEA27E6A4C , 0x2D9E7EB1859A4B2FBCD1BB4810795912 , 0x2DC4A2F040F04DB8A2C7350625C65192 , 0x2E1827FF70124547A91234EA02CBE47B , 0x2E458F338D2845E7A6F1E22F9887D6A8 , 0x2E47FD6E67754451BE3EA5594BF55163 , 0x300384FBA05F4066829E46411570A417 , 0x30758B4E25F74594A8B0142D835EB350 , 0x30889333868841FE9209387A88513303 , 0x30FDA5DB3BCC4B268D0A2BF3B05922BE , 0x31C8E3CF71BE414A916CB5F5DB7D7EB8 , 0x31FFA29607644FFDB679E0951B2C8648 , 0x3246F9E841664EBBA457FD24EC37D74E , 0x3277E1641814460C9E84D189A72BC0D5 , 0x329EFEECFD1540A987DE24B888BF703F , 0x32F5AAFDAED54D92B7054A73AD50E113 , 0x33404BBDDDC640FA85D028B236B91E25 , 0x337502930E8D4EF7BD6E2C0D25A75437 , 0x3399A6A9A3B645C79DC3D30BF467C772 , 0x34D381490CC44E678DCC35E70AD537FA , 0x3549AF4E1134475E8A9B7E3CCF82F99F , 0x359A9B7923A5464C8AA59BC7E7BBC79D , 0x35B8903680AC4DB1940F466268D06F6A , 0x35F7AB780FEC43C7A247C25897A3B400 , 0x36839DB9C0FA4104A312E37CD2CFCDE0 , 0x36DEC35BB92F4FA6B243B65AFBCA8E84 , 0x36E0E40CEF594D96B9ACFA9D53D4A273 , 0x36F5771C765E46ABADE0AF1AD4C795DF , 0x375B79E1343E4EF18AFD3AEAB469FEF3 , 0x389237806DE748EB922294F9E7EA9E90 , 0x392F4330055D46D283BC5106C7E9F1D0 , 0x3B26E0C79B294ACA9731973A44CB7795 , 0x3B3AEAC5927A4F0A8C8A3A0BE53B8370 , 0x3B6FE7F9E4FB47249D8E197D8C13F140 , 0x3BC958776BAB469F943DE71E367A0665 , 0x3C173B6D3D044058A53906617166CF57 , 0x3C2C6BC12A6A425A87A510459CE1ECF5 , 0x3C4B17F0F9E5411E8BD1A8D17B3262F0 , 0x3CACD004CF554A9DAABAE6660675A57B , 0x3CDBDE9E51D34BE09DC2A9D5AB4B7C57 , 0x3D602B0A6B5A4C76803D05FDF19B1798 , 0x3E67CCCFEAFD41DC8D5D9B1A8AA69399 , 0x40DF59D2781F4ACC88BF3444478377A7 , 0x4117FE180EC64EB08034AF8BB3B50A79 , 0x411C329899F04535B1FCBAF625D7B66E , 0x4170782D49DA40678A09E7E105A3183D , 0x419263AA092C40A5A72C03CD35AB5107 , 0x41E5013B67D64D3A92B7A275DA8AF441 , 0x427DE6A4AA484954BF943C44D40E3FE6 , 0x4306D9251F4E4700B4C92ED465CCEDD2 , 0x4316A85F35EF4BCCB4101DA2042F6165 , 0x4318940305E343C4ACC1398B0EAF8BFF , 0x4331D91D3C8D477DB04E8392FF1B71B1 , 0x4335686CAC4646FAB5E122AD9963B093 , 0x435C520CE15843A7A2BB26BBBF0811E5 , 0x438F6D28299A4442BDEB91DDD9CEC881 , 0x43ECE38C934B4481B401BFC61F2C16FB , 0x43F2863898F347E287B01703DE500FFB , 0x44270BA673724480B16DE602B0C4C6D1 , 0x4479295B6B0A4FB18399A23C8F8BAE48 , 0x44C040B77D854606B11F453C83B6AAF4 , 0x45145E3045CC490B9D5D5728A72D0345 , 0x454F753AA001437CA99CEC7E8BAC5135 , 0x45AF1DD1E93A4B2FBFA251F4D3A4C475 , 0x4602CEAAA8E14E6EAEEA0D2574D4A871 , 0x46DE7085CE4A45A28296FF7309DAA523 , 0x46EBCCF4F1684360908DD10E0838EEAB , 0x4718FEA3D5764E969E2E78786F9EFA84 , 0x4747EC36E6D141EEBA7A58BFCCE42FD4 , 0x47DEAEED987D4C1096FE08680F7FDCDB , 0x484F6615EAE94CDD980CAB9D025B3F8D , 0x4937F0C1F93A4D22AC39AF71BFA2ED77 , 0x4A3005A00A524AD1BC6A3B30BF81A00E , 0x4AB5B38D6039431EB6C2050C2400FE6C , 0x4B3E748F29604E4DAACBA90EAC9526D3 , 0x4C224BC961DB44BE9E32627637264440 , 0x4CF033F1AFA846208BA04BEADED9990F , 0x4D36517A48D443C58C2809288697AC62 , 0x4D45F631A9114B8EB0A0E2BF03DC760C , 0x4DB600BE63164A74B12E25C6A440821C , 0x4E1CB5B26BB14444B6B1BB0C3E914DF5 , 0x4E48F30156964CC88C867F87B03713C5 , 0x4F4BD89BE6A74FCD887A689C03E02CD2 , 0x4F51F8033A9749CFA30CFE46997D38B2 , 0x4FDA9BFE26184313A64E67F013D27C2F , 0x5053FC713FE14B9797CF672C3E719344 , 0x5098347CC45E41DDBF6C9D37E9AD0FFA , 0x50ECCFC69E92455095EFD10CF7238A0C , 0x5134205E28C14D24B34AA3CB2BDB069F , 0x5159D18CE46744199A2111FE8099CE2C , 0x51804B09A3C940C58B68FED31BC4B4A3 , 0x51A0CF4F1C1348179999E3F326886DE4 , 0x53005687C04345DDAC37FA37B820D1FC , 0x5348971D6F3342A9AE06344F855BF426 , 0x5348C511717549F1891789929E721659 , 0x540879704F9F4560A1812E4EF9297631 , 0x54147692CBFB43419A6D11E26CAD44DC , 0x54ED861E1D224CA292EE73A86EA5F09D , 0x5593F934CD364C78AEBA91A42078F31C , 0x5599868E15F0459D9CFC637B9BD19DF8 , 0x5685EDD54C284994A09025166DEFD453 , 0x5700E5A39AD3425C8306DBB1D6BE59C6 , 0x5751B83F92D3402EA1399A68FB75AF08 , 0x58175CC55E3F4F078C4DE76043EBB6A2 , 0x58F5CC37F7B84AAE8538BEFC26A7D2C8 , 0x59742B6C257B41CD8493B93826998288 , 0x59898FF2C3404878A0990F33CD7C60BF , 0x5997D91DC0784997BDEF68DFC5A08912 , 0x59CAA3674B61458AB2A6B04B7E83AF70 , 0x5AB7AECA88644E2E952902F601AF964D , 0x5ADC9C2E10E546909D0CEC57AE1B6923 , 0x5B10B306B8054BB8B210B1CF1E294DDD , 0x5B2E75D2981E411FAEDACD38F0AA5056 , 0x5BBC78B8F1EA4A42AA35ED189A6B845B , 0x5C238D79E31548C4A24CAC2F8CDB1000 , 0x5CD42FB513264BD4AC90CB3C9E6F9E01 , 0x5E548441967D4DD68DB010D87DF81486 , 0x5E749DCDD6D94540AEF4708AECF022C1 , 0x5FCBEBBB118042499ABEEC2CC4346EFD , 0x5FCF5B01D4D942609855E95E13CBD2D8 , 0x5FFB7D34AD5A4FEF8D6A3D6A4C0ED6C1 , 0x601EBD39866442929C4C465C1758575C , 0x60E6B1B07FED47C2A1F75420AD74748F , 0x612D3D7429D6424CB58CC9F1C2CD306D , 0x618A0DC60CB94DDEAB8379AC8DD865BA , 0x61EAFB01EEC745498A7F579FC0A620FA , 0x621C78C502B74A80A2047860ED3D6156 , 0x62479E3ABBF94DEEB7F2DA9877BC9BBC , 0x630C949AE0224BC7970BEAF77D84356A , 0x633F00A29FB84821BCD5A93B407B6A42 , 0x63A0266F47C14D6BA188CDC1705A98A7 , 0x64D8CE56DE054F22883C674DA7E3BB47 , 0x65A246E9B4234F79A378DDDEC45A32BF , 0x65C01AF4790F4F4EB2A4E2539A04A1D7 , 0x660950C3779F424EABD2BC78EEDA51FA , 0x66235016E0DA4382A777FD37D445D872 , 0x663BA0F9DE284525A533446CA1ECB79A , 0x6789981EC3CC431EA4626F2A5D7D7062 , 0x68702AA585C74900BD1A240D4FB92532 , 0x68EE16BDB9794830B34C49A09B740106 , 0x697EFAF4B08C4EAFBDD32A0908B07CAA , 0x6A032F858F164CA7BA7C00490C7E2799 , 0x6A278F4CB2134647AF7958725F378253 , 0x6AD3E8EB4C2B4B60A18A6E93140DEDFC , 0x6ADF02B8FEDE463EA69CB386FCE035F1 , 0x6AE006DBC6454D32B18396AA05799722 , 0x6B466513A87C486F961220AE2E116ADC , 0x6B82FFBB83AD471F96BB4B69C414D780 , 0x6B8628AFBA1C4F968B4A01D263E730D2 , 0x6BE33AC2474A46E5AF71D3C2C5B053E4 , 0x6BFE061718784FB1BAA8FDD78406985E , 0x6CBE3CE5C33946A68F1BAA139F204446 , 0x6D1C83B5F2BA4DF29EFFA468F833CECF , 0x6D77CCC6075E4F7CA650F1A80C7D9920 , 0x6DF252B66E3D41A1BA1509DC814BFE36 , 0x6E144CB9CD4A48839B8BA4DA6A9B04E2 , 0x6EE367760F9A42D1A9B7116A0F428FEF , 0x6FE4E05E5D3D413DAC97E1712A7EDEE7 , 0x70311B28272B403C973CA5732A77DDA2 , 0x716CD774FAC94B089DDE73E71CC749B6 , 0x7182B9570BED424F910D8749DEA2AB3F , 0x728921CECFC843E48B3DEF5315F262EA , 0x738251919EC346FAACD8AD6C9D0E567A , 0x73F150A35E724117A28C1CED9498D01F , 0x743F6BE3D8E14C03BE4043340852D0AA , 0x74BA42C8B7BF481A81ACF5B43242CF25 , 0x7520523B5F2947D088B64E3B4F129C10 , 0x76B71E3F558849939AE03FE605B47424 , 0x76CFB01B9645440CAB753B756DCF4E96 , 0x76D756C280034D33AECC8896D9B4E125 , 0x76E16C236826460CAB20320EDD834255 , 0x76E4E1944AD24BD78AD561802073F780 , 0x7834138D86AC4DCBB51EE90A3B784353 , 0x7849BD2B1B78484FBA489222B84D9DF4 , 0x787C9537BB6244F5AB9FD2C008CB0DD9 , 0x789F43402B8C409FB2EEB4329F4A20B7 , 0x78D2FDF1D5E84C96A6336ACFFDFBEA1A , 0x78D3D64F945C48329F2D63E59AE3EC63 , 0x78D705084A0E47AB899FF22E15923C2B , 0x792D5F235EAB485685CD2AD976330F46 , 0x796A8927B25240D2A7400A6E3CA17EAB , 0x7A4DDA46F8DF4E75ACA64CF82720054E , 0x7A9F4878AB17473993212D5A0CE03CB7 , 0x7B8680344B3A4F7F99DA176E9F951127 , 0x7C5B11B0BC9C46629F592FED30162088 , 0x7CC1E6BA47FC4BE8AE8B6923AD987EAA , 0x7E57596CF49A460BBA0CD0FD94DCD7E4 , 0x7F4D6C86245249A0838B72DA8F9FE726 , 0x7F67C86A4AB3485CAD959E24C664F6BD , 0x7F81838628CF4232BC1ABA55A18A90C7 , 0x7FBD2BF5EDEC43039F9D645D856C10E7 , 0x7FE2361E8E594C3B97DB8DBD39A2F75F , 0x801555315E6046089F2BE685EEF50680 , 0x8030086FADF744869187B3C7ED6EA6D3 , 0x803096C5E62C44B28D7AE8F636E80BE1 , 0x804576A0D7934CF9BF62E01227C16F54 , 0x806C1216EFD345FEA4585708A3978599 , 0x8353424C6AB246EFAD78D8F5D86B0E51 , 0x83ECDF1915C3432FB96C3728F63F6D8E , 0x8479C393E87F4B759DDCDE1863B27BF5 , 0x847CEA893EC4412CACA4E72175E22DF1 , 0x84FC5A60241A432B9E668AB86B5CC4EB , 0x85CB6BE2B9F84CA899FD95D5BBBE0A63 , 0x85FDC41F34484AA7925C63E768C8C3F2 , 0x8648F84FC1F34A8AA782490B9B077483 , 0x866BB9251A6940F7B452212516133970 , 0x86C15B3562424B83BE122225E1EFCBAD , 0x87641EB681D4417FB5F22592130EEA44 , 0x8786DB920B334822AE89C10428DE64B8 , 0x88A00397227E4FBB960D95C2CB605CC6 , 0x896F31689D7E4AE1B93D368154B7FFC5 , 0x8A2A7402FA3A4A638C4383402553095A , 0x8AB1D87B8E1E49E197F10DC8345E5097 , 0x8B2AFE5DC482449D90B03AD04B8C42FF , 0x8BB4913F5FB14E6EBAD3119D59B267F0 , 0x8BCBCEF3080B4521A43FD4C5AA7A0A34 , 0x8BDF2168FCB74F75BEBB294868E53136 , 0x8E01B6EC0EAF4A2491303C2CCF2E1213 , 0x8E11BB55D5164FE4B4B9D6B98AFC72B7 , 0x8E30641C37B7434982586E980853258B , 0x8E469308DB724CC48DB2E4214DB9F1CD , 0x8E46BD6536E0489DAAFC2164676B0AD1 , 0x8E48C6A766034FCFA31EF55C21C26C6C , 0x8ED1BCC23B9A448B9F3DDF3233FE9343 , 0x8EEC18E5090045918BF38822A89095F3 , 0x8F69CC127538424E913B218777C4A0A3 , 0x8F6E748BB9134690A2C1600D0CE03178 , 0x8FBD242FA0B2411ABF16EBE6C97C54CB , 0x900DE6D957604BAD83EF64007152574A , 0x90127020BB14410F884D8E27BCD6BDA8 , 0x9026B149063F4C1A985A81B2A2B1532E , 0x90A1911F60584B62BE72C0BCA266D83F , 0x918E3D930C7A4C96AD9112D423E6EB86 , 0x9254323B8D0C4579A89CA9135937B2BF , 0x92746FDD2BC54F02B7D8CA4DE230140E , 0x92DE8D8AFC0349DB958614D99053E789 , 0x931A3526302243459A86D519E21E9829 , 0x93AFADE503974BF68150875C20FF98B8 , 0x93CFA2107B184FA398922862770B25AD , 0x94166CCE97A74DC5AE9F6EC549815839 , 0x945C21F8920C4224A78579E044F3B499 , 0x947742C47E534508A4667B65D5A1067A , 0x94990F71B3434CF5A57B64339FF4EA3E , 0x94DFEE026D3242E5BA2A78A043B2DF83 , 0x95328E3731F94EFD8043336CD4E275EA , 0x953E4D5AF5864532A166435455666CC6 , 0x95CAA97BCDF84C658388380ED5922C93 , 0x95D94E0C0A244130972F6970F16EEF11 , 0x96E2CCEB3C4B43A3843D7F12A700F500 , 0x97303977ECE54D829EA799C63B2A6D5B , 0x988CD8CB631B4C08BAD5CF68AFBEC39C , 0x989603140DA042AC8E033E95458B3785 , 0x98A46977CBED403D8EEAAC7CDD190149 , 0x98BDFF925E9F4EC092EA91EEF736B9E7 , 0x994F6D566A4142559C147C7FDDAF15BD , 0x9963CB659AA54374A5A8B27BEF1FA416 , 0x99F6700613544419AF205FB375016AA7 , 0x9A464F3D363C4CB382165E9CBB4C53C3 , 0x9A50A84AB1D9449BACD5A9ECB11F859D , 0x9A644573660F4E3CB45BCE25FF321E1D , 0x9AA14DE78CBB40A0BB434CE1FA93E948 , 0x9AA236479142499D9E00B2C7A50B2AC1 , 0x9B1FFA06B94145F58F0A70BC2DAD111F , 0x9BB6FED98296409EAC1457917A417575 , 0x9BBDDBBED9BD4786A8576732068E4965 , 0x9BC2B3D8AA18489E89EE2AF8569E017B , 0x9C07D88E2DA34A3C974DA50F37102521 , 0x9C283D90F08A4DC989955CDBC07B20E0 , 0x9CA9A6D58A504A8E99C612AFAB147ACE , 0x9D7E764DF7FD48A2A6AD43A7DF4B211F , 0x9E3E972C53A34BCA8E8D4E83992F4EC0 , 0x9EF8EBF088D44F6381111538039DCEBD , 0xA0346C99508D4637849CC182BC4C90A2 , 0xA08A5C18929D40F6B1893B25D4D114B7 , 0xA16CF594E7E84125BF555AF550D2F298 , 0xA172313FC4C74F9C86009A41FEC37D58 , 0xA19A2E0DF3494D49B492A08478566ED9 , 0xA1C395832E234F66A402488F64F8D02C , 0xA1C8C6B9B4D846F38AB5177178484A19 , 0xA26C00A3E48442E188F672E0F035E08F , 0xA3A84E93B98C4FDBA8AF6E4FDB11F7AC , 0xA4A28DC7DC384970B68F19F926410B62 , 0xA4BA75390266463794DBE14500260766 , 0xA52BCD559DD94B97979A7B83E6604890 , 0xA595B09B05E04977BBC2DBD1C236AB29 , 0xA59DDDB64D5043E4B01A750BF947A2FD , 0xA5DEFC92E2624DCFA975CC8885C55B78 , 0xA652567D3D5041DCA3D13B4289EEFC0A , 0xA6743728219547D59AE23519B6FE77E2 , 0xA67AE00F357F4C528BF8B17A08DE2A1E , 0xA747F60181C541E68153500D7EF3E6E0 , 0xA7933F5B32F34A1C8CC72F69E19FE0C1 , 0xA7A865927C5E447F9C7F8AA6D9BEE9C8 , 0xA7AD6A9665EA4033A8E5E1070A8DEB44 , 0xA94E117037A94E218550F8E8E454F72D , 0xAA597CA5E8C640F4AF43B20A624C3C04 , 0xAA9C9715012349DF80B7A12E945534F7 , 0xAB5411C7FB8743CCB2DD183B47C715FB , 0xABB485E23A6C42538C2DE7FD2D9D4329 , 0xAC5C9531801B4A60B139808E0CBF0A1E , 0xAC5D5954C56F43548BFC4E4144B020A0 , 0xAC96A1F31C574FC89AD8316AB633C026 , 0xAC9B7119868C4CFF862049D97036F16E , 0xACFD7586D02848F1AC801F4776EFA414 , 0xAD20B35EECAC43CA8AC2F0CC3E06CC3E , 0xAD3846E00CE847E080AC7BD3E912DDB1 , 0xAD547BDDFACE47A1ACC257EAA87A91DA , 0xAD735AF1EBFB421E93E408B073C4A89A , 0xAD9A5C4C130341BDBA345ECA895110C2 , 0xAE59B5BB529F4DB889CC60BAB828A5B2 , 0xAE9DC35E222147D1AE7CA9BD01292674 , 0xAECF04B1A1C84A4385E9E65C4615643C , 0xAF123FA863CA4401AC3159A59A2DF3AC , 0xAF695351A56B49B58250292554C5FFB2 , 0xAF69900EA6E34364B9827C9AD03CC4DC , 0xAF9E19715E034E94B5BD9DB6B8A3B132 , 0xAFB7CBC7E602430AA255221722FD2B10 , 0xB016965020ED45D6877546D0DFAFD08C , 0xB1CFA3D6F1F243EB88715C21E668CD1A , 0xB23E7E543FD64A1097449A6E1C6E3E83 , 0xB40630DD572941959EE34D753CB5700F , 0xB5145D6B3D5F41D3B0105F2FF4186E8A , 0xB5DEE5EBE0D14E16A246DB536B069E57 , 0xB5DFA9E542EC4FECBF3DCD968BF99B13 , 0xB63B162D56554FA69FF479AD24820452 , 0xB68EFC7F595842989EDBDD42184B9DF3 , 0xB6DECF25801544489BAFFE10B69500BF , 0xB7098EFAD39848FF94F3079DA24C0B4E , 0xB7A3B4D35CB74C75A6F39476399144DA , 0xB854BDC7A9EC49E8AE7090A4BFAF4BDE , 0xB88D327575E74D51B24358CD04CC2590 , 0xB8EB179B1054446FBA765A050A0866BA , 0xB9053404F18547CA80356BCD5A056E0D , 0xB98884E3A084422E84AA59851575C75A , 0xB9D13C49802B40B8BD9A34E8CA3075E8 , 0xBA4138CE12F64CE3A64DE43A510DA936 , 0xBAD88AC403DE4371B48DE604AC51A01B , 0xBB998F422DAB443EABB6CAC1640CE6C2 , 0xBC5038B31A9A4766A9F8FCDC1BBE59BB , 0xBDD502083B5C4CFD8EFB1156D656BA15 , 0xBEA9BB64AAA1434ABBC0EDCB624C6518 , 0xC1FE0633E5244658AE245E1A11B9F887 , 0xC20F943866E74D1EAE5B3F0838BA60BD , 0xC23ED21669A8449D8AF0650FCBC15998 , 0xC3C396E968A548F9A4FEC005B3239209 , 0xC47E1725895040E097FB61DF69F0AF2B , 0xC4EEF08FDF8D451DB24F60E084B6D5B4 , 0xC5298C9021FE41818C6C89232B169FEF , 0xC5875411C4B24FF48BE7964122A10B55 , 0xC5F884861F914309A76837AE1CFB32CB , 0xC654DBE8064049A2A377EF69AB65D633 , 0xC74439171D6F488A95916F2AA7F06F6B , 0xC7A9ADC6393E48EF9CE8E7CBE13CE6F5 , 0xC7E39CD05F144D01B5930069EC4AECDF , 0xC891DA8FE266471AA83634CB5B436724 , 0xC8FEF06EF6144EF8B5098555837095CE , 0xCA599C12EB174C2587D735E3112E7784 , 0xCAAB35BAED0943788863D9AC916A60C1 , 0xCAD420DB8AA743A2BC48140515D1A996 , 0xCB1EA02BBEAB422F9757D63BD48AE687 , 0xCB634190E3664F7E8CFD52B193744F98 , 0xCB76A3C150B84A428B9D277B924164C2 , 0xCBC82329E5144D568E24005B2616A920 , 0xCBE07660008B463DBCBD128DBC0A4CE0 , 0xCC0A574F9DFA4ECFB2DF234DA716A6AE , 0xCC7C725BA6C0469CACCED57E7C12A2A0 , 0xCCEF6480E98C4EB48494C2BC53C6EB4C , 0xCD2ECB1BBB5C484882B64E95F8BDDC5C , 0xCDC174667DB4489D8478B0F76066A684 , 0xCDF7881EE1C94F809CA27718237035C9 , 0xCE1F2DBC3A7F42BDB4894D63ADB4EC12 , 0xCE2B2E10CEC14062A8C978FB6AF523A1 , 0xCECDC9821782467D9C4E11A7D90C5A1B , 0xCF39715286F249389094896DD8DB8B2B , 0xCF5CA0C6CE894DA7B265EE976C2042B9 , 0xCF6BF562C83E445DA5676EC9CF29E66F , 0xD02DDB5E68824DC0B764D0A7309B59CB , 0xD042561B61F648B49471B61EA7477963 , 0xD0B200C760FF40BA9B37050C2DE60632 , 0xD14DF177CCC044EF9EECF0D9BC1538A7 , 0xD19C8D7299E949DB9F4B7919FFC2C0B4 , 0xD1E6334C6A3E41D1BB0212368B6255A7 , 0xD22377B9ABBF4F26B2B84DD78AE27995 , 0xD2BEA05C94B54BD6A23CB5161663ECFA , 0xD31A12B2FF244775B463745344D2950D , 0xD362523913E6414E98BDB01E1D901417 , 0xD37BCB05EAD44C8A87B72A5154CD376B , 0xD389CEE74A54442CA597810CE8403E4A , 0xD3AF2E5DE8744C79AFE3707A8157EC4C , 0xD3F778965CFA46018D63DA24130D222D , 0xD47479B83431467B9F1115768F9C12CA , 0xD49A7FE6170B4B8CA04F4133BEEAD72C , 0xD4B70EA3F9534609B4B9D03FB4618E03 , 0xD52DE3258DEF488991DC5E0BBE6D5731 , 0xD577C9EEDCDC48E2A307884ABAA275E4 , 0xD584B504D76642C5BEF8312C63790729 , 0xD5CBF612A70A473080AC1E7DD80C7601 , 0xD5E853E9A3F4499D98DD1EF81E9C70BD , 0xD5F9A8F04DF449D58FD6B0271F95316F , 0xD6980496E9504B14A15F5E34B8263DB1 , 0xD72B2E8241024CB999E07F5548BFD207 , 0xD74DFFFC8C1047C49541401C815D8AA6 , 0xD7FD9A67187B400FB909B0D512DFD5DF , 0xD8283942B03C4961AD219B6D11EB576B , 0xD839824AD12F476895BE5A7747ACEAB8 , 0xD8582C1538164D159450F6AF54348680 , 0xD87B888E860A4875A238E2611157FB36 , 0xD892B1FB7D344536817847A71E94B210 , 0xD8C147B1414149078123836603C46C41 , 0xD8FD4AFAAD314DAF8473A892B68AA960 , 0xD9DC80B408AC4BEE960A1CD51A9AEEBE , 0xDA651462ED394CA89AC7781BBB1D924C , 0xDA8C986DB0EF46188AEA9C5378026093 , 0xDB4F62E617554CCFA497F902ABA8362B , 0xDB5AAE42691140A8B7D2B3363EEC10A3 , 0xDB5CE61E09A2476290EBA46EEC6EF1B4 , 0xDC1A812274C341858B101A846BBF39FE , 0xDC708B2727C94F85AE726208DCDD022E , 0xDCFE925A20D14A88A3E4B761C772BDD5 , 0xDD017B04049B4C03B9D081573D684C4C , 0xDDC3FE95A1B14C898B5FB231FF911BD2 , 0xDDCF6D47E68340BEBD65567BCC6B93A7 , 0xDDF11815E1174B05BD96FE5A032389E6 , 0xDE2AD4D2D5904964B5B4E0EFA33216F6 , 0xDEC40250270249F2970AB1290EBE89CB , 0xDEE64FB515434339BD257FB9D32CCD3F , 0xDF70AC9EECED472393CF9ABF88FE7E08 , 0xDF87FDC52FD64907B2B0B49B5BC89211 , 0xE03B1F01728740EDA99947D7A89008A3 , 0xE03B622BA19E4B5E8388E10DB982642F , 0xE09160BED1654DEF9D35F620410BBCC5 , 0xE0F39626E29047869DF3F6174C4DD781 , 0xE2066736826E40B28F9ACE2CBF1B3516 , 0xE2168221B403447EB0D038E5A355F8F8 , 0xE2BEA6F57AAF4F229D5F91A959F068FF , 0xE307B4A9B10341C3A920368CEAF34377 , 0xE481596C42A441328899D4722FAABECA , 0xE4EDBF4D92F74FEEBB92B6BBC106B0BA , 0xE53C37D814504BF9B3BC7A0FD1CF6A16 , 0xE5D6F7D5F59B4D2E8918B07FD65CE519 , 0xE6AD80CC7E6D40E6A502DCEA3CBB23A4 , 0xE6B6CE545FD7415EB9893EA1FE287A14 , 0xE768118752764987983318ABE999D5A5 , 0xE87A0E6119954ACD858F1B43E300DADC , 0xE979F83130514A6A94F57888B58BB69C , 0xE9906E3C4E8E4FAD9C6DDADAD071EDCC , 0xE9FE9C29232E4A0E9F899616DBF7D6D7 , 0xEA2433A4864642198FCF2028E63ED34A , 0xEB5099BDE654455C842F33027EF1271A , 0xEBB04DBCBF844CDEB4CC66CEE3DBEDA8 , 0xECA7F6859EE74DA39DAB42B1BFF96B4C , 0xECF2C56A297747E384E9CC0EBE98A1D5 , 0xED0E30FD7D054ABA891DA6E3946919C0 , 0xED915A7E1FB84FACA7CFB6DE0EE91C62 , 0xEE1556D8DE7F4DF693BCBDB1267D5EF5 , 0xEE1818D80C3A46EAB4EFB5DDE2B5D427 , 0xEE40E99F12DF4415894F3DBD4F20A59C , 0xEF148AEB9C2A42EEAFA451E1314DF749 , 0xEF371BA6C4044348A019055C8320963A , 0xF02FE01B7C5E49CBA96AB5485356E59B , 0xF03E5DCAF92240FE81F3FF09C2DAA86C , 0xF10F8015A01340DFBC036D0DBFD64E52 , 0xF1B7BF3D8DCE492B87B2C27DBD2D696F , 0xF2896DB43C5F40C0AED48FA22C6788AB , 0xF2DE6965CEFD47B4BA76F62C50942E9C , 0xF303A71733B641689C9D514E3D73B8AA , 0xF3692CF51C114977B1FDEF6E55DAA950 , 0xF39258CF6D01425180E11AC51FC7DE07 , 0xF394F59493E54CD5AA58003E5E9BDF17 , 0xF3D168C357F04072AAA4786CA49A71BF , 0xF4A3406D645A4A84B93BD0E057BC2892 , 0xF4AC81D7520346EB863800094C5AFC61 , 0xF6117DF70AE84D2D99E0EC6E935AC4D0 , 0xF615E4F136124CDA985615C64446724B , 0xF799421B479F477998BF4F14A513B162 , 0xF7C132ECF9A24630B9D6E38B385932F3 , 0xF8BD6A16B0374D62AD03B986718DAC8D , 0xF900B1C8B44A442BBF68B7A45F91906A , 0xF92BB6C5D5A04A849624B35C9D96E95E , 0xF9FC981492464250B0BAE770D85C4E14 , 0xFAAD3EB211914309BBF39F88D2F13C85 , 0xFBCD87C9DB134FB6BF7D66C70D85DAD8 , 0xFC701E04CE234DDEB066DDE4CD809C04 , 0xFCD9EDE601274D3484292D9E53E15515 , 0xFCE0AE8B66BD47738EC2B7EC7154AAA5 , 0xFD9368B256804D7C833BC7FB6105A73B , 0xFE191C929B0F4B5FA29469C9F3D72054 , 0xFE42708368D94D87AB265BCC570246C9 , 0xFEADDF9D2479485E938FA4C0B0430EAC , 0xFEB3127BA826431B952289DA6E9697BE , 0xFF9CAA3A09084C25B16B5022A395F691 , 0xFFD1F311E8FB4EECA4292B25B6F6B773 , 0xFFDB37DCE1B74798B35C0EEBA4FC309A , 0xFFE35A143A9F4F8295F9B0187D7E1AD3 , 0x000D0B736BBE49BF9FE06BE1EFE0D72F , 0x0151545F0B2E405DAEED16ADA8172FE2 , 0x01560FDDFD1D411AB829D5B0FC8F7947 , 0x0167DF1C2F254A3C8287528DA04A3DCF , 0x018ADC5BF2CE4652A0C3A6AC7ADC6E64 , 0x0261EFED5F7A4CACA9C3ADF7DEE4268C , 0x028C96A382934713BD7307BADA4AE90C , 0x02B88FB430574C55898C56C44121D04E , 0x03827C9AA5144278815312A1707830AA , 0x03C73E038AB64C73A58E82A5B73B2A34 , 0x052CCB0053E7420CA0CEE937E38CE1FA , 0x058B5C25E2524CD2A53E5D0A8CF150E2 , 0x059DA6A44A324C8A9EDEECD3DA165FF6 , 0x05A33E2F49A64F319F650B712048EDF4 , 0x05D99F4CB18441EBB0E94C9DB0975C18 , 0x05F7BD4B8CE64C879D803F9B79121AEC , 0x060B866D18984186B8B7F276CF8FEC7B , 0x0654D18E3F22412F9BDE150500A4245F , 0x068F49E5474D42E799952E23890B90F3 , 0x06EA2BEE7B2B494DBCB79F402A9645D5 , 0x073AB22F248D4DFB826DD6537B7772A4 , 0x07944BB73DDD44A6B161BACF86FC4901 , 0x08457DFD0256463FB41C201BA5935890 , 0x09DC55EF311C49D8923435F093E77BEF , 0x09FFE7EC3E304FEEA87A6273C022E6F0 , 0x0A280C81D1234184AE8FC39231E5F721 , 0x0AD5BEEF851442DD943A853A5A1DD3CD , 0x0B67384FB5094E42B318C929ED8770C5 , 0x0BDC60075D2C42DC80D21C1ABD0673B4 , 0x0C886F4A606A4487999C12F68C7EB07A , 0x0D97C5E5B4E34A3490A607914E8215BC , 0x0E7843EC44964C4ABB7A149AFF6AE2B7 , 0x0EEF7EDDC57A4333BBE08C3FB8B59EC9 , 0x1024FC93B0984A7895216ED4AF449BB5 , 0x10718C6218894ECA9E7830F52D209482 , 0x119110F084FA4A2FA782197704121B36 , 0x12BB8FEADED9482EB4EFEA2CE9126E29 , 0x12DE256094D8491382DB47CB876C16EF , 0x138E6D0985044915B8FFAF58F400D664 , 0x141116FCD8AE4A3FB1DE4503CA5E0F86 , 0x156EF1DBA295451E92B51F204CFB72CE , 0x15C8AC007CF14F56B22CE50AE07AB6AE , 0x15DFC133DB634228AE155703FE7E1490 , 0x16A2F782D84F4B51B342319CB82307CB , 0x16FA110F651545A3B5D64F550298777A , 0x170498F515BC4C54B5BF2EE77E484972 , 0x1743CFDA10B44B62982B118595B2AD26 , 0x17BAF37B79C449B088E0E45838353A2E , 0x1826DE44ECDD453E947CCCF819DCD5C1 , 0x1860A6CC569D4FB2906071D8E1E7A443 , 0x189247D2B50E4A75A2FCF416A8B162A0 , 0x18A4E5E896CB41F38E7EAD8BC93A309A , 0x18CE7D13A8244DE4ADF8A12FB71B2980 , 0x192429A164594539AF9AE01EB86CB6DE , 0x19C0E7DC83234E45BA2158C16C760158 , 0x1A23890CAB134875B828C832378EE473 , 0x1B1C0A88A5F44725AFE769AE10264A80 , 0x1B77FD7DA0D14F0EB7445C2903147449 , 0x1BC5AC72D78042A7A43BCBEAB9989BC8 , 0x1CEC537AD603426DBBFAB4DB23C169AD , 0x1D7DAAB25A8B4CEFA4D9EE6EAF4836D5 , 0x1E107D9CFAD84CB1AA21AB64DE031FE1 , 0x1E4990C4CFA748F5B3F063CDF9AC482E , 0x1E9C655B61264567AFFD67C684DF134F , 0x1EAC38632CA046ADB29F2EFECE2FFC79 , 0x1EC958DD1B744C9CB858BA7660242621 , 0x1F8824E7328E405D8D34E11232B79D64 , 0x1FAA4D05754843EB9843784B27ACB93A , 0x1FF70CBAD44A4D6BBC4E15C7BE3EBD4F , 0x206EB1C3762C4A2CA987E99F0C7607C3 , 0x216FC818E2BA4C61919CB07622401713 , 0x218BF2C938544D858C0F92FF460E0365 , 0x2192DD2CC589482EB8A89CA7F9C08BB9 , 0x21C220639D9B462A933265F74948F7E5 , 0x2219C187605D491AA6671211CE694BBD , 0x228333A6239C469DA7AA312122F114F7 , 0x22E639CC80AB4A77B5EA8701A54D92B6 , 0x23732DD877A445098BE0ABD5EE9519E9 , 0x23E40FFF4EDD4214B98155571C81DFE1 , 0x242F3E29017B48D7B2E1F7F4D5EE257F , 0x244450DEBF304356B1F1BE3901A8D1E0 , 0x24ABB2CAA42248539668BF5D6B2371F5 , 0x24F37DB484444A288EE2025BBA7E1F6C , 0x2575114244B64F89A7196AD5F145F403 , 0x25DAE530FCDF4EDE9445FE3911170676 , 0x26D7E90446C74971A3C7EB548EE47CD5 , 0x2734106074D942C3A4E9211A26FB7924 , 0x273503D8725F40FC97A6A5F16EE5244D , 0x273F30BC1201459FA920BE98E4829A55 , 0x27C4F50A512B4A24A3E29A82100BF90E , 0x27D900B1307F4828AEF55711585999AF , 0x289F6F8156EE478FB8EC3085077FCB51 , 0x296344D9F9B148CEBD7FDB5B4AE80672 , 0x29BC91EEDFEC4E51962E4A1AB1D65C57 , 0x2A26A8A56A6E4523A65C137C1EFC681F , 0x2A425DABD6CC43B1B8144CE9105330C6 , 0x2A8075A9C25A41FD964A1F9AB4C554BC , 0x2AC70A20F1BE40FB8F304DA982859EB1 , 0x2AD0560069994B5CAC515C111FA5D8ED , 0x2B3BDB626D4A4C9D81D99B9A32575605 , 0x2BFD278E87204807A890DA4A3E81DD90 , 0x2BFE9F8569714EA0B38FC3B0DFD9F913 , 0x2CEABDD07C4B4AEE8C372664007B42D0 , 0x2D2B368CFE424DD189127F20E4EB6209 , 0x2D30B237E3404B1480180E87A4C1A33E , 0x2D45BBF7664448E691BCA6426B1C6E60 , 0x2D6C61A62A11445089A977785A6EBE5A , 0x2E13DBAB75A44625941AC1E25E9F1CBD , 0x2EE09E319D5447A195DD8CA15F4BC9C7 , 0x2F39BDAB6E8145FDBF6FA02B0F7A3F16 , 0x2F659A2B42FC4D6A8148A5A270B95A3A , 0x30099420A2614446B38CC091A272E61A , 0x307CA12BF52649D683C01AB6AD746905 , 0x30E8E0BF98034F40A7F7EEF24FAAED02 , 0x329E298E3C454B759B42EABC84179A30 , 0x32F25B2A15394A939109AF54775724C4 , 0x3307D2FB5D98430D8925D2E5582B955A , 0x33E6E4C76ACB4975A06F76AD2138361F , 0x348C4E2E4EC24B81BBBC20804D3B45AD , 0x34DBB5F89F1743DCB3F7E5BEBEA6211A , 0x34DCDF516DF74C47A8788E475DA6C749 , 0x36AC462CEEC54F17B6FFF2FC6A3BB125 , 0x36CB4E536CA2497388D34BF1A961FC1A , 0x377BF0278F7A4D069EE7629151DE6108 , 0x394F45D0FE7047B18E10B6790EDA50BD , 0x3A5237104F1940E081E34679CE5DE711 , 0x3A546D950C704E9E9AD61699E15BA68A , 0x3A5E4F70FE584A948BEE21E16F1C0EB3 , 0x3A71F77AEA1A4181B4AC8BF0F79D0A77 , 0x3B8E5954B9B4486E8749F0AF5BEEE7C6 , 0x3BD72D7F9C4F402FBADAB77A31165FD8 , 0x3C68A4AC3A1649B9ACEEC69C98477C91 , 0x3C89FD2D0C154E23B282E5A0943894B7 , 0x3CBA9CB9D3494D0A8D76BD0F704E77FE , 0x3D6BB2AA951D482CA783BEB731B4AB2C , 0x3DA0B0DD7E9B454AB3E4D6A681007E78 , 0x3E370E667B2F4754A4990FE3B1D57D8A , 0x3E5AFB6F55D348D69C6C4B14AE24C2B8 , 0x3F8A23A344F84A58BD4F7CAE71F4AAAA , 0x3FF04EC884D644298C453922DCC438E0 , 0x400132C849EF4544A77FD0970C3BCBA5 , 0x407EBCB4674048D59CA239DF1978D2C6 , 0x40A813A7D0FB4050A9F11B421E41CAA1 , 0x40F5707DE12946F4AB3555074F5911C5 , 0x41359AEA3BCA4C2795081E98011C6516 , 0x414A88F8B2254F5CAB2A49D5B6BFEC3B , 0x4159BCAE579F40C89C493F65F705970E , 0x41750A82AB984CE2A663F3A3F03C5710 , 0x418DAA8BD44E4477ABF228F94CDBB45C , 0x4243A73B1A9648E6B00DD95D3A2A1C72 , 0x42727C57FF4B4C3E9D4A4FBFF1E40FBB , 0x42B79FA66BF046E48E89D1833E979292 , 0x4335DE19EDFE4DA898AD35B4C3ADA262 , 0x43C405F005F84B5F84BEC0038BBA55CD , 0x43DAF7E79AD04452B337B2632CF8F472 , 0x4459D8364B704B9DBE9D6FFF229B5F1C , 0x44AACD5CEA5D4712BC652A577E08A79E , 0x45960866EE434B73A00CACC3BCDD5C68 , 0x45A23269364147FA862687CCE34995AA , 0x461C3D658FA3457A84C7FF1AE6C2A72D , 0x465D1F0F2E1A474194543CFE2F5B69CE , 0x468BB9FB35E54DF9A9514DFE54A54A57 , 0x484E55E2303742C5B01873D5F5D5275B , 0x488E61F3FB0F4F5BB3E922598D928375 , 0x4A4D112A9CF54D0F9E9663F5F8E20E3D , 0x4A533B1969EA437EA9286838A690E722 , 0x4AF2EE34BCA44A55A45DCF550180A789 , 0x4B0CBD62314543AFB2F9E859C5B6A242 , 0x4B12F1C619864550A5DF5B6630318343 , 0x4B960CBD8E8840DB91DC262862C19209 , 0x4BDB40C704D140269CD5104F08018989 , 0x4C29C7598A424E36B37E6863426F7A45 , 0x4DBFEF55957C4B0480E6B9704C2B0A50 , 0x4DE945DF94FC4D50809040F7499F187F , 0x4E43FE740B56465BB5D0E29BFD6E7A19 , 0x4EB8292676EC4C3AA11FD775490225C2 , 0x4F8BFF1B027243BB89A45746CC13721F , 0x4F9616CC8B6B41719AB4DCACC4FBD681 , 0x503573A50B9B4DAC87CDA071219BC1CE , 0x50B85FD10E444240B4AE5FD71CA4ACDE , 0x5193FFA5DE8648A1BCFBA1FA8A26C02B , 0x51D683EA62ED42A4B111524EF6857C4A , 0x52454DB2ADF942B2AC079A296F454A10 , 0x52F8B283FAE249EF89D0D48B58024463 , 0x53EC818480974A6AA7AC2135C135E778 , 0x5445204B02D54229922BCBE2C891766B , 0x54529CB761C34D00812B5782018530EC , 0x547F2786EF0F41DCB9BACDCBB19CB473 , 0x55287CFFA2AA4E61A4277C997983EF15 , 0x5537CA917DD349869458F59E5AD0CAE1 , 0x554492B3197F41CCA73086132BBB13D4 , 0x5578A669A71B4797B7632958B3AA7B2C , 0x559D4B8FCA3B4CD599019D0F2D386671 , 0x56185F67D90C43B29E976E7AC819BF50 , 0x561A30935EF140D2B9E7DC02D1A07DF8 , 0x5626A09D7DD64E27892455472996A58E , 0x5643901D8A8241748168CACE59E9CCC2 , 0x5745CC1EF2024672A1FF223C2827E71D , 0x57C86EEA7ED9418C9882B17E96C06966 , 0x57F59F7CA3494F4B8268447A3C8CFEAD , 0x58DEAB7D060F47F28DB38FB1112A3BF5 , 0x59165B81288943329E95069322B8F698 , 0x5919ABCE4836461C983C47EB1705E823 , 0x59229C069E934DF6B1A51F52ECBC0335 , 0x596504AF1F52469C854F555647A83CD6 , 0x5971BA39CF47436AB18A8E1F3B36F9D9 , 0x599CE5FEB01D4CDC8147DE16B9B550DD , 0x59E37E3B440342A4B807BB33D753CCC0 , 0x5AFB9FB0E9E5467DADD8B1050F2A2BEB , 0x5B8D2A04510B4018B149842002641A74 , 0x5BBAE6CE9A7940D5B8512BC75E0B855F , 0x5C5B0E6B0C2E41549560B25B8D90CF3F , 0x5C64808E9D524713A263DF146E318BCC , 0x5D0EB28CEF3D4957BE3FB678B7809051 , 0x5D1C012431F346C3B336BC49162EC248 , 0x5D544886E310443082BDD0DEFE52BE2E , 0x5D82376EBBC4445D91D880E9E7E88F9B , 0x5DD5D52F070B496C9C5569B92F4183A3 , 0x5DE1EFAF5E164279921C7685C179434C , 0x5E7BF68A73874EA6BDD137481779A4DF , 0x5F011C2102AF4D7584C357B88FF1BE76 , 0x5F1BC7DE15644580908950DC7090E996 , 0x5F7E71065DA0417B93F5D576B6EFF4AA , 0x5F9F898C030B49C296FF3103C161064D , 0x61E58869825B47C98FBC330834A0D77D , 0x629A68A6C24A44B9BCFA0861DA810372 , 0x62DE0B36A9F14213909209BAE8929E19 , 0x6327E940A40841B7AEDFDBC454A410BD , 0x63460C1734CC4360A54966A5A60E912C , 0x63EC96D3010049878269F39574AD7EC9 , 0x64A124566FE24CECAEB6900AD77DC1C0 , 0x655BAC9D9AD34D748B207A6193079D0E , 0x6592A43FB34C40538B606BFA9253E9C4 , 0x66030C97897F4FDCBCB6018023294A2F , 0x66104AE7A2CC40C1948C764714A39CBC , 0x677B18B4ABAA453298CB0F11E1D5C766 , 0x67C0EC0185564706ABB5E149C1CCB8B3 , 0x67D3B6BD62BD46BFBDBA787E9C057D65 , 0x680B668F51FA47389E04BFA6F94C8E61 , 0x68138061F3BD411CBEEF8936D10D49D4 , 0x68196BE05BC74B6B8C27A6AD7C3BA37A , 0x6894F1F1D2F14FF9A74175B94DC90EB6 , 0x694DD94E6B3C4E23B398C3253318310B , 0x699E8AD62F12435DA8DF665889B53E1C , 0x6A214396FF3946498B2276066E80D04E , 0x6A2F7847A31741DDADDF5674921761B6 , 0x6A3B54E17CF64713BA8E7803B9C0BEAB , 0x6A6538F99AB3493095829F7FC049AEF2 , 0x6AE0CDD72F8049DA89D77A9D4DEF05E0 , 0x6BDA31E68EF146FEABAC3273DD10888D , 0x6BF34D66C64B4A3596597E92F03430D9 , 0x6C25B7479B184EBD94E97F1CBC1E0C3F , 0x6C881A87110341A2A043BC9A7C023FAA , 0x6D78F81F3F984157A6E4D80672BF13B4 , 0x6DA341CD87FA49CE952EECA5EA515AE7 , 0x6E32527B89124E2ABDDE5A893FBD72DA , 0x6E69A9B8445946708CECA0DF865368D8 , 0x6E6D9C305A5A424FBE7BD884E050B37A , 0x6E7D0E9163134A539BD011EAA9025C01 , 0x6EAECB09999A400DAC58C2B11933676F , 0x6EAF3D21C6104697945B6F009B1B131A , 0x6F886140ED6F4B3285D3D483FF765792 , 0x7065F72B3E4E465DA653D86E05CE17E9 , 0x70A25C2DFDE44486A09384472312B5B1 , 0x70E8DD6B656D4A4B907B0FC74AEE753D , 0x70F0782CD98740258C63880E61EDCE3A , 0x711C5395032649C1817C365189EF2ADB , 0x71E20458C47743E087EF434F783A9CDB , 0x730F5A502717477CB4D236AAB08F5200 , 0x7349C24A3F7D487B818D488C253958D7 , 0x735B0B5205AC4F0CB52142D9B6512CB2 , 0x736934E95996469E977CB0884C8D80CC , 0x73DD488EA86144479F63394C372A969B , 0x7449185A532B46BAB3997C3EDBEDFAB4 , 0x74AE9206DD674848928B40C1925FC6B6 , 0x752701E5CE774AECBB7F66A756C297C3 , 0x75D56F4F7F664C9AB7A84BF92FD24C11 , 0x769D8FE7B08A4D90B6A4D067E3AC18AF , 0x76B6B58B96AE40019F2E4C8E877A923F , 0x7738B9D805B441A3968D5B0469EB91DD , 0x786FB02E0D1943019480A55BF3081931 , 0x7884C6D4D8F84D31A0D4521F26E1547E , 0x788F0E702D3B423CAE0E476C5167D156 , 0x78E954D09CD64AEEA2E5726741A69A1C , 0x78F54F169A3E4CE19F563939EAFAABB9 , 0x790E8323CD1E414892D541C66D170796 , 0x793581CDA411440989418F68608E5876 , 0x79987A7769A8464CBC1E0626645DA1B5 , 0x79D9739FE3BC487FA801869733232C4E , 0x79F92A07AD1D4A15A9AC3651E602349E , 0x7A6373D28D5B46209589E150FB39FDB0 , 0x7B0E9F7AD4FA435FBBAADF581C501848 , 0x7B75774818254B9ABE45C6639C4BEE9B , 0x7C6DF577EF354D49B3F4C6112CE48537 , 0x7CAC5C00480248C181971BF1BA45C03B , 0x7D35022BB7C94579AD6BAA9CE8428C92 , 0x7D5310624DBA4EFFBE8F76EBC42AAB1A , 0x7DB0A09BB4094BCE922737464171A596 , 0x7E05A98AD35142329AD9F0FF305D8395 , 0x7E73E5125113452F96F2CEE8FF253E8B , 0x7EE09F3E86754D5693108875EEAD1C5B , 0x7F5521C6764C4C5EB805B2496AB88328 , 0x801FFEF297F844A8AD50DFD3FF3CF4B4 , 0x803828A402AA461788CEB9F116E125B1 , 0x8040133CAE044D3E9ED8F1EB8D0C1F63 , 0x806A179180EE45DEA47848191EF93244 , 0x81666015193B47249DDA288081B13924 , 0x817ED606E3E04DBA845A503A38E8CAC7 , 0x8230524B8822491EAC975D39BB567E77 , 0x83705DCC0E5E4264802D9570C0995BD7 , 0x8410CB1D13DF4406B093A62F2DF6A49F , 0x8464A73ADC1E4C659010B4B3E0C93739 , 0x848139E6903C4C708322371F739D7CF8 , 0x84D5681F053B4D11B0429FB54E6B3023 , 0x84E0A14520C54F08BF181330DFBD99CA , 0x8552DC31F9B24EA496D1A6BEAADE8D9E , 0x8561D062A3874E36A5F8C1F5FDE806FB , 0x87568A2B33A143749FF338C915617A28 , 0x8762BA3A092B4F18A92C2C9342B0AC9F , 0x87B2F067B1674465B3995058EDCDAD5B , 0x88242E6C532D479C97E6797ECD57F941 , 0x889C63A7F95B4DDA98B3D0A104D9B6BF , 0x889E3E76CF7B4EF781EDF57A4CB201AA , 0x88C7FFA14DC249668AFA462FBCD634C5 , 0x88D21E3CE83041669DF60CE3F37CBCF4 , 0x896BA96AAC694B569A83BF591287A923 , 0x898CDCA9AE434D62A8241D9AA4B9FB25 , 0x8A6590DADEA5482C9B3911179C84A1D9 , 0x8B5B20B570C0412AB58D80AF95AE9F05 , 0x8B8F4A25E36E45BE81025CA3356D66F8 , 0x8B9363E082E84EBCB18F866C186A388E , 0x8C7E190C227644DDADC88EF825944239 , 0x8D3A219385AC4B549D65FF85F36C6B0F , 0x8D827FC7B9D84356BC02873EA4841546 , 0x8DB803FF09A440DB82A6C8AF41968AA4 , 0x8E761B6130F0451A8F3BF562EC4551F5 , 0x8F9C44C9A9AF483AA51F07A99BF20F64 , 0x8FD0C00FFE1B4214BC3D619DEF70852F , 0x8FDC48BB552843F89A689E3FD7AE41C5 , 0x90D8E769D6C4403C881194CB47226EEC , 0x90DB8E572EEA4EA396215457FEBD90CA , 0x9219410151B8446CB753E85DC56D423E , 0x926AAFB3075C4C6CA3363DAA1DC26A64 , 0x92B6C39209BF4C498D250D1758D01829 , 0x9366A11ABCD647CA8E90B16005CEB6FE , 0x94A84013A7CA4266885E8A67C0B6AE74 , 0x953E02487BE54A309642324118ACE509 , 0x974F24265B684935A3A6CA37BA2B01D7 , 0x9758D63DC7A34E9283B8FCB095196B25 , 0x975A5F7FE91A4DC9B8B66788CE90B60B , 0x976479D0DB534585874A3080D9F248B3 , 0x976650529EF14B4E9ED206A8193EED45 , 0x979B86599EC9403091ECE139D0D807C8 , 0x97E630793CC544EBB2BD676EB27A21E8 , 0x985732874E454831B90BE29C99FBCEE8 , 0x989AF3D3CF5644AF9C0C7CADEF84EB45 , 0x98DD1EE0B1244725919833D5A110D958 , 0x99084580AF774598BDB7958818294245 , 0x99529600B9FF48C7B359E99818AB4DAF , 0x99D6A1669AAA47E9A867C912ACEF6F34 , 0x99E409950B5C4DFAA820BCE764652356 , 0x99FC49EFB2F345B0BB62D93F1F630297 , 0x9A1B258DE098438596E0D451BC0B1BC4 , 0x9A533129813743C0968D8C1BA61D1B5E , 0x9AF0CD11D26B4B2C9CF5697A9A841F77 , 0x9B05F88EEAB948F48184D35A8BF585EE , 0x9B15FDAE5FC24618896B7BE160068FDA , 0x9B637EB7B3B6450AACBBC7F74C30CC1A , 0x9BB12F638F464A10AC6D2C650D1524EE , 0x9C3132C8F4194E2A95F1812A28C9267E , 0x9CCAC6B119C54E55A30A3559799EEC4D , 0x9CF60263E42643B18F1F65D26EE1E712 , 0x9D2FCFF3F9424E5CA4883D91F65FD3F8 , 0x9E84E7B7F32C49D49147311C4B1DDC0E , 0x9EBA89258B2E4E0FBC02D337A77BF07C , 0x9F4D5F53B7494EB2968F50F898DFACE6 , 0x9FAD02577C144B4ABCD2D4615C645661 , 0xA0183A2B88D24C1089683E299EF0E5A0 , 0xA034AD9AC5604D8786A600C8FF727B7B , 0xA0498A7C0514491DA66C4DC175053BB7 , 0xA05F65CEBE884DB9A0A8D1BDC99C658A , 0xA0B6427CF7EE44F7B91A83A9FFD9987F , 0xA0D8D0164533454DB70ADD4BE62FB649 , 0xA1660A24F3824697A90FA588EF09DA14 , 0xA265ECD2D2FC4FBD88A3698D81BE3CE4 , 0xA361B5F606CE467A8B52759E1B3941EC , 0xA3866FFD405C4403B72759537EE42434 , 0xA39A7C92C0BD47C09970D3989CFED2CA , 0xA48942B91E0742519BCA7B16667AF98E , 0xA4F88ADF121F48C99FD3EB29E09B1FF1 , 0xA5EC6A653EEB4D9B8E39FD655847F779 , 0xA6B07013E38D42B9990933F1CAAF084E , 0xA7C236F7596E466DA6CAB5D93227918D , 0xA7CA0DA9E0204506A5A443AC348C5C39 , 0xA81BCA2534FF475BA2CF0493730E0196 , 0xA83C84723F6C493B9CBF0083A0C3FA96 , 0xA890AED2FAF04103A098065CD3C182F0 , 0xA8D71210207744BD9ADA9D45227E7AE6 , 0xA96B34DB48234E9898CB8E8A645E59AC , 0xA9A2AEB1DB134D2FA8EB90F139A3B801 , 0xAAD91494F5434338B8EE0CC173760DA9 , 0xAAFE9EDBF3E442909B332A93791D72D4 , 0xAB27878C858947BF9BF3F7337910510D , 0xABBD7834AC1D48718F732CEEEBA40A14 , 0xABCB6696BB6142B6A93B3D49864CCBE5 , 0xAC1F11D317D3487E96E23036B7264DD9 , 0xACBADFAE3F0E44F0B44BC01B68E0881A , 0xACFDE35EF6A94F3F9928E802310D43D6 , 0xADFFF4DB29704563AE31D0A11A96F494 , 0xAE4578DE6B7F4525BCB24AA0E3F3DC9E , 0xAE61DA93D12C42EF8E3E252B4EA55B4F , 0xAEE4A6797A254296BAC9E3FFFC22985D , 0xAF11B47C24464103885AAB5BA9C0AE7C , 0xAF909FD876A5488793AB56B8DC7EF35A , 0xB014913F498C4D0A864FC2E2F11D7090 , 0xB18F71E07BA04C31858D32522B152FDA , 0xB2355711DCDC48D8AADAC7E10309800C , 0xB2927B9F2C4641C7BE1DAEEF6CE60F36 , 0xB2D389BF0C6740B3AFC145B2ECF2586B , 0xB2D6AE43270044E49FFB2ECC54E48F9A , 0xB38C21EC79914187B685D8851BE17940 , 0xB3BAF5DBF1DF44A7BB1CE6DE8297A79E , 0xB4333F7F150740119EE9B8C7705D4994 , 0xB43B825A64C64E71A81805D883A3E5E7 , 0xB44D749AE0664F50A73601B29C78513C , 0xB486E0C247D041ED84CCE30A0CE2881F , 0xB562AB0809BF45E29B437AAD71CE3FD9 , 0xB5945CEEDF9C4A1FB22F463CAE45B6E6 , 0xB5F9FAB27BBD47948CCBD5EAC2BB223C , 0xB60EFB5A5BB74924B2D78D37753C491D , 0xB68FA6C1A30A4FED869866AF7C3FA211 , 0xB69D205885B34CDEB365D8E864B058C3 , 0xB811B466D4C24C59A83625FE30E92594 , 0xB962154DEF4E4557BA09E21A1CE9E8D0 , 0xBAFFC4C0A6454FD4A5FB0B85235E90AE , 0xBB0116ADB986489D9130894324F7A5FF , 0xBB0D9F633ACD4B94A8CCB1191AEFB983 , 0xBB2DC9ABC0F94A1FAE7107BF61825B1F , 0xBB898DC07DA941F69F4478DA0FB7E9ED , 0xBDA0739EE1784E3FB53191F69E95DD95 , 0xBDD76D8587B04F439DA4F96194F559A4 , 0xBE3454886E6D42FDAC90562C770FDC76 , 0xBF205D41E4A3498DA999DD22CED97CEB , 0xBF359E1343C8492E874A6A49592C23B3 , 0xC159B69D59F942E4B1463AFF8CCFCB2B , 0xC19439300CD240079842FFA814439E72 , 0xC272B0E30A5D4AE485E4B004553E906D , 0xC2783D38579F432D95F21CEE5235D557 , 0xC2D26E3BA9C8496B944FC1976B4D1595 , 0xC33CF664A3A44D74AA7FAF39581FB87F , 0xC3E4F1120D4246B4A3169FB6EA9B3754 , 0xC5BE5E3F6DC64813AC4B8B186A48A5B7 , 0xC5C8B3B3A2C3431DB4C17C7057717582 , 0xC64D84707B204AFFA31D3320D3818830 , 0xC72368E42D5A425481116950AE42E8A6 , 0xC793E7C979744EB4A1DF9F0694693905 , 0xC87E21A776754D7BA291D898BCF12BDF , 0xC8920C39C3EC46BA9ABF2A9200D664D9 , 0xC8F2C2F827C847DF9FF85148C418EDE6 , 0xC955CF213D314ABC879485CE82C75F3B , 0xC99CA89DAEFD43FFB4F10502EBA7C45C , 0xCA3122DF200E4B1093499FCBBC98693B , 0xCADD602F64844C7FADA5C6C686BCCA93 , 0xCAEA6BD8236D4588A3F346C33BECB505 , 0xCB75F8B8E471487398D4F830DB8BEEBA , 0xCB91C5629D824064BD54712097CF5AAC , 0xCBBA9861081F4090B562F7C7C49DB141 , 0xCBD24E9B423846D1B5107C049E082DCF , 0xCBE824276C9647E2BD7753E2345739C8 , 0xCC324E63B68049AEAB2EDDA65DCCA52A , 0xCC68B877248C4709828EEC45FECEBE27 , 0xCC7F036DF4F04859829D6A4091ABFE1B , 0xCD414378DE674CDC8B5398678C169EFB , 0xCD59AA9167FD4433B63BA0A23DBE22E6 , 0xCD8E927D36F14E6B87A1C8B8AAF47DA2 , 0xCEFE9EDBBAC749BB93D645956418702B , 0xCF444EEBA0574697824B8CF900339FCA , 0xCF8294F0EF71483D9BE40F9F216CDBFD , 0xCFBB2D58615B46B496EB9BFEDC6666E5 , 0xCFE9D681CE9A42B2BAD2ECB2E508D1A5 , 0xCFF58C04736B440E95E771A79DAA0FAB , 0xD02B04633AEE4E20AE5017452694911C , 0xD03E93B6E52141969C542CA81CA1A87E , 0xD0FE86F149A946DF986FB845A00B5714 , 0xD17067FAF5A74D56A70F58278FCEC72C , 0xD2422A3A683B4A26A92CBDB94AB1CDC4 , 0xD309AC94ABF4491EB95CD23E15489CC7 , 0xD336F3B5F9E64955B1F8448EC44C63A7 , 0xD340BA2D7A384E16A611CE21BA5051F2 , 0xD3BCEB4DBB4E4F9A9C6939D7C4A14789 , 0xD3E67C82031E4432A2375E4427889B1C , 0xD4290B84FBC74778B97DEABCE452C713 , 0xD48F0A6DA28948D68627BC0D56881B7C , 0xD4A49D8A65E64B609DD482A0D87345A7 , 0xD4AB20D3F29C49B29760743A95BFC55F , 0xD563A5288A1F46CF8DE2828557103A9C , 0xD5C7D730DB994E1F8DB6CFD8D3BC9599 , 0xD6586797DF1240C1AEAD3943606FBF1C , 0xD69338DDECF4496E99FAE96AA9587CE2 , 0xD6B99FE33D5846A5B459EDE513FCEEBB , 0xD7C75B83202A44C79E61C63C8E83BF06 , 0xD7CFDD94B79947A6903C344E3DF5E29F , 0xD86777372A434376ADE498DEFBD99647 , 0xD89CFC5DE3644833A1A3D12E58AEA39A , 0xD98E17721D524B409C6D5F5902DFD212 , 0xD9C547C7AE094644BA264497F73306FD , 0xDA5ABF3A196C4D20BEDC20268C801FBE , 0xDB1E4109009F437AB860F9FC047AB680 , 0xDB6C043BDF27481FA752A0FCE0D59349 , 0xDBBE6F0AC5D24D75BC6BA338636A386D , 0xDBE8DCFEA30C41EFACA3CD78746DF54E , 0xDBECFC9ABE6E4F7D8C1EC669F39DDE97 , 0xDC00B1011E50498CBDC719EF10522962 , 0xDCAC348506874B37BE091CC01AB9FD4D , 0xDCBF83451AA746859D4DE4B7EA4D9185 , 0xDD5CC743D87248CC98818871438DBB09 , 0xDE0A4660AFC841DA83BDBB6BE0801712 , 0xDE0DFD87D6A0409AA89154C1CDA4C00D , 0xDE8327BAEE5A42BFA3119441CE9F0400 , 0xE034834DE6FE47BC8BD68F4216CFEB9D , 0xE19DF742C20D44E88D60671188175D01 , 0xE2955940EBC74513A1AFF630F61BDE8A , 0xE2B38F2FC7A341C6BFC456B3C053B8CE , 0xE3651DB1E006403B830D412C3FA0C840 , 0xE398C585870A467886C0F358178E3E28 , 0xE40B3097F3B34EA48CD7157E5E32C898 , 0xE4D9273A32BC4B65BFAB71EAC59A13CA , 0xE62AB798EC774165ACA224AD03987B05 , 0xE68289614EED46B89C8BB65EF7EF334C , 0xE7708AF48BF44B5CBCD3A8A24F6336F6 , 0xE7A50EA892BE446590A84342D2369612 , 0xE7A9A114FCCF4135AE4F86D1976FCAAC , 0xE817CB7471184D01988B6C79EB15FA66 , 0xE82306C73EF043D796E722FB0CE8BCD2 , 0xE8C8F701B29947918AF6116EABBA0D90 , 0xE8C97507DE1048718DA40DE9BD89137B , 0xE8EF31CC8E6240729DD64127C12D5E13 , 0xEA8F846CA463434083E45BA63EDC3738 , 0xEAADF62111E147F087E6DAF4347BDEE6 , 0xEAC39CAF816E48168F46C68EACE7B04F , 0xEB0C0719C84648E1A0832EC04C50FF30 , 0xEB4A625083E04A988326A1D1243BF149 , 0xEBB6ACBD880E46299E6DFACE56EF4A8E , 0xEC2666AF073A47FD9BA80DCD82F353F2 , 0xECF81513ADE8423B9E4C911D62ECA6BF , 0xEDD48F8A6FD24617A4D187D9139FEF8E , 0xEED176E1647A42E7AFE1FA41FCCF7BB2 , 0xEF09DCC1F1D84CFE96B266299754D8F9 , 0xEF771D6AE55F4D208E002A825AA2CC70 , 0xEFE0398E20874B0D83884290FC73F5F8 , 0xF010E8060DDE4AD3BFB6F6AFD1970820 , 0xF0A2A0A4766F4B06A7D409821EF7CC18 , 0xF0B13AB85FFA454CA5E386E78DD38453 , 0xF0E7237D5C0D4868AA26A8AE8836F040 , 0xF0F6BFB1DC3C4D6E99CAA1DD0BC32A79 , 0xF1514FCB059540F99247AB93D588AD2B , 0xF2AACF007F054EFF8777B1B468E1D65F , 0xF324E739C77C48E296AF91F8303E6A4F , 0xF380E37946F2420088BCCC80A554F19E , 0xF3C48062B1124AF59D38FE4E495D9CBA , 0xF3E9B99EDE1E42B8903C7C65C6261B12 , 0xF4184F079B3F4424BDA69617C7C0E198 , 0xF4F05979DD2D40248D44ADD38B1921EC , 0xF5F9623BEF1E4D72A3FBD749BA73E19C , 0xF6B61E3D4DE64D2BB8097A369ECF99FB , 0xF7014C6A365E472980EEDD7DACD56C96 , 0xF70A77038E80425FA98F463A1FD44473 , 0xF73444EF081A4AF380CE05D4F409543D , 0xF7595E61B9A640B089440EC9947E0F9A , 0xF7EB0B917346465AB3E3B901A172815C , 0xF8EFBD997C8A4441BFD33040EE99C70C , 0xF8F727CBC2E94E46B2708D3A289E9A5C , 0xF96BC4404E1B43F68F10EA1C76B7E0C4 , 0xFA488A99F1BA44CE84D4018A400FE462 , 0xFA50992C213D478580AC0E412F4CFF99 , 0xFA95C912C31443FAAE5E179D0056AAD0 , 0xFA976DC99CEA4FE0A800DF775DBA3AF2 , 0xFAB04079CA8048FFBC3DA7D556FFF452 , 0xFC4915AF6FDA4992A5111600C737DC35 , 0xFC6471BFE8044BDA9C0307C9C163FBF4 , 0xFC6958D5865845729A625046C7E84BF5 , 0xFC8405144CD74BDCB4A19E3E43FE7321 , 0xFC9B48ECE2354A9FB4B324C56B7F4DE1 , 0xFCA153FBB5604B64AA2326C93EC4F787 , 0xFCB6E363F93942E3806FA5E35DDAC27B , 0xFD0D209CD6FF45869255103C00DA0CDC , 0xFE00239A50FC469CBC92CED8B43CC8BB , 0xFE051A63E4B44CE593D97545F7261DE4 , 0xFE849AD582FD402DBFC09E2C2DAB7F5C , 0xFF067E170C0D4C1E89C8AE7213CBEAF0 , 0xFFCFB3CB2CBB4889AF8C94F9EA5180AF , 0xFFF67C781AAC40339075B6DF736AF840 )) ORDER BY `property_group_option` . `id` ASC LIMIT 500 OFFSET 1000 ;
Copy
66
6.52 ms
SELECT `property_group_option` . `id` as `property_group_option.id` , `property_group_option` . `property_group_id` as `property_group_option.groupId` , `property_group_option` . `color_hex_code` as `property_group_option.colorHexCode` , `property_group_option` . `media_id` as `property_group_option.mediaId` , `property_group_option` . `created_at` as `property_group_option.createdAt` , `property_group_option` . `updated_at` as `property_group_option.updatedAt` , `property_group_option.group` . `id` as `property_group_option.group.id` , `property_group_option.group` . `display_type` as `property_group_option.group.displayType` , `property_group_option.group` . `sorting_type` as `property_group_option.group.sortingType` , `property_group_option.group` . `filterable` as `property_group_option.group.filterable` , `property_group_option.group` . `visible_on_product_detail_page` as `property_group_option.group.visibleOnProductDetailPage` , `property_group_option.group` . `created_at` as `property_group_option.group.createdAt` , `property_group_option.group` . `updated_at` as `property_group_option.group.updatedAt` , `property_group_option.group.translation.name` , `property_group_option.group.translation.name` as `property_group_option.group.name` , `property_group_option.group.translation.description` , `property_group_option.group.translation.description` as `property_group_option.group.description` , `property_group_option.group.translation.position` , `property_group_option.group.translation.position` as `property_group_option.group.position` , `property_group_option.group.translation.customFields` , `property_group_option.group.translation.customFields` as `property_group_option.group.customFields` , `property_group_option.media` . `id` as `property_group_option.media.id` , `property_group_option.media` . `user_id` as `property_group_option.media.userId` , `property_group_option.media` . `media_folder_id` as `property_group_option.media.mediaFolderId` , `property_group_option.media` . `mime_type` as `property_group_option.media.mimeType` , `property_group_option.media` . `file_extension` as `property_group_option.media.fileExtension` , `property_group_option.media` . `uploaded_at` as `property_group_option.media.uploadedAt` , `property_group_option.media` . `file_name` as `property_group_option.media.fileName` , `property_group_option.media` . `file_size` as `property_group_option.media.fileSize` , `property_group_option.media` . `media_type` as `property_group_option.media.mediaTypeRaw` , `property_group_option.media` . `meta_data` as `property_group_option.media.metaData` , `property_group_option.media` . `config` as `property_group_option.media.config` , `property_group_option.media` . `path` as `property_group_option.media.path` , `property_group_option.media` . `private` as `property_group_option.media.private` , `property_group_option.media` . `thumbnails_ro` as `property_group_option.media.thumbnailsRo` , `property_group_option.media` . `file_hash` as `property_group_option.media.fileHash` , `property_group_option.media` . `created_at` as `property_group_option.media.createdAt` , `property_group_option.media` . `updated_at` as `property_group_option.media.updatedAt` , `property_group_option.media.translation.title` , `property_group_option.media.translation.title` as `property_group_option.media.title` , `property_group_option.media.translation.alt` , `property_group_option.media.translation.alt` as `property_group_option.media.alt` , `property_group_option.media.translation.customFields` , `property_group_option.media.translation.customFields` as `property_group_option.media.customFields` , `property_group_option.translation.name` , `property_group_option.translation.name` as `property_group_option.name` , `property_group_option.translation.position` , `property_group_option.translation.position` as `property_group_option.position` , `property_group_option.translation.customFields` , `property_group_option.translation.customFields` as `property_group_option.customFields` FROM `property_group_option` LEFT JOIN `property_group` `property_group_option.group` ON `property_group_option` . `property_group_id` = `property_group_option.group` . `id` LEFT JOIN `media` `property_group_option.media` ON `property_group_option` . `media_id` = `property_group_option.media` . `id` LEFT JOIN (SELECT `property_group_option.translation` . `property_group_option_id` , `property_group_option.translation` . `name` as `property_group_option.translation.name` , `property_group_option.translation` . `position` as `property_group_option.translation.position` , `property_group_option.translation` . `custom_fields` as `property_group_option.translation.customFields` FROM `property_group_option_translation` `property_group_option.translation` WHERE `property_group_option.translation` . `language_id` = ? ) `property_group_option.property_group_option_translation` ON `property_group_option.property_group_option_translation` . `property_group_option_id` = `property_group_option` . `id` LEFT JOIN (SELECT `property_group_option.group.translation` . `property_group_id` , `property_group_option.group.translation` . `name` as `property_group_option.group.translation.name` , `property_group_option.group.translation` . `description` as `property_group_option.group.translation.description` , `property_group_option.group.translation` . `position` as `property_group_option.group.translation.position` , `property_group_option.group.translation` . `custom_fields` as `property_group_option.group.translation.customFields` FROM `property_group_translation` `property_group_option.group.translation` WHERE `property_group_option.group.translation` . `language_id` = ? ) `property_group_option.group.property_group_translation` ON `property_group_option.group.property_group_translation` . `property_group_id` = `property_group_option.group` . `id` LEFT JOIN (SELECT `property_group_option.media.translation` . `media_id` , `property_group_option.media.translation` . `alt` as `property_group_option.media.translation.alt` , `property_group_option.media.translation` . `title` as `property_group_option.media.translation.title` , `property_group_option.media.translation` . `custom_fields` as `property_group_option.media.translation.customFields` FROM `media_translation` `property_group_option.media.translation` WHERE `property_group_option.media.translation` . `language_id` = ? ) `property_group_option.media.media_translation` ON `property_group_option.media.media_translation` . `media_id` = `property_group_option.media` . `id` WHERE `property_group_option` . `id` IN (? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? )
Parameters :
[
b"\x02 0¨(çñA —O®8ͬÞÛ "
b"\x02 0¨(çñA —O®8ͬÞÛ "
b"\x02 0¨(çñA —O®8ͬÞÛ "
b"ÒB*:h;J&©,½¹J±ÍÄ "
b"Ò¾ \”µKÖ¢<µ\x16\x16 cìú "
b"Ó\t ¬”«ôI\x1E ¹\Ò>\x15 HœÇ "
b"Ó\x1A\x12 ²ÿ$Gu´ctSDÒ•\r "
b"Ó6óµùæIU±øDŽÄLc§ "
b"Ó@º-z8N\x16 ¦\x11 Î!ºPQò "
b"ËbR9\x13 µANÿ¢░\x1E\x1D É\x14\x17 "
b"Ó{Ë\x05 êÔLЇ·*QTÍ7k "
b"Ëë╬þJTD,Ñùü\f Þ@>J "
b"Ë».]ÞtLy»ÒpzüWýL "
b"Ó¼ëM»NOšœi9×Ä¡G‰ "
b"Óæ|‚\x03\x1E D2¢7^D'ˆ›\x1C "
b"˸xû\·F\x01 ìc┌$\x13 \r "- "
b"Ô)\v „ûÇGx¹}ê¼äRÇ\x13 "
b"Èty©41F{ƒ\x11\x15 vÅ£\x12 ╩ "
b"""
ÈÅ\n
móëHÍå'╝\r Vê\e |
"""
b"Ôš\x7F æ\x17\v KŒ OA3¾ê×, "
b"ÈñØèeµK`ØÈéáÏsEº "
b"Ô« ÓòœI²—`t:•¿Å_ "
b"Ô·\x0E £ùSF\t ´¹Ð?´aŽ\x03 "
b"ı-Ò%ì´Hëæ▄^\v ¥mW1 "
b"ıcÑ(è\x1F F¤ìÔéàW\x10 :£ "
b"ÕwÉîÜÜHâ£\x07 ˆJº¢uä "
b"Õ„µ\x04 ×fBžø1,cy\x07 ) "
b"ıÃÎ0█ÖN\x1F ì¤ÏË╝òÖ "
b"""
ÕËö\x12 §\n
G0€¬\x1E }Ø\f v\x01
"""
b"ıÞSÚú¶IØÿ¦\x1E °\x1E £p¢ "
b"ı¨¿M¶IıÅÍ░'\x1F ò1o "
b"ÖXg—ß\x12 @Á®9C`o¿\x1C "
b"Ö“8ÝìôIn™úéj©X|â "
b"Ö˜\x04 –éPK\x14 ¡_^4¸&=± "
b"Ö¹Ÿã=XF¥´Yíå\x13 üî» "
b"×+.‚A\x02 L¹™à\x7F UH¿Ò\x07 "
b"ÎM ³î\x10 G─òA@\x1C ü]èª "
b"×Ç[ƒ *DÇžaÆ<Žƒ¿\x06 "
b"Τ¦öÀÖGªÉ<4N=§Ôƒ "
b"×ýšg\x18 {@\x0F ¹\t °Õ\x12 ßÕß "
b"Ø(9B°<Ia!›m\x11 ëWk "
b"Ø9‚JÑ/Gh•¾ZwG¬ê¸ "
b"ØX,\x15 8\x16 M\x15 ”Pö¯T4†€ "
b"Øgw7*CCvä˜ÞûÙ–G "
b"""
Ø{ˆŽ†\n
Hu¢8âa\x11 Wû6
"""
b"ÏÆ▒¹}4E6üxGº\x1E ö▓\x10 "
b"Øœü]ãdH3¡£Ñ.X®£š "
b"Ï┴G▒AAI\x07 ü#âf\x03 ─lA "
b"ØýJú1M¯„s¨’¶Š©` "
b"ÙŽ\x17 r\x1D RK@œm_Y\x02 ßÒ\x12 "
b"ÙÅGÇ®\t FDº&D—÷3\x06 ý "
b"""
ÙÜ€´\x08 ¬Kî–\n
\x1C Õ\x1A šî¾
"""
b"ÚZ¿:\x19 lM ¾Ü &Œ€\x1F ¾ "
b"Úe\x14 bí9L¨šÇx\e »\x1D ’L "
b"ÚŒ˜m°ïF\x18 ŠêœSx\x02 `“ "
b"Û\x1E A\t\x00 ŸCz¸`ùü\x04 z¶€ "
b"ÛObæ\x17 ULϤ—ù\x02 «¨6+ "
b"ÛZ®Bi\x11 @¨·Ò³6>ì\x10 £ "
b"█\µ\x1E\t óGbÉÙñnýn±┤ "
b"Ûl\x04 ;ß'H\x1F §R üàÕ“I "
b"""
Û¾o\n
ÅÒMu¼k£8cj8m
"""
b"ÛèÜþ£\f AﬣÍxtmõN "
b"█ý³Ü¥nO}î\x1E ãi¾ØÌù "
b"Ü\x00 ±\x01\x1E PIŒ½Ç\x19 ï\x10 R)b "
b"▄\x1A ü"t├Aàï\x10\x1A äk┐9■ "
b"Üp‹''ÉO…®rb\x08 ÜÝ\x02 . "
b"ܬ4…\x06 ‡K7¾\t\x1C À\x1A ¹ýM "
b"▄┐âE\x1A ºFàØMõÀÛMæà "
b"Üþ’Z ÑJˆ£ä·aÇr½Õ "
b"¦\x01 {\x04\x04 øL\x03 ╣ðüW=hLL "
b"¦\ÃCÏrH╠ÿüêqCì╗\t "
b"ÝÃþ•¡±L‰‹_²1ÿ‘\e Ò "
b"ÝÏmGæƒ@¾½eV{Ìk“§ "
b"Ýñ\x18\x15 á\x17 K\x05 ½–þZ\x03 #‰æ "
b"""
Þ\n
F`¯ÈAÚƒ½»kà€\x17\x12
"""
b"Þ\r ý‡Ö @š¨‘TÁͤÀ\r "
b"Ì*ÈÊıÉIdÁ┤Ó´ú2\x16 ÷ "
b"Þƒ'ºîZB¿£\x11 ”AΟ\x04\x00 "
b"""
ÞÄ\x02 P'\x02 Iò—\n
±)\x0E ¾‰Ë
"""
b"ÞæOµ\x15 CC9½%\x7F ¹Ó,Í? "
b"ßp¬žìíG#“Ïš¿ˆþ~\x08 "
b"߇ýÅ/ÖI\x07 ²°´›[È’\x11 "
b"Ó4âMµ■G╝ïÍÅB\x16 ¤ÙØ "
b"Ó;\x1F\x01 rç@Ý®ÖGοÉ\x08 ú "
b"à;b+¡žK^ƒˆá\r ¹‚d/ "
b"Óæ`¥ÐeM´Ø5÷ A\v ╝┼ "
b"Ó¾û&ÔÉG娾÷\x17 LMÎü "
b"ߨ¸B┬\r DÞì`g\x11 ê\x17 ]\x01 "
b"Ô\x06 g6én@▓ÅÜ╬,┐\e 5\x16 "
b"â\x16 ‚!´\x03 D~°Ð8å£Uøø "
b"â•Y@ëÇE\x13 ¡¯ö0ö\e ÞŠ "
b"Ô│Å/ÃúAã┐─V│└S©╬ "
b"Ô¥ª§z»O"Ø_æ®Yh "
b"ã\x07 ´©±\x03 Aé 6ŒêóCw "
b"ãe\x1D ±à\x06 @;ƒ\r A,? È@ "
b"""
ã˜Å…‡\n
Fx†ÀóX\x17 Ž>(
"""
b"ä\v 0—ó³N¤Œ×\x15 ~^2Ș "
b"õüYlBñA2êÖÈr/¬¥╩ "
b"äÙ':2¼Ke¿«qêÅš\x13 Ê "
b"äí¿M’÷Oî»’¶»Á\x06 °º "
b"å<7Ø\x14 PKù³¼z\x0F ÑÏj\x16 "
b"åÖ÷Õõ›M.‰\x18 °\x7F Ö\å\x19 "
b"æ*·˜ìwAe¬¢$\x03 ˜{\x05 "
b"悉aNíF¸œ‹¶^÷ï3L "
b"æ€Ì~m@æ¥\x02 Üê<»#¤ "
b"æ¶ÎT_×A^¹‰>¡þ(z\x14 "
b"çh\x11 ‡RvI‡˜3\x18 «é™Õ¥ "
b"çpŠô‹ôK\¼Ó¨¢Oc6ö "
b"þÑ\x0E ¿Æ¥DeÉ¿CBÊ6û\x12 "
b"ç©¡\x14 üÏA5®O†Ñ—oʬ "
b"è\x17 Ëtq\x18 M\x01 ˜‹lyë\x15 úf "
b"è#\x06 Ç>ðC×–ç"û\f è¼Ò "
b"Þz\x0E a\x19 òJ═àÅ\e CÒ\x00 ┌▄ "
b"Þ╚¸\x01 ▓ÖGæè÷\x11 n½║\r É "
b"Þ╔u\x07 Ì\x10 Hqìñ\r Ú¢ë\x13 { "
b"Þ´1╠Äb@rØÍA'┴-^\x13 "
b"éyø10QJj”õxˆµ‹¶œ "
b"ÚÉn<NÄO¡£m┌┌ðqÝ╠ "
b"éþœ)#.J\x0E Ÿ‰–\x16 Û÷Ö× "
b"Û$3ñåFB\x19 Ť (µ>ËJ "
b"ÛÅälñcC@âõ[ª>▄78 "
b"êö!\x11 áGð‡æÚô4{Þæ "
b"Û├£»ünH\x16 ÅFãļþ░O "
b"ë\f\x07\x19 ÈFHá ƒ.ÀLPÿ0 "
b"ëJbPƒàJ˜ƒ&¡Ñ$;ñI "
b"ëP™½æTE\„/3\x02 ~ñ'\x1A "
b"ë°M¼¿„LÞ´ÌfÎãÛí¨ "
b"붬½ˆ\x0E F)žmúÎVïJŽ "
b"ì&f¯\x07 :Gý›¨\r Í‚óSò "
b"ýº÷à×þMúؽB▒┐¨kL "
b"ìòÅj)wGã„éÌ\x0E ¾˜¡Õ "
b"ìø\x15\x13 èB;žL‘\x1D b즿 "
b"í\x0E 0ý}\x05 Jº‰\x1D ¦ã”i\x19 À "
b"í‘Z~\x1F ¸O¬§Ï¶Þ\x0E é\x1C b "
b"ÝÈÅèoÊF\x17 ñÐç┘\x13 ƒ´Ä "
b"î\x15 VØÞ\x7F Mö“¼½±&}^õ "
b"î\x18\x18 Ø\f :Fê´ïµÝâµÔ' "
b"î@éŸ\x12 ßD\x15 ‰O=½O ¥œ "
b"îÑvádzBç¯áúAüÏ{² "
b"ï\t ÜÁñØLþ–²f)—TØù "
b"ï\x14 Šëœ*BQá1M÷I "
b"ï7\e ¦Ä\x04 CH \x19\x05 \ƒ –: "
b"ïw\x1D jå_M Ž\x00 *‚Z¢Ìp "
b"´Ó9Ä çK\r âêBɳs§° "
b"ð\x10 è\x06 \r ÞJÓ¿¶ö¯Ñ—\x08 "
b"ð/à\e |^IË©jµHSVå› "
b">]╩¨"@■ü¾ \t ┬┌¿l "
b"𢠤voK\x06 §Ô\t ‚\x1E ÷Ì\x18 "
b"▒:©_·ELÑÒåþìËäS "
b"ðç#}\\r Hhª&¨®ˆ6ð@ "
b"ðö¿±Ü<Mn™Ê¡Ý\v Ã*y "
b"ñ\x0F €\x15 \x13 @ß¼\x03 m\r ¿ÖNR "
b"ñQOË\x05 •@ù’G«“Õˆ+ "
b"±À┐=ì╬I+ç▓┬}¢-io "
b"‗ëm┤<_@└«ÈÅó,gê½ "
b"òªÏ\x00\x7F\x05 Nÿ‡w±´háÖ_ "
b"òÞieÎýG´ºvö,P”.œ "
b"¾\x03 º\x17 3ÂAh£ØQN=s©¬ "
b"ó$ç9Ç|Hâ–¯‘ø0>jO "
b"ói,õ\x1C\x11 Iw±ýïnUÚ©P "
b"ó€ãyFòB\x00 ˆ¼Ì€¥Tñž "
b"ó’XÏm\x01 BQ€á\x1A Å\x1F ÇÞ\x07 "
b"ó”õ”“åLÕªX\x00 >^›ß\x17 "
b"¾─Çb▒\x12 J§Ø8■NI]£║ "
b"óÑhÃWð@rª¤xl¤šq¿ "
b"¾Ú╣×Ì\x1E B©É<|eã&\e\x12 "
b"ô\x18 O\x07 ›?D$½¦–\x17 ÇÀᘠ"
b"ô£@mdZJ„¹;ÐàW¼(’ "
b"¶¼üÎR\x03 FÙå8\x00\t LZ³a "
b"¶Yy¦-@$ìD¡Ëï\x19 !ý "
b"õùb;ï\x1E Mr£û×Iºsᜠ"
b"""
ö\x11 }÷\n
èM-™àìn“ZÄÐ
"""
b"ö\x15 äñ6\x12 LÚ˜V\x15 ÆDFrK "
b"ö¶\x1E =MæM+¸\t z6žÏ™û "
b"÷\x01 Lj6^G)€îÝ}¬Õl– "
b"""
¸\n
w\x03 ÄÇB_®ÅF:\x1F ÈDs
"""
b"÷4Dï\x08\x1A Jó€Î\x05 Ôô\t T= "
b"÷Y^a¹¦@°‰D\x0E É”~\x0F š "
b"÷™B\e GŸGy˜¿O\x14 ¥\x13 ±b "
b"÷Á2ìù¢F0¹Öã‹8Y2ó "
b"¸Ù\v æsFFZ│Ò╣\x01 írü\ "
b"°¢j\x16 ░7Mb¡\x03 ╣åqì¼ì "
b"øï½™|ŠDA¿Ó0@î™Ç\f "
b"°¸'╦┬ÚNF▓pì:(×Ü\ "
b"¨\x00 ▒╚┤JD+┐hÀñ_æÉj "
b"¨+Â┼ıáJäû$│\ØûÚ^ "
b"¨k─@N\e C÷Å\x10 Û\x1C vÀÓ─ "
b"ùü˜\x14 ’FBP°ºçpØ\N\x14 "
b"úHŠ™ñºD΄Ô\x01 Š@\x0F äb "
b"úP™,!=G…€¬\x0E A/Lÿ™ "
b"·ò╔\x12 ├\x14 C·«^\x17 Ø\x00 V¬ð "
b"ú—mÉœêOà¨\x00 ßw]º:ò "
b"ú>²\x11 ‘C\t »óŸˆÒñ<… "
b"ú°@yÊ€Hÿ¼=§ÕVÿôR "
b"û͇ÉÛ\x13 O¶¿}fÇ\r …ÚØ "
b"üI\x15 ¯oÚI’¥\x11\x16\x00 Ç7Ü5 "
b"üdq¿è\x04 KÚœ\x03\x07 ÉÁcûô "
b"üiXÕ†XEršbPFÇèKõ "
b"üp\x1E\x04 Î#MÞ°fÝäÍ€œ\x04 "
b"ü„\x05\x14 L×KÜ´¡ž>Cþs! "
b"ü›Hìâ5JŸ´³$Åk\x7F Má "
b"ü¡Sûµ`Kdª#&É>Ä÷‡ "
b"ü¶ãcù9Bã€o¥ã]ÚÂ{ "
b"üÙíæ\x01 'M4„)-žSáU\x15 "
b"ü஋f½GsŽÂ·ìqTª¥ "
b"ý\r œÖÿE†’U\x10 <\x00 Ú\f Ü "
b"ý“h²V€M|ƒ;Çûa\x05 §; "
b"þ\x00 #šPüFœ¼’ÎØ´<È» "
b"þ\x05\x1A cä´Lå“ÙuE÷&\x1D ä "
b"þ\x19\x1C ’›\x0F K_¢”iÉó× T "
b"þBpƒhÙM‡«&[ÌW\x02 FÉ "
b"þ„šÕ‚ý@-¿Àž,-«\x7F \ "
b"■¡▀Ø$yH^ôÅñ└░C\x0E ¼ "
b"þ³\x12 {¨&C\e •"‰Ún–—¾ "
b"ÿ\x06 ~\x17\f \r L\x1E ‰È®r\x13 Ëêð "
b"ÿœª:\t\x08 L%±kP"£•ö‘ "
b"ÿϳË,»H‰¯Œ”ùêQ€¯ "
b"ÿÑó\x11 èûNì¤)+%¶ö·s "
b"ÿÛ7Üá·G˜³\\x0E ë¤ü0š "
b"ÿãZ\x14 :ŸO‚•ù°\x18 }~\x1A Ó "
b" ÷|x\x1A ¼@3ÉuÂ▀sj°@ "
]
SELECT
`property_group_option` . `id` as `property_group_option.id` ,
`property_group_option` . `property_group_id` as `property_group_option.groupId` ,
`property_group_option` . `color_hex_code` as `property_group_option.colorHexCode` ,
`property_group_option` . `media_id` as `property_group_option.mediaId` ,
`property_group_option` . `created_at` as `property_group_option.createdAt` ,
`property_group_option` . `updated_at` as `property_group_option.updatedAt` ,
`property_group_option.group` . `id` as `property_group_option.group.id` ,
`property_group_option.group` . `display_type` as `property_group_option.group.displayType` ,
`property_group_option.group` . `sorting_type` as `property_group_option.group.sortingType` ,
`property_group_option.group` . `filterable` as `property_group_option.group.filterable` ,
`property_group_option.group` . `visible_on_product_detail_page` as `property_group_option.group.visibleOnProductDetailPage` ,
`property_group_option.group` . `created_at` as `property_group_option.group.createdAt` ,
`property_group_option.group` . `updated_at` as `property_group_option.group.updatedAt` ,
`property_group_option.group.translation.name` ,
`property_group_option.group.translation.name` as `property_group_option.group.name` ,
`property_group_option.group.translation.description` ,
`property_group_option.group.translation.description` as `property_group_option.group.description` ,
`property_group_option.group.translation.position` ,
`property_group_option.group.translation.position` as `property_group_option.group.position` ,
`property_group_option.group.translation.customFields` ,
`property_group_option.group.translation.customFields` as `property_group_option.group.customFields` ,
`property_group_option.media` . `id` as `property_group_option.media.id` ,
`property_group_option.media` . `user_id` as `property_group_option.media.userId` ,
`property_group_option.media` . `media_folder_id` as `property_group_option.media.mediaFolderId` ,
`property_group_option.media` . `mime_type` as `property_group_option.media.mimeType` ,
`property_group_option.media` . `file_extension` as `property_group_option.media.fileExtension` ,
`property_group_option.media` . `uploaded_at` as `property_group_option.media.uploadedAt` ,
`property_group_option.media` . `file_name` as `property_group_option.media.fileName` ,
`property_group_option.media` . `file_size` as `property_group_option.media.fileSize` ,
`property_group_option.media` . `media_type` as `property_group_option.media.mediaTypeRaw` ,
`property_group_option.media` . `meta_data` as `property_group_option.media.metaData` ,
`property_group_option.media` . `config` as `property_group_option.media.config` ,
`property_group_option.media` . `path` as `property_group_option.media.path` ,
`property_group_option.media` . `private` as `property_group_option.media.private` ,
`property_group_option.media` . `thumbnails_ro` as `property_group_option.media.thumbnailsRo` ,
`property_group_option.media` . `file_hash` as `property_group_option.media.fileHash` ,
`property_group_option.media` . `created_at` as `property_group_option.media.createdAt` ,
`property_group_option.media` . `updated_at` as `property_group_option.media.updatedAt` ,
`property_group_option.media.translation.title` ,
`property_group_option.media.translation.title` as `property_group_option.media.title` ,
`property_group_option.media.translation.alt` ,
`property_group_option.media.translation.alt` as `property_group_option.media.alt` ,
`property_group_option.media.translation.customFields` ,
`property_group_option.media.translation.customFields` as `property_group_option.media.customFields` ,
`property_group_option.translation.name` ,
`property_group_option.translation.name` as `property_group_option.name` ,
`property_group_option.translation.position` ,
`property_group_option.translation.position` as `property_group_option.position` ,
`property_group_option.translation.customFields` ,
`property_group_option.translation.customFields` as `property_group_option.customFields`
FROM
`property_group_option`
LEFT JOIN `property_group` `property_group_option.group` ON `property_group_option` . `property_group_id` = `property_group_option.group` . `id`
LEFT JOIN `media` `property_group_option.media` ON `property_group_option` . `media_id` = `property_group_option.media` . `id`
LEFT JOIN (
SELECT
`property_group_option.translation` . `property_group_option_id` ,
`property_group_option.translation` . `name` as `property_group_option.translation.name` ,
`property_group_option.translation` . `position` as `property_group_option.translation.position` ,
`property_group_option.translation` . `custom_fields` as `property_group_option.translation.customFields`
FROM
`property_group_option_translation` `property_group_option.translation`
WHERE
`property_group_option.translation` . `language_id` = ?
) `property_group_option.property_group_option_translation` ON `property_group_option.property_group_option_translation` . `property_group_option_id` = `property_group_option` . `id`
LEFT JOIN (
SELECT
`property_group_option.group.translation` . `property_group_id` ,
`property_group_option.group.translation` . `name` as `property_group_option.group.translation.name` ,
`property_group_option.group.translation` . `description` as `property_group_option.group.translation.description` ,
`property_group_option.group.translation` . `position` as `property_group_option.group.translation.position` ,
`property_group_option.group.translation` . `custom_fields` as `property_group_option.group.translation.customFields`
FROM
`property_group_translation` `property_group_option.group.translation`
WHERE
`property_group_option.group.translation` . `language_id` = ?
) `property_group_option.group.property_group_translation` ON `property_group_option.group.property_group_translation` . `property_group_id` = `property_group_option.group` . `id`
LEFT JOIN (
SELECT
`property_group_option.media.translation` . `media_id` ,
`property_group_option.media.translation` . `alt` as `property_group_option.media.translation.alt` ,
`property_group_option.media.translation` . `title` as `property_group_option.media.translation.title` ,
`property_group_option.media.translation` . `custom_fields` as `property_group_option.media.translation.customFields`
FROM
`media_translation` `property_group_option.media.translation`
WHERE
`property_group_option.media.translation` . `language_id` = ?
) `property_group_option.media.media_translation` ON `property_group_option.media.media_translation` . `media_id` = `property_group_option.media` . `id`
WHERE
`property_group_option` . `id` IN (
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
?
)
Copy
SELECT `property_group_option` . `id` as `property_group_option.id` , `property_group_option` . `property_group_id` as `property_group_option.groupId` , `property_group_option` . `color_hex_code` as `property_group_option.colorHexCode` , `property_group_option` . `media_id` as `property_group_option.mediaId` , `property_group_option` . `created_at` as `property_group_option.createdAt` , `property_group_option` . `updated_at` as `property_group_option.updatedAt` , `property_group_option.group` . `id` as `property_group_option.group.id` , `property_group_option.group` . `display_type` as `property_group_option.group.displayType` , `property_group_option.group` . `sorting_type` as `property_group_option.group.sortingType` , `property_group_option.group` . `filterable` as `property_group_option.group.filterable` , `property_group_option.group` . `visible_on_product_detail_page` as `property_group_option.group.visibleOnProductDetailPage` , `property_group_option.group` . `created_at` as `property_group_option.group.createdAt` , `property_group_option.group` . `updated_at` as `property_group_option.group.updatedAt` , `property_group_option.group.translation.name` , `property_group_option.group.translation.name` as `property_group_option.group.name` , `property_group_option.group.translation.description` , `property_group_option.group.translation.description` as `property_group_option.group.description` , `property_group_option.group.translation.position` , `property_group_option.group.translation.position` as `property_group_option.group.position` , `property_group_option.group.translation.customFields` , `property_group_option.group.translation.customFields` as `property_group_option.group.customFields` , `property_group_option.media` . `id` as `property_group_option.media.id` , `property_group_option.media` . `user_id` as `property_group_option.media.userId` , `property_group_option.media` . `media_folder_id` as `property_group_option.media.mediaFolderId` , `property_group_option.media` . `mime_type` as `property_group_option.media.mimeType` , `property_group_option.media` . `file_extension` as `property_group_option.media.fileExtension` , `property_group_option.media` . `uploaded_at` as `property_group_option.media.uploadedAt` , `property_group_option.media` . `file_name` as `property_group_option.media.fileName` , `property_group_option.media` . `file_size` as `property_group_option.media.fileSize` , `property_group_option.media` . `media_type` as `property_group_option.media.mediaTypeRaw` , `property_group_option.media` . `meta_data` as `property_group_option.media.metaData` , `property_group_option.media` . `config` as `property_group_option.media.config` , `property_group_option.media` . `path` as `property_group_option.media.path` , `property_group_option.media` . `private` as `property_group_option.media.private` , `property_group_option.media` . `thumbnails_ro` as `property_group_option.media.thumbnailsRo` , `property_group_option.media` . `file_hash` as `property_group_option.media.fileHash` , `property_group_option.media` . `created_at` as `property_group_option.media.createdAt` , `property_group_option.media` . `updated_at` as `property_group_option.media.updatedAt` , `property_group_option.media.translation.title` , `property_group_option.media.translation.title` as `property_group_option.media.title` , `property_group_option.media.translation.alt` , `property_group_option.media.translation.alt` as `property_group_option.media.alt` , `property_group_option.media.translation.customFields` , `property_group_option.media.translation.customFields` as `property_group_option.media.customFields` , `property_group_option.translation.name` , `property_group_option.translation.name` as `property_group_option.name` , `property_group_option.translation.position` , `property_group_option.translation.position` as `property_group_option.position` , `property_group_option.translation.customFields` , `property_group_option.translation.customFields` as `property_group_option.customFields` FROM `property_group_option` LEFT JOIN `property_group` `property_group_option.group` ON `property_group_option` . `property_group_id` = `property_group_option.group` . `id` LEFT JOIN `media` `property_group_option.media` ON `property_group_option` . `media_id` = `property_group_option.media` . `id` LEFT JOIN (SELECT `property_group_option.translation` . `property_group_option_id` , `property_group_option.translation` . `name` as `property_group_option.translation.name` , `property_group_option.translation` . `position` as `property_group_option.translation.position` , `property_group_option.translation` . `custom_fields` as `property_group_option.translation.customFields` FROM `property_group_option_translation` `property_group_option.translation` WHERE `property_group_option.translation` . `language_id` = 0x0230A828E7F14120974FAE38CDACDEDB ) `property_group_option.property_group_option_translation` ON `property_group_option.property_group_option_translation` . `property_group_option_id` = `property_group_option` . `id` LEFT JOIN (SELECT `property_group_option.group.translation` . `property_group_id` , `property_group_option.group.translation` . `name` as `property_group_option.group.translation.name` , `property_group_option.group.translation` . `description` as `property_group_option.group.translation.description` , `property_group_option.group.translation` . `position` as `property_group_option.group.translation.position` , `property_group_option.group.translation` . `custom_fields` as `property_group_option.group.translation.customFields` FROM `property_group_translation` `property_group_option.group.translation` WHERE `property_group_option.group.translation` . `language_id` = 0x0230A828E7F14120974FAE38CDACDEDB ) `property_group_option.group.property_group_translation` ON `property_group_option.group.property_group_translation` . `property_group_id` = `property_group_option.group` . `id` LEFT JOIN (SELECT `property_group_option.media.translation` . `media_id` , `property_group_option.media.translation` . `alt` as `property_group_option.media.translation.alt` , `property_group_option.media.translation` . `title` as `property_group_option.media.translation.title` , `property_group_option.media.translation` . `custom_fields` as `property_group_option.media.translation.customFields` FROM `media_translation` `property_group_option.media.translation` WHERE `property_group_option.media.translation` . `language_id` = 0x0230A828E7F14120974FAE38CDACDEDB ) `property_group_option.media.media_translation` ON `property_group_option.media.media_translation` . `media_id` = `property_group_option.media` . `id` WHERE `property_group_option` . `id` IN (0xD2422A3A683B4A26A92CBDB94AB1CDC4 , 0xD2BEA05C94B54BD6A23CB5161663ECFA , 0xD309AC94ABF4491EB95CD23E15489CC7 , 0xD31A12B2FF244775B463745344D2950D , 0xD336F3B5F9E64955B1F8448EC44C63A7 , 0xD340BA2D7A384E16A611CE21BA5051F2 , 0xD362523913E6414E98BDB01E1D901417 , 0xD37BCB05EAD44C8A87B72A5154CD376B , 0xD389CEE74A54442CA597810CE8403E4A , 0xD3AF2E5DE8744C79AFE3707A8157EC4C , 0xD3BCEB4DBB4E4F9A9C6939D7C4A14789 , 0xD3E67C82031E4432A2375E4427889B1C , 0xD3F778965CFA46018D63DA24130D222D , 0xD4290B84FBC74778B97DEABCE452C713 , 0xD47479B83431467B9F1115768F9C12CA , 0xD48F0A6DA28948D68627BC0D56881B7C , 0xD49A7FE6170B4B8CA04F4133BEEAD72C , 0xD4A49D8A65E64B609DD482A0D87345A7 , 0xD4AB20D3F29C49B29760743A95BFC55F , 0xD4B70EA3F9534609B4B9D03FB4618E03 , 0xD52DE3258DEF488991DC5E0BBE6D5731 , 0xD563A5288A1F46CF8DE2828557103A9C , 0xD577C9EEDCDC48E2A307884ABAA275E4 , 0xD584B504D76642C5BEF8312C63790729 , 0xD5C7D730DB994E1F8DB6CFD8D3BC9599 , 0xD5CBF612A70A473080AC1E7DD80C7601 , 0xD5E853E9A3F4499D98DD1EF81E9C70BD , 0xD5F9A8F04DF449D58FD6B0271F95316F , 0xD6586797DF1240C1AEAD3943606FBF1C , 0xD69338DDECF4496E99FAE96AA9587CE2 , 0xD6980496E9504B14A15F5E34B8263DB1 , 0xD6B99FE33D5846A5B459EDE513FCEEBB , 0xD72B2E8241024CB999E07F5548BFD207 , 0xD74DFFFC8C1047C49541401C815D8AA6 , 0xD7C75B83202A44C79E61C63C8E83BF06 , 0xD7CFDD94B79947A6903C344E3DF5E29F , 0xD7FD9A67187B400FB909B0D512DFD5DF , 0xD8283942B03C4961AD219B6D11EB576B , 0xD839824AD12F476895BE5A7747ACEAB8 , 0xD8582C1538164D159450F6AF54348680 , 0xD86777372A434376ADE498DEFBD99647 , 0xD87B888E860A4875A238E2611157FB36 , 0xD892B1FB7D344536817847A71E94B210 , 0xD89CFC5DE3644833A1A3D12E58AEA39A , 0xD8C147B1414149078123836603C46C41 , 0xD8FD4AFAAD314DAF8473A892B68AA960 , 0xD98E17721D524B409C6D5F5902DFD212 , 0xD9C547C7AE094644BA264497F73306FD , 0xD9DC80B408AC4BEE960A1CD51A9AEEBE , 0xDA5ABF3A196C4D20BEDC20268C801FBE , 0xDA651462ED394CA89AC7781BBB1D924C , 0xDA8C986DB0EF46188AEA9C5378026093 , 0xDB1E4109009F437AB860F9FC047AB680 , 0xDB4F62E617554CCFA497F902ABA8362B , 0xDB5AAE42691140A8B7D2B3363EEC10A3 , 0xDB5CE61E09A2476290EBA46EEC6EF1B4 , 0xDB6C043BDF27481FA752A0FCE0D59349 , 0xDBBE6F0AC5D24D75BC6BA338636A386D , 0xDBE8DCFEA30C41EFACA3CD78746DF54E , 0xDBECFC9ABE6E4F7D8C1EC669F39DDE97 , 0xDC00B1011E50498CBDC719EF10522962 , 0xDC1A812274C341858B101A846BBF39FE , 0xDC708B2727C94F85AE726208DCDD022E , 0xDCAC348506874B37BE091CC01AB9FD4D , 0xDCBF83451AA746859D4DE4B7EA4D9185 , 0xDCFE925A20D14A88A3E4B761C772BDD5 , 0xDD017B04049B4C03B9D081573D684C4C , 0xDD5CC743D87248CC98818871438DBB09 , 0xDDC3FE95A1B14C898B5FB231FF911BD2 , 0xDDCF6D47E68340BEBD65567BCC6B93A7 , 0xDDF11815E1174B05BD96FE5A032389E6 , 0xDE0A4660AFC841DA83BDBB6BE0801712 , 0xDE0DFD87D6A0409AA89154C1CDA4C00D , 0xDE2AD4D2D5904964B5B4E0EFA33216F6 , 0xDE8327BAEE5A42BFA3119441CE9F0400 , 0xDEC40250270249F2970AB1290EBE89CB , 0xDEE64FB515434339BD257FB9D32CCD3F , 0xDF70AC9EECED472393CF9ABF88FE7E08 , 0xDF87FDC52FD64907B2B0B49B5BC89211 , 0xE034834DE6FE47BC8BD68F4216CFEB9D , 0xE03B1F01728740EDA99947D7A89008A3 , 0xE03B622BA19E4B5E8388E10DB982642F , 0xE09160BED1654DEF9D35F620410BBCC5 , 0xE0F39626E29047869DF3F6174C4DD781 , 0xE19DF742C20D44E88D60671188175D01 , 0xE2066736826E40B28F9ACE2CBF1B3516 , 0xE2168221B403447EB0D038E5A355F8F8 , 0xE2955940EBC74513A1AFF630F61BDE8A , 0xE2B38F2FC7A341C6BFC456B3C053B8CE , 0xE2BEA6F57AAF4F229D5F91A959F068FF , 0xE307B4A9B10341C3A920368CEAF34377 , 0xE3651DB1E006403B830D412C3FA0C840 , 0xE398C585870A467886C0F358178E3E28 , 0xE40B3097F3B34EA48CD7157E5E32C898 , 0xE481596C42A441328899D4722FAABECA , 0xE4D9273A32BC4B65BFAB71EAC59A13CA , 0xE4EDBF4D92F74FEEBB92B6BBC106B0BA , 0xE53C37D814504BF9B3BC7A0FD1CF6A16 , 0xE5D6F7D5F59B4D2E8918B07FD65CE519 , 0xE62AB798EC774165ACA224AD03987B05 , 0xE68289614EED46B89C8BB65EF7EF334C , 0xE6AD80CC7E6D40E6A502DCEA3CBB23A4 , 0xE6B6CE545FD7415EB9893EA1FE287A14 , 0xE768118752764987983318ABE999D5A5 , 0xE7708AF48BF44B5CBCD3A8A24F6336F6 , 0xE7A50EA892BE446590A84342D2369612 , 0xE7A9A114FCCF4135AE4F86D1976FCAAC , 0xE817CB7471184D01988B6C79EB15FA66 , 0xE82306C73EF043D796E722FB0CE8BCD2 , 0xE87A0E6119954ACD858F1B43E300DADC , 0xE8C8F701B29947918AF6116EABBA0D90 , 0xE8C97507DE1048718DA40DE9BD89137B , 0xE8EF31CC8E6240729DD64127C12D5E13 , 0xE979F83130514A6A94F57888B58BB69C , 0xE9906E3C4E8E4FAD9C6DDADAD071EDCC , 0xE9FE9C29232E4A0E9F899616DBF7D6D7 , 0xEA2433A4864642198FCF2028E63ED34A , 0xEA8F846CA463434083E45BA63EDC3738 , 0xEAADF62111E147F087E6DAF4347BDEE6 , 0xEAC39CAF816E48168F46C68EACE7B04F , 0xEB0C0719C84648E1A0832EC04C50FF30 , 0xEB4A625083E04A988326A1D1243BF149 , 0xEB5099BDE654455C842F33027EF1271A , 0xEBB04DBCBF844CDEB4CC66CEE3DBEDA8 , 0xEBB6ACBD880E46299E6DFACE56EF4A8E , 0xEC2666AF073A47FD9BA80DCD82F353F2 , 0xECA7F6859EE74DA39DAB42B1BFF96B4C , 0xECF2C56A297747E384E9CC0EBE98A1D5 , 0xECF81513ADE8423B9E4C911D62ECA6BF , 0xED0E30FD7D054ABA891DA6E3946919C0 , 0xED915A7E1FB84FACA7CFB6DE0EE91C62 , 0xEDD48F8A6FD24617A4D187D9139FEF8E , 0xEE1556D8DE7F4DF693BCBDB1267D5EF5 , 0xEE1818D80C3A46EAB4EFB5DDE2B5D427 , 0xEE40E99F12DF4415894F3DBD4F20A59C , 0xEED176E1647A42E7AFE1FA41FCCF7BB2 , 0xEF09DCC1F1D84CFE96B266299754D8F9 , 0xEF148AEB9C2A42EEAFA451E1314DF749 , 0xEF371BA6C4044348A019055C8320963A , 0xEF771D6AE55F4D208E002A825AA2CC70 , 0xEFE0398E20874B0D83884290FC73F5F8 , 0xF010E8060DDE4AD3BFB6F6AFD1970820 , 0xF02FE01B7C5E49CBA96AB5485356E59B , 0xF03E5DCAF92240FE81F3FF09C2DAA86C , 0xF0A2A0A4766F4B06A7D409821EF7CC18 , 0xF0B13AB85FFA454CA5E386E78DD38453 , 0xF0E7237D5C0D4868AA26A8AE8836F040 , 0xF0F6BFB1DC3C4D6E99CAA1DD0BC32A79 , 0xF10F8015A01340DFBC036D0DBFD64E52 , 0xF1514FCB059540F99247AB93D588AD2B , 0xF1B7BF3D8DCE492B87B2C27DBD2D696F , 0xF2896DB43C5F40C0AED48FA22C6788AB , 0xF2AACF007F054EFF8777B1B468E1D65F , 0xF2DE6965CEFD47B4BA76F62C50942E9C , 0xF303A71733B641689C9D514E3D73B8AA , 0xF324E739C77C48E296AF91F8303E6A4F , 0xF3692CF51C114977B1FDEF6E55DAA950 , 0xF380E37946F2420088BCCC80A554F19E , 0xF39258CF6D01425180E11AC51FC7DE07 , 0xF394F59493E54CD5AA58003E5E9BDF17 , 0xF3C48062B1124AF59D38FE4E495D9CBA , 0xF3D168C357F04072AAA4786CA49A71BF , 0xF3E9B99EDE1E42B8903C7C65C6261B12 , 0xF4184F079B3F4424BDA69617C7C0E198 , 0xF4A3406D645A4A84B93BD0E057BC2892 , 0xF4AC81D7520346EB863800094C5AFC61 , 0xF4F05979DD2D40248D44ADD38B1921EC , 0xF5F9623BEF1E4D72A3FBD749BA73E19C , 0xF6117DF70AE84D2D99E0EC6E935AC4D0 , 0xF615E4F136124CDA985615C64446724B , 0xF6B61E3D4DE64D2BB8097A369ECF99FB , 0xF7014C6A365E472980EEDD7DACD56C96 , 0xF70A77038E80425FA98F463A1FD44473 , 0xF73444EF081A4AF380CE05D4F409543D , 0xF7595E61B9A640B089440EC9947E0F9A , 0xF799421B479F477998BF4F14A513B162 , 0xF7C132ECF9A24630B9D6E38B385932F3 , 0xF7EB0B917346465AB3E3B901A172815C , 0xF8BD6A16B0374D62AD03B986718DAC8D , 0xF8EFBD997C8A4441BFD33040EE99C70C , 0xF8F727CBC2E94E46B2708D3A289E9A5C , 0xF900B1C8B44A442BBF68B7A45F91906A , 0xF92BB6C5D5A04A849624B35C9D96E95E , 0xF96BC4404E1B43F68F10EA1C76B7E0C4 , 0xF9FC981492464250B0BAE770D85C4E14 , 0xFA488A99F1BA44CE84D4018A400FE462 , 0xFA50992C213D478580AC0E412F4CFF99 , 0xFA95C912C31443FAAE5E179D0056AAD0 , 0xFA976DC99CEA4FE0A800DF775DBA3AF2 , 0xFAAD3EB211914309BBF39F88D2F13C85 , 0xFAB04079CA8048FFBC3DA7D556FFF452 , 0xFBCD87C9DB134FB6BF7D66C70D85DAD8 , 0xFC4915AF6FDA4992A5111600C737DC35 , 0xFC6471BFE8044BDA9C0307C9C163FBF4 , 0xFC6958D5865845729A625046C7E84BF5 , 0xFC701E04CE234DDEB066DDE4CD809C04 , 0xFC8405144CD74BDCB4A19E3E43FE7321 , 0xFC9B48ECE2354A9FB4B324C56B7F4DE1 , 0xFCA153FBB5604B64AA2326C93EC4F787 , 0xFCB6E363F93942E3806FA5E35DDAC27B , 0xFCD9EDE601274D3484292D9E53E15515 , 0xFCE0AE8B66BD47738EC2B7EC7154AAA5 , 0xFD0D209CD6FF45869255103C00DA0CDC , 0xFD9368B256804D7C833BC7FB6105A73B , 0xFE00239A50FC469CBC92CED8B43CC8BB , 0xFE051A63E4B44CE593D97545F7261DE4 , 0xFE191C929B0F4B5FA29469C9F3D72054 , 0xFE42708368D94D87AB265BCC570246C9 , 0xFE849AD582FD402DBFC09E2C2DAB7F5C , 0xFEADDF9D2479485E938FA4C0B0430EAC , 0xFEB3127BA826431B952289DA6E9697BE , 0xFF067E170C0D4C1E89C8AE7213CBEAF0 , 0xFF9CAA3A09084C25B16B5022A395F691 , 0xFFCFB3CB2CBB4889AF8C94F9EA5180AF , 0xFFD1F311E8FB4EECA4292B25B6F6B773 , 0xFFDB37DCE1B74798B35C0EEBA4FC309A , 0xFFE35A143A9F4F8295F9B0187D7E1AD3 , 0xFFF67C781AAC40339075B6DF736AF840 );
Copy
67
11.18 ms
SELECT `property_group_option` . `id` FROM `property_group_option` LEFT JOIN `property_group` `property_group_option.group` ON `property_group_option` . `property_group_id` = `property_group_option.group` . `id` WHERE ((`property_group_option.group` . `filterable` = ? )) AND (`property_group_option` . `id` IN (? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? )) ORDER BY `property_group_option` . `id` ASC LIMIT 500 OFFSET 1500
Parameters :
[
true
b"\x00\x00 ÅÜ\x07 ºIÃ C…"Ç\f é "
b"\x00 THÔGðK8¬$;Ù\x18 L«€ "
b"\x00 [}yæ•I(½ÌsAl´Ë\x14 "
b"\x00 ÆÉyD°Hyÿ¨\x03 R\r mÓI "
b"\x00 ìCï¢I|┤53ÅÇÆÅè "
b"\x01 `½žäÕ@\x02 ‹\x1E s »«™Ø "
b"\x01 ¤ Ç01Ks«œ¤,瀧n "
b"\x01 ¿—\x05 4³A2ƒËû\x1E ¿\x02 Ф "
b"\x01 ÁBrÌÞAz„Š<\÷¨ý, "
b"\x01 µ\x15 =S╬Bz┐üL%(`ãB "
b"\x02 ˆ\x7F ŠZŠO4™®iV½\x1E ZÓ "
b"\x02 É_YÜÞE¾áQ3⬽PÊ "
b"\x03\e ¹DcpO2”òÈ\x1C $©«4 "
b"\x03 >n`\x02 @Cìšè\x16 8Ö@xÛ "
b"\x03 J.}yÿEkŸ•\x13 7¥ˆÐï "
b"\x03 KoqÆû@\x17 Éf\Ïâ9ëð "
b"\x03 VÄ¥îÇBƒ²,ÝϧÀb½ "
b"""
\x03 Û§\n
ê‘IÚ»&f;\x14 á\x18 Ð
"""
b"\x04\x12 Ét:VL9»IÝËŠ„BJ "
b"""
\x04 7‡%ÍÕLZŸ±zÿ\n
0¦°
"""
b"\x04 kú\x12 ‰`Cú‘AO9£}3È "
b"\x04 Ì^žiÔG事GvóSTð "
b"\x05 ;¼@AîH=–Àß>\x7F +bU "
b"\x05 âx╬\r rGúÅ÷_¶.├¾a "
b"\x06 ^│îr▒DR▒\x0E ÉÙ+¡└┤ "
b"\x06 Õô\f\x1C JMë‘4/"\x1F P\x16\x1D "
b"\x08\x17 €>BRHçª÷É$PÕ¼Æ "
b"\x08 "\x1D ×#\x08 Mߘ+–*dXì7 "
b"\x08 9\x1A Ã\x16 ÉIfïV║\x15 ã┌ɵ "
b"\x08 V…Ïb{I\x1D ‚iT|–²ú{ "
b"\x08 b╝╦½ñJ\x12 ƒìó\x1F Ý'¸╗ "
b"\x08 鞤“\x1D C»˜é_R \x14 Ÿn "
b"\x08 ¹Ý÷RbA╝×&■ɦüIm "
b"\t IônÀß@▒øfàü¬¡\x12 Å "
b"\t wLwídH\x0F 𾕆{\x0F 9H "
b"""
\n
\e ò"»øK ØS[3P³HÊ
"""
b"""
\n
"Ø«"\x06 HqƒWŠW[\f ÇD
"""
b"""
\n
_ß'BðMx¢‘=µ4&m\x03
"""
b"""
\n
g2UµµLë¨?á®ER\x05 Ù
"""
b"""
\n
y‹w\x16\x08 J‹Œ>Õ£€TA‡
"""
b"""
\n
§\x0F AO½ED¼Ýì,1©Hš
"""
b"""
\n
Îÿµ┬íAvé┴qJ¨ì╠
"""
b"\f\x17 D\x06 CRA,½‰>³Ù'Ïš "
b"\f\x18 ßì¦èFô·Xn[Háïó "
b"""
\f N\n
ÞDbN“‡\x02 ^6b9À¥
"""
b"\f •x73ÓCœ‹½×s8)v± "
b"\f 3N\x02 }HúüÛâµ[¥Æ╝ "
b"\r +‡-íÌJ@¼Ÿ\x10 wòMü "
b"\r ûhî■╦@ıäK╩~ã\x1F LÅ "
b"\x0F\x13 ŒòYèHë²\x10 ÙpF\x05 ïZ "
b"\x10 4”Å%F@]\x18 æ^Ã\x16 ê÷ "
b"\x10 Å&.b O-¼é$¦ÊBj\x0E "
b"\x11 +iMgÉH.…\x1E ²{ë·7 "
b"\x11 nð*+}Mb„Á¤KÒjsº "
b"\x11 ë6)§·I\f ˆ%âÄ[ÖEú "
b"\x12 é'vý\x05 Né«Uü¢J!À\x02 "
b"\x13\x19 ╩)ܦL9ØUìsºø\x15\x05 "
b"\x13 0\x1F .äŸN¿´XoE–\x1D Ò+ "
b"\x13 f╔│üÐE¸▒\x05\f çX]Û^ "
b"\x13 ¸¦Å¦÷M4¹ß\x10 ¦œ\x01 ¶/ "
b"\x14\x04 Å\x01\x1A ¯FhéwK┴_\x1F ╝m "
b"\x14 2╬f}ÎLßÀÙò¸_‗\x12 Ø "
b"\x14 G\x07 ÈILGŠ€V ORtóK "
b"\x14 ¤qßzE\x19 ‘\x00 dìdÀH– "
b"\x14 §=Vc»CÓ‚\x16 !£y¸\x0F f "
b"\x15 {\f 8úHCÿüye$\x01 \ë\f "
b"\x15 °nzþ3Ag¶kòh%:¬G "
b"\x16 ˆ2Ý\r ¡@\x13 †häB˜è´} "
b"\x16 º{žN\x04 Eµ¾aSÁ÷'Ä\v "
b"\x16 ÿG\f KmG[ƒ\x07 ’XÌ$w@ "
b"\x17 Pø°t\x0F F?‰^[”a\x0F ír "
b"\x17 gïKt\x08 NXµÔ‹sh©\x12 n "
b"\x19 îóÅ\x08 ├I*®\x11 Ìà`´þª "
b"\x1A X"\x1C ÏûN°€F}¿ÝaUx "
b"\e LµµÖ\x18 Ae·Üë4œ\x13 8+ "
b"\e µö$\x17 ÃB “A)Ý{{µ9 "
b"\x1C †\x01 Ë¢ùD2º¿\x10\x08\t -Š= "
b"\x1D\x1F Äöj\x16 Eή\v Ô*”ï^\x04 "
b"\x1D œO0\r fG»³÷Ê9D Ée "
b"\x1E ZD•I€I„šx\x00 ¹\t u½, "
b"\x1E i¶B·¹Lýµ>“×(*v\x17 "
b"\x1E µÿ®V×JT„û¢\x1E ¡Sœ÷ "
b" \x15 ÷ŽçWD@¾/ùŽ…4&è "
b" Qz`×ÝCö†j·h‰6\x1D\f "
b" SC¶y0G¡▓×<ìc*\x7F ä "
b" •‘UËÝC\x11 ‰] \x13 âA\x1C 4 "
b" ¶\x19 œýõO>œ{!ý³¶Û "
b" Ù&ÿÄrANµ«†ÃÃg\x02 ? "
b" ñ—α’AÌ…¥ÿ;è\x02 Ó7 "
b"!ŽLM2#H<¶@]®ÇÉ-Å "
b"!ãž8ÝlOk‹²e×YÃ#˜ "
b""\x12 ®09%Bþ¬d\x14 │Øotg "
b""</¸ÇMH¯€b†\f îW¬Œ "
b""="T}\x12 J˜‰}?nÍèJÍ "
b""è¸j\x04 ═G\x10 ▒ıLæ┴Ø\x06\x06 "
b""«\x0E :KLL„¹n´‚x|&F "
b""ã\x01 D»+Ae‹æJŶ\e G| "
b""é²ý‘PHθH.WŠ…\x0F ã "
b""ì\x1C ôž\x10 Gá´w]®ó¸\x19\f "
b"#³ô/SˆIF½*îyZ\x04 T® "
b"#Àaw\x0E úCá‘\v pY\x1F\x07 ‰[ "
b"#ÚpÉ▓*N0ï\x07\x11 DÿùEÞ "
b"#‗¸çÆìG╦╗£6UÉÝ█ "
b"$\x10 ü]ÙXC¡ÀùRN\x18 @g² "
b"$4#¾\x0E RNo¶.rjÈ9\x01 œ "
b"$Båb═h@çêü ^r,tÎ "
b"$Óéo:\x12 D/†ÒqQƒní´ "
b"%\x01\x08 V~#BñôÇh\x10 ¯ü╗j "
b"%%2®!ëK\e ª°ýÈ«\x16 e1 "
b"%ZË\x16\x0E cKIù\r YÄ<Ç┬ü "
b"%`U€©2G}¸ ˆë\e ûËé "
b"%À>V\x08 FKÏŸ¤ŒT‰Å†8 "
b"%Ö)‡cfMfªïlL^D•I "
b"""
&ó░a\n
2M\t ª_■╝°▓¿É
"""
b"'\f ®ÕÑ(N▀òŹ\f ±ËË? "
b"'LÌ,7’CT¹¯8öGLä` "
b"'j A÷ZLV öÛŠ\v ƒ\x05 ~ "
b"(X\x05 ~/éKF¾©ÏÄl¥‹˜ "
b"(†äh\x1E LIÙ«ƒ‹w»îļ "
b"(óÿŽ+O,…«Ú$\x12 ç5m "
b"(óÔ*âéJF‹4÷VÕeÿÎ "
b")X´[êÿEË—óì¦<"–? "
b")”?ý\x1F Fòº$0\x12 \x00 ªÞ "
b")«\x1E ©”«O® –5¨=Ž©¶ "
b")½Zk¥WB™®Å<Þˆ\x15\x02 q "
b")┌\x05 AÙ¡DèÅà┬%Â■CY "
b"*\x19 @\x7F 5+C‡¥œd¯öò\x17\x1E "
b"*WZ'•xG°’¾òuä?F¹ "
b"+×Å|3‗CÏ¡┐°8¢┤╩³ "
b"+§á8sáHX‚8\x02 NÌêÒ. "
b",8"›·v@\x0E ޶ÃÃ\x06 …\x12\x00 "
b",j×\x01 `vN˜ƒ¸û\x1F\f ›>^ "
b",Ù奂»A(›\V\x02 @ûTÖ "
b"-&&\x10 ¹DAµ£"²î¢~jL "
b"-ž~±…šK/¼Ñ»H\x10 yY\x12 "
b"-Ä¢ð@ðM¸¢Ç5\x06 %ÆQ’ "
b".\x18 'ÿp\x12 EG©\x12 4ê\x02 Ëä{ "
b".EÅ3ì(Eþª±Ô/ÿçÍ¿ "
b".GýnguDQ¾>¥YKõQc "
b"0\x03 „û _@f‚žFA\x15 p¤\x17 "
b"0u‹N%÷E”¨°\x14 -ƒ^³P "
b"0ˆ“3†ˆAþ’\t 8zˆQ3\x03 "
b"""
0²Ñ█;╠K&ì\n
+¾░Y"¥
"""
b"1ÈãÏq¾AJ‘lµõÛ}~¸ "
b"1ÿ¢–\x07 dOý¶yà•\e ,†H "
b"2FùèAfN»¤Wý$ì7×N "
b"2wád\x18\x14 F\f ž„щ§+ÀÕ "
b"2žþìý\x15 @©‡Þ$¸ˆ¿p? "
b"2õªý®ÕM’·\x05 JsPá\x13 "
b"3@K½ÝÆ@ú…Ð(²6¹\x1E % "
b"3u\x02 ô\x0E ìN¸¢n,\r %ºT7 "
b"3Öª®úÂEÃØ├Ë\v ¶gÃr "
b"""
4ËüI\f ─Ngì╠5þ\n
ı7·
"""
b"5I¯N\x11 4G^Š›~<Ï‚ùŸ "
b"5Üøy#ÑFLèÑøÃþ╗ÃØ "
b"5©É6ǼM▒ö\x0F Fbhðoj "
b"5÷«x\x0F ìCÇ¢GÂX—£´\x00 "
b"6âØ╣└·A\x04 ú\x12 Ò|ʤ═Ó "
b"6ÞÃ[¹/O¦²C¶ZûÊŽ„ "
b"6Óõ\f ´YMû╣¼·ØSÈós "
b"6õw\x1C v^F«à¯\x1A ÔÇ•ß "
b"7[yá4>NñŠý:ê´iþó "
b"8Æ7ÇmþHÙÆ"ö¨þÛ×É "
b"9/C0\x05 ]FÒƒ¼Q\x06 ÇéñÐ "
b";&àÇ›)JÊ—1—:DËw• "
b"""
;:êÅ’zO\n
ŒŠ:\v å;ƒp
"""
b";oþ¨õ¹G$ØÄ\x19 }î\x13 ±@ "
b";ÉXwk«FŸ”=ç\x1E 6z\x06 e "
b"<\x17 ;m=\x04 @X¥9\x06 aqfÏW "
b"<,kÁ*jBZ‡¥\x10 Eœáìõ "
b"<K\x17 ðùåA\x1E ‹Ñ¨Ñ{2bð "
b"<¼ð\x04 ¤UJج║µf\x06 uÑ{ "
b"<█Ì×QËKÓØ┬®ı½K|W "
b"""
=`+\n
kZLv€=\x05 ýñ›\x17 ˜
"""
b">g╠¤Û²A▄ì]ø\x1A èªôÖ "
b"@ßYÒx\x1F J̈¿4DGƒw§ "
b"""
A\x17 þ\x18\x0E ÆN°€4¯‹³µ\n
y
"""
b"A\x1C 2˜™ðE5±üºö%×¶n "
b"Apx-IÚ@gŠ\t çá\x05 £\x18 = "
b"A’cª\t ,@¥§,\x03 Í5«Q\x07 "
b"Aå\x01 ;gÖM:’·¢uÚŠôA "
b"B}椪HIT¿”<DÔ\x0E ?æ "
b"C\x06 Ù%\x1F NG\x00 ´É.ÔeÌíÒ "
b"C\x16 ¨_5ïKÌ´\x10\x1D ¢\x04 /ae "
b"C\x18 ”\x03\x05 ãCĬÁ9‹\x0E ¯‹ÿ "
b"C1┘\x1D <ìG}░NâÆ \e q▒ "
b"C5hl¬FFúµá"™c°“ "
b"C\R\f áXC§¢»&»¿\x08\x11 å "
b"CÅm()ÜDB¢Ùæ¦┘╬╚ü "
b"CýÒîôKDü┤\x01 ┐ã\x1F ,\x16 ¹ "
b"Cò†8˜óG⇰\x17\x03 ÞP\x0F û "
b"D'\v ¦srD€±mæ\x02 °ÄÆÑ "
b"""
Dy)[k\n
O▒âÖó<Åï«H
"""
b"DÀ@·}…F\x06 ±\x1F E<ƒ¶ªô "
b"E\x14 ^0E╠I\v Ø]W(º-\x03 E "
b"EOu: \x01 C|©œì~‹¬Q5 "
b"E¯\x1D Ñé:K/¿¢QôÓ¤Äu "
b"F\x02 Ϊ¨áNn®ê\r %tÔ¨q "
b"FÞp…ÎJE¢‚–ÿs\t Ú¥# "
b"FÙ╠¶±hC`ÉìÐ\x0E\x08 8¯½ "
b"G\x18 þ£ÕvN–ž.xxožú„ "
b"GGì6æÑAîºzX¿Ìä/Ô "
b"GÞ®í˜}L\x10 –þ\x08 h\x0F\x7F ÜÛ "
b"HOf\x15 ÛÚL¦ÿ\f ½Ø\x02 [?ì "
b"I7ðÁù:M"¬9¯q¿¢íw "
b"""
J0\x05 á\n
RJÐ╝j;0┐üá\x0E
"""
b"JÁ│ì`9C\x1E Â┬\x05\f $\x00 ■l "
b"K>tÅ)`NM¬╦®\x0E ¼ò&Ë "
b"L"KÉaÛD¾ž2bv7&D@ "
b"Lð3ñ¯¨F ‹ KêÞÙ™\x0F "
b"M6QzHÔCÅŒ(\t (†—¬b "
b"MEö1©\x11 Kް â¿\x03 Üv\f "
b"M¶\x00 ¾c\x16 Jt±.%Ƥ@‚\x1C "
b"N\x1C µ²k±DD¶±»\f >‘Mõ "
b"NHó\x01 V–LÈŒ†\x7F ‡°7\x13 Å "
b"OKØ›æ§O͈zhœ\x03 à,Ò "
b"OQø\x03 :—IÏ£\f þF™}8² "
b"OÚ›þ&\x18 C\x13 ¦Ngð\x13 Ò|/ "
b"PSüq?áK——Ïg,>q“D "
b"Pÿ4|─^A¦┐lØ7Ú¡\x0F · "
b"PìÏÆž’EP•ïÑ\f ÷#Š\f "
b"Q4 ^(ÁM$³J£Ë+Û\x06 Ÿ "
b"QYÑŒägD\x19 š!\x11 þ€™Î, "
b"Q€K\t £É@Å‹hþÓ\e Ä´£ "
b"Q ÏO\x1C\x13 H\x17 ™™ãó&ˆmä "
b"S\x00 V‡ÀCEݬ7ú7¸ Ñü "
b"SH—\x1D o3B©®\x06 4O…[ô& "
b"SHÅ\x11 quIñ‰\x17 ‰’žr\x16 Y "
b"T\x08 ypOƒE`íü.N¨)v1 "
b"T\x14 v’ËûCAšm\x11 âlDÜ "
b"TÝå\x1E\x1D "LóƯs¿nÑØ "
b"U“ù4Í6Lx®º‘¤ xó\x1C "
b"UÖåÄ\x15 EØ£³c{øÐذ "
b"VàÝıL(IöáÉ%\x16 m´ÈS "
b"W\x00 壚ÓB\ƒ\x06 Û±Ö¾YÆ "
b"WQ¸?’Ó@.¡9šhûu¯\x08 "
b"X\x17 \Å^?O\x07 ŒMç`Cë¶¢ "
b"XõÌ7÷¸J®…8¾ü&§ÒÈ "
b"Yt+l%{AÍ„“¹8&™‚ˆ "
b"YëÅ‗├@HxáÖ\x0F 3═|`┐ "
b"Y—Ù\x1D ÀxI—½ïhßÅ ‰\x12 "
b"YÊ£gKaEв¦°K~ƒ¯p "
b"Z·®ÊˆdN.•)\x02 ö\x01 ¯–M "
b"Z▄£.\x10 ÕFÉØ\f ýW«\e i# "
b"[\x10 ³\x06 ¸\x05 K¸²\x10 ±Ï\x1E )MÝ "
b"[.uÒ˜\x1E A\x1F ®ÚÍ8ðªPV "
b"[¼x¸ñêJBª5í\x18 šk„[ "
b"\#ìyÒ\x15 H─óL¼/î█\x10\x00 "
b"\È/Á\x13 &KȼÉ╦<×o×\x01 "
b"^TäAû}MÍì░\x10 Ï}°\x14 å "
b"^tØ═Í┘E@«¶pèý"┴ "
b"_Ëë»\x11 €BIš¾ì,Ä4ný "
b"_Ï[\x01 ÔÙB`˜Ué^\x13 ËÒØ "
b"_¹}4¡ZO´ìj=jL\x0E Í┴ "
b"`\x1E ½9†dB’œLF\\x17 XW\ "
b"`µ▒░\x7F ÝG┬í¸T ¡ttÅ "
b"a-=t)ÖBLµŒÉñÂÍ0m "
b"aè\r ã\f ╣M̽ây¼ìÏe║ "
b"aêû\x01 îÇEIŠ\x7F WŸÀ¦ ú "
b"b\x1C xÅ\x02 ·J€¢\x04 x`í=aV "
b"bGž:»ùMî·òÚ˜w¼›¼ "
b"c\f ”šà"KÇ—\v ê÷}„5j "
b"c?\x00 ¢Ÿ¸H!¼Õ©;@{jB "
b"c &oGÁMk¡ˆÍÁpZ˜§ "
b"dØÎVÞ\x05 O"ˆ<gM§ã»G "
b"e¢Fé´#Oy£xÝÞÄZ2¿ "
b"eÀ\x1A ôy\x0F ON²¤âSš\x04 ¡× "
b"f\t PÃwŸBN«Ò¼xîÚQú "
b"f#P\x16 àÚC‚§wý7ÔEØr "
b"f; ùÞ(E%¥3Dl¡ì·š "
b"g‰˜\x1E ÃÌC\x1E ¤bo*]}pb "
b"hp*¥…ÇI\x00 ½\x1A $\r O¹%2 "
b"hî\x16 ½¹yH0³LI ›t\x01\x06 "
b"i~úô°ŒN¯½Ó*\t\x08 °|ª "
b"j\x03 /àÅ\x16 Lº║|\x00 I\f ~'Ö "
b"j'ÅL▓\x13 FG»yXr_7éS "
b"jÓèëL+K`¡Šn“\x14 \r íü "
b"jß\x02 ¸þÞF>¦œ³†üà5ñ "
b"jà\x06 ÛÆEM2±ƒ–ª\x05 y—" "
b"kFe\x13 ¨|Ho–\x12 ®.\x11 jÜ "
b"k‚ÿ»ƒG\x1F –»KiÄ\x14 ×€ "
b"k†(¯º\x1C O–‹J\x01 Òcç0Ò "
b"kã:ÂGJFå¯qÓÂŰSä "
b"kþ\x06\x17\x18 xO±º¨ýׄ\x06 ˜^ "
b"l¥<Õ├9FªÅ\e ¬\x13 ƒ DF "
b"m\x1C ƒµòºMòžÿ¤hø3ÎÏ "
b"mwÌÆ\x07 ^O|¦Pñ¨\f }™ "
b"m‗RÂn=Aí║\x15\t ▄üK■6 "
b"n\x14 L¹ÍJHƒ›‹¤Új›\x04 â "
b"nÒgv\x0F ÜBЮÀ\x11 j\x0F BÅ´ "
b"oäà^]=A=¬—áq*~Þç "
b"p1\e ('+@<—<¥s*wÝ¢ "
b"qlÎt·╔K\x08 ØÌsþ\x1C ÃIÂ "
b"q‚¹W\v íBO‘\r ‡IÞ¢«? "
b"r‰!ÎÏÈCä‹=ïS\x15 òbê "
b"séQæ×├F·¼Ï¡lØ\x0E Vz "
b"sñP£^rA\x17 ¢Œ\x1C 픘Ð\x1F "
b"t?kãØáL\x03 ¾@C4\x08 RЪ "
b"t║B╚À┐H\x1A ü¼§┤2B¤% "
b"u R;_)GЈ¶N;O\x12 œ\x10 "
b"v·\x1E ?UˆI“šà?æ\x05 ´t$ "
b"vϰ\e –ED\f «u;umÏN– "
b"v×V€\x03 M3®Ìˆ–Ù´á% "
b"vál#h&F\f « 2\x0E ݃BU "
b"väá”JÒK׊Õa€ s÷€ "
b"""
x4\x13 ìå¼M╦Á\x1E Ú\n
;xCS
"""
b"xI¢+\e xHO║HÆ"©Mض "
b"x|•7»bDõ«ŸÒÀ\x08 Ë\r Ù "
b"xŸC@+Œ@Ÿ²î´2ŸJ · "
b"xÒýñÕèL–¦3jÏýûê\x1A "
b"xÓÖO”\H2Ÿ-cåšãìc "
b"x×\x05\x08 J\x0E G«‰Ÿò.\x15 ’<+ "
b"y-_#^«HV…Í*Ùv3\x0F F "
b"""
yj‰'²R@Ò§@\n
n<¡~«
"""
b"zMÚFøßNu¬¦Lø' \x05 N "
b"zŸHx«\x17 G9“!-Z\f à<· "
b"{†€4K:O\x7F ™Ú\x17 nŸ•\x11 ' "
b"|[\x11 °¼œFbŸY/í0\x16 ˆ "
b"|ÁæºGüK讋i#˜~ª "
b"~WYlôšF\v º\f Ðý”Ü×ä "
b"\x7F Mlå$RIáâïr┌Ńþ& "
b"\x7F gÈjJ³H\•ž$Ædö½ "
b"\x7F üâå(¤B2╝\x1A ║UíèÉà "
b"\x7F ¢+§ÝýC\x03 ƒØd]àl\x10 þ "
b"\x7F Ô6\x1E ÄYL;ù█ì¢9ó¸_ "
b"€\x15 U1^`F\x08 Ÿ+æ…îõ\x06 € "
b"€0\x08 o÷D†‘‡³Çín¦Ó "
b"Ç0û┼µ,D▓ìzÞ÷6Þ\v ß "
b"€Ev דLù¿bà\x12 'ÁoT "
b"€l\x12\x16 ïÓEþ¤XW\x08 £—…™ "
b"ƒSBLj²FïxØõØk\x0E Q "
b"ƒìß\x19\x15 ÃC/¹l7(ö?mŽ "
b"äy├ôÞ\x7F KuØ▄Ì\x18 c▓{§ "
b"„|ê‰>ÄA,¬¤ç!uâ-ñ "
b"„üZ`$\x1A C+žfЏk\Äë "
b"""
…Ëkâ¹øL¨™ý•Õ»¾\n
c
"""
b"…ýÄ\x1F 4HJ§’\cçhÈÃò "
b"†HøOÁóJЧ‚I\v ›\x07 tƒ "
b"†k¹%\x1A i@÷´R!%\x16\x13 9p "
b"†Á[5bBKƒ¾\x12 "%áïË "
b"çd\x1E ÂüÈA\x7F Á‗%Æ\x13\x0E ÛD "
b"‡†Û’\v 3H"®‰Á\x04 (Þd¸ "
b"ˆ \x03 —"~O»–\r •ÂË`\Æ "
b"ëo1hØ~Jß╣=6üTÀ ┼ "
b"Š*t\x02 ú:JcŒCƒ@%S\t Z "
b"бØ{Ž\x1E Iá—ñ\r È4^P— "
b"ï*■]─éDØÉ░:ðKîB "
b"ï┤æ?_▒Nn║Ë\x11 ØY▓g "
b"""
‹ËÎó\x08\v E!¤?ÔŪz\n
4
"""
b"‹ß!hü·Ou¾»)Hhå16 "
b"Ž\x01 ¶ì\x0E ¯J$‘0<,Ï.\x12\x13 "
b"Ž\x11 »UÕ\x16 Oä´¹Ö¹Šür· "
b"Ž0d\x1C 7·CI‚Xn˜\x08 S%‹ "
b"ÄFô\x08 █rL─ì▓õ!M╣±═ "
b"""
ÄF¢e6ÓHج³!dgk\n
Ð
"""
b"ŽHƧf\x03 OÏ£\x1E õ\!Âll "
b"ŽÑ¼Â;šD‹Ÿ=ß23þ“C "
b"Äý\x18 Õ\t\x00 Eæï¾ê"¿Éò¾ "
b"Åi╠\x12 u8BNæ;!çw─áú "
b"Åntï╣\x13 FÉó┴`\r \f Ó1x "
b"Å¢$/á▓A\x1A ┐\x16 Ùµ╔|T╦ "
b"É\r µ┘W`K¡â´d\x00 qRWJ "
b"É\x12 p ╗\x14 A\x0F êMÄ'╝Í¢¿ "
b"É&▒I\x06 ?L\x1A ÿZü▓ó▒S. "
b"Éíæ\x1F `XKb¥r└╝ófÏ? "
b"‘Ž=“\f zL–‘\x12 Ô#æë† "
b"ÆT2;ì\f Ey¿£®\x13 Y7▓┐ "
b"’toÝ+ÅO\x02 ·ØÊMâ0\x14\x0E "
b"ÆÌìè³\x03 I█òå\x14 ┘ÉSþë "
b"“\x1A 5&0"CEš†Õ\x19 â\x1E ˜) "
b"ô»¡Õ\x03 ùK÷üPç\ ÿ© "
b"“Ï¢\x10 {\x18 O£˜’(bw\v % "
b"ö\x16 l╬ùºM┼«ƒn┼IüX9 "
b"”\!ø’\f B$§…yàDó´™ "
b"”wBÄ~SE\x08 ¤f{eÕ¡\x06 z "
b"”™\x0F q³CLõ¥{d3Ÿôê> "
b"”ßî\x02 m2Båº*x C²ßƒ "
b"•2Ž71ùNý€C3lÔâuê "
b"•>MZõ†E2¡fCTUflÆ "
b"•Ê©{ÍøLeƒˆ8\x0E Õ’,“ "
b"""
•ÙN\f \n
$A0—/ipñnï\x11
"""
b"–âÌë<KC£„=\x7F\x12 §\x00 õ\x00 "
b"—09wìåM‚ž§™Æ;*m[ "
b"˜ŒØËc\e L\x08 ºÕÏh¯¾Ãœ "
b"˜–\x03\x14 \r B¬Ž\x03 >•E‹7… "
b"˜¤iwËí@=Žê¬|Ý\x19\x01 I "
b"˜½ÿ’^ŸNÀ’ê‘î÷6¹ç "
b"™OmVjABUœ\x14 |\x7F ݯ\x15 ½ "
b"™cËeš¥Ct¥¨²{ï\x1F ¤\x16 "
b"™öp\x06\x13 TD\x19 ¯ _³u\x01 j§ "
b"šFO=6<L³‚\x16 ^œ»LSà "
b"ÜP¿J▒┘Dø¼ı®ý▒\x1F àØ "
b"šdEsf\x0F N<´[Î%ÿ2\x1E\x1D "
b"š¡M猻@ »CLáú“éH "
b"Üó6GæBIØ×\x00 ▓ÃÑ\v *┴ "
b"""
ø\x1F ·\x06 ╣AE§Å\n
p╝-¡\x11\x1F
"""
b"›¶þÙ‚–@ž¬\x14 W‘zAuu "
b"›½Û¾Ù½G†¨Wg2\x06 ŽIe "
b"›Â³Øª\x18 Hž‰î*øVž\x01 { "
b"œ\x07 ØŽ-£J<—M¥\x0F 7\x10 %! "
b"£(=ÉèM╔ëò\█└{ Ó "
b"œ©¦ÕŠPJŽ™Æ\x12 ¯«\x14 zÎ "
b"Ø~vM¸²Hóª¡Cº▀K!\x1F "
b"×>ù,SúK╩ÄìNâÖ/N└ "
b"×°ÙêÈOcü\x11\x15 8\x03 Ø╬¢ "
b"á4lÖPìF7ä£┴é╝LÉó "
b"áè\\x18 ÆØ@÷▒ë;%ÈÐ\x14 À "
b"¡lõ”çèA%¿UZõPÒò˜ "
b"¡r1?ÄÇOœ†\x00 šAþÃ}X "
b"¡š.\r óIMI´’ „xVnÙ "
b"í├òâ.#Ofñ\x02 HÅd°ð, "
b"¡Èƹ´ØFóе\x17 qxHJ\x19 "
b"ól\x00 úõäBßê÷rÓ5ÓÅ "
b"£¨N“¹ŒOÛ¨¯nOÛ\x11 ÷¬ "
b"ñóìÃ▄8IpÂÅ\x19 ¨&A\v b "
b"¤ºu9\x02 fF7”ÛáE\x00 &\x07 f "
b"Ñ+═UØ┘KùùÜ{âµ`HÉ "
b"¥•°›\x05 àIw»ÂÛÑÂ6«) "
b"ÑØ¦ÂMPCõ░\x1A u\v ¨Gó² "
b"¥Þü’âbMÏ©ü…Å[x "
b"¦RV}=PAÜ£Ñ;B‰îü\n "
b"¦t7(!•GÕšâ5\x19 ¶þwâ "
b"¦zà\x0F 5\x7F LR‹ø±z\x08 Þ*\x1E "
b"ºG÷\x01 ü┼AµüSP\r ~¾µÓ "
b"§“?[2óJ\x1C ŒÇ/iáŸàÁ "
b"§¨e’|^D\x7F œ\x7F Š¦Ù¾éÈ "
b"""
º¡jûeÛ@3¿Õß\x07 \n
ìÙD
"""
b"©N\x11 p7©N!…PøèäT÷- "
b"""
ªY|¥èÆ@ô¯C²\n
bL<\x04
"""
b"ªœ—\x15\x01 #I߀·¡.”U4÷ "
b"«T\x11 Çû‡C̲Ý\x18 ;GÇ\x15 û "
b"½┤àÔ:lBSî-þ²-ØC) "
b"""
¬\•1€\e J`±9€Ž\f ¿\n
\x1E
"""
b"¬]YTÅoCT‹üNAD° "
b"¬–¡ó\x1C WOÈšØ1j¶3À& "
b"¬›q\x19 †ŒLÿ† IÙp6ñn "
b"¬ýu†Ð(Hñ¬€\x1F Gvï¤\x14 "
b" ³^ì¬CÊŠÂðÌ>\x06 Ì> "
b"8Fà\f èGà€¬{Óé\x12 ݱ "
b"T{ÝúÎG¡¬ÂWê¨z‘Ú "
b"sZñëûB\x1E “ä\x08 °sĨš "
b"š\L\x13\x03 A½º4^ʉQ\x10  "
b"®Yµ»RŸM¸‰Ì`º¸(¥² "
b"«Ø├^"!GЫ|®¢\x01 )&t "
b"®Ï\x04 ±¡ÈJC…éæ\F\x15 d< "
b"¯\x12 ?¨cÊD\x01 ¬1Y¥š-ó¬ "
b"¯iSQ¥kIµ‚P)%TÅÿ² "
b"»iÉ\x0E ªÒCd╣é|Üð<─▄ "
b"»×\x19 q^\x03 NöÁ¢ØÂ©ú▒2 "
b"""
¯·ËÇæ\x02 C\n
¢U"\x17 "ý+\x10
"""
b"°\x16 –P íEÖ‡uFÐ߯Ќ "
b"±Ï£ÖñòCëˆq\!æhÍ\x1A "
b"²>~T?ÖJ\x10 —Dšn\x1C n>ƒ "
b"´\x06 0ÝW)A•žãMu<µp\x0F "
b"µ\x14 ]k=_AÓ°\x10 _/ô\x18 nŠ "
b"µÞåëàÑN\x16 ¢FÛSk\x06 žW "
b"µß©åBìOì¿=Í–‹ù›\x13 "
b"¶;\x16 -VUO¦Ÿôy$‚\x04 R "
b"Âij\x7F YXBÿ×█¦B\x18 Kؾ "
b"¶ÞÏ%€\x15 DH›¯þ\x10 ¶•\x00 ¿ "
b"À\t Ä·ËÿH ö¾\x07 ØóL\v N "
b"·£´Ó\·Lu¦ó”v9‘DÚ "
b"©T¢Ã®ýIÞ«pÉñ┐»KÌ "
b"©ì2uuþMQ▓CX═\x04 ╠%É "
b"""
¸ë\x17 ›\x10 TDoºvZ\x05 \n
\x08 fº
"""
b"¹\x05 4\x04 ñ…GÊ€5kÍZ\x05 n\r "
b"¹ˆ„ã „B.„ªY…\x15 uÇZ "
b"¹Ñ<I€+@¸½š4èÊ0uè "
b"ºA8Î\x12 öLã¦Mä:Q\r ©6 "
b"║Ïè─\x03 ÌCq┤ìµ\x04 ¼Qá\e "
b"╗ÖÅB-½D>½Â╩┴d\f µ┬ "
b"¼P8³\x1A šGf©øüÜ\e ¾Y» "
b"½Õ\x02\x08 ;\LýŽû\x11 VÖVº\x15 "
b"¾©»dª¡CJ»ÀíËbLe\x18 "
b"Áþ\x06 3å$FX®$^\x1A\x11 ¹ø‡ "
b"Â\x0F ”8fçM\x1E ®[?\x08 8º`½ "
b"┬>Ê\x16 i¿DØèe\x0F ╦┴Yÿ "
b"ÃÖéh¥Hù¤þÀ\x05 ³#’\t "
b"Ä~\x17 %‰P@à—ûaßið¯+ "
b"─¯Å▀ìE\x1D ▓O`ÓäÂı┤ "
b"┼)îÉ!■Aüîlë#+\x16 ƒ´ "
b"ŇT\x11 IJOô‹ç–A"¡\v U "
b"Åø„†\x1F ‘C\t §h7®\x1C û2Ë "
b"ÆTÛè\x06 @I¢£wïi«eÖ3 "
b"ÇD9\x17\x1D oHŠ•‘o*§ðok "
b"Ç©Æ9>HïœèçËá<æõ "
b"ÇãœÐ_\x14 M\x01 µ“\x00 iìJìß "
b"╚æ┌ÅÔfG\x1A ¿64╦[Cg$ "
b"Èþðnö\x14 Nøµ\t …Uƒp•Î "
b"ÊYœ\x12 ë\x17 L%‡×5ã\x11 .w„ "
b"Ê«5ºí\t CxˆcÙ¬‘j`Á "
b"ÊÔ ÛŠ§C¢¼H\x14\x05\x15 Ñ©– "
b"Ë\x1E +¾«B/—WÖ;ÔŠæ‡ "
b"╦cAÉÒfO~î²R▒ôtOÿ "
b"╦vú┴P©JBïØ'{ÆAd┬ "
b"ËÈ#)å\x14 MVŽ$\x00 [&\x16 © "
b"╦Óv`\x00 ïF=╝¢\x12 ì╝\n LÓ "
b"""
╠\n
WOØ·N¤▓▀#Mº\x16 ª«
"""
b"Ì|r[¦ÀFœ¬ÎÕ~|\x12 ¢ "
b"Ìïd€éŒN´„”¼SÆëL "
b"Í.Ë\e »\HH‚¶N•ø½Ü\ "
b"═┴tf}┤HØäx░¸`fªä "
b"Í÷ˆ\x1E áÉO€œ¢w\x18 #p5É "
b"Î\x1F -¼:\x7F B½´‰Mc´ì\x12 "
b"Î+.\x10 ÎÁ@b¨Éxûjõ#¡ "
b"ÎÍÉ‚\x17 ‚F}œN\x11 §Ù\f Z\e "
b"¤9qRå‗I8ÉöëmÏ█ï+ "
b"Ï\ ÆÎ‰M§²eî—l B¹ "
b"ÏkõbÈ>D]¥gnÉÏ)æo "
b"Ð-Û^h‚MÀ·dЧ0›YË "
b"ÐBV\e aöH´”q¶\x1E §Gyc "
b"в\x00 Ç`ÿ@º›7\x05\f -æ\x06 2 "
b"ÑMñwÌÀDïžìðÙ¼\x15 8§ "
b"УìrÖÚI█ƒKy\x19 ┬└┤ "
b"Ñæ3Lj>AÑ»\x02\x12 6‹bU§ "
b"Ò#w¹«¿O&²¸M׊ây• "
b"Ò¾ \”µKÖ¢<µ\x16\x16 cìú "
b"Ó\x1A\x12 ²ÿ$Gu´ctSDÒ•\r "
b"ËbR9\x13 µANÿ¢░\x1E\x1D É\x14\x17 "
b"Ó{Ë\x05 êÔLЇ·*QTÍ7k "
b"Ëë╬þJTD,Ñùü\f Þ@>J "
b"Ë».]ÞtLy»ÒpzüWýL "
b"˸xû\·F\x01 ìc┌$\x13 \r "- "
b"Èty©41F{ƒ\x11\x15 vÅ£\x12 ╩ "
b"Ôš\x7F æ\x17\v KŒ OA3¾ê×, "
b"Ô·\x0E £ùSF\t ´¹Ð?´aŽ\x03 "
b"ı-Ò%ì´Hëæ▄^\v ¥mW1 "
b"ÕwÉîÜÜHâ£\x07 ˆJº¢uä "
b"Õ„µ\x04 ×fBžø1,cy\x07 ) "
b"""
ÕËö\x12 §\n
G0€¬\x1E }Ø\f v\x01
"""
b"ıÞSÚú¶IØÿ¦\x1E °\x1E £p¢ "
b"ı¨¿M¶IıÅÍ░'\x1F ò1o "
b"Ö˜\x04 –éPK\x14 ¡_^4¸&=± "
b"×+.‚A\x02 L¹™à\x7F UH¿Ò\x07 "
b"ÎM ³î\x10 G─òA@\x1C ü]èª "
b"×ýšg\x18 {@\x0F ¹\t °Õ\x12 ßÕß "
b"Ø(9B°<Ia!›m\x11 ëWk "
b"Ø9‚JÑ/Gh•¾ZwG¬ê¸ "
b"ØX,\x15 8\x16 M\x15 ”Pö¯T4†€ "
b"""
Ø{ˆŽ†\n
Hu¢8âa\x11 Wû6
"""
b"ÏÆ▒¹}4E6üxGº\x1E ö▓\x10 "
b"Ï┴G▒AAI\x07 ü#âf\x03 ─lA "
b"ØýJú1M¯„s¨’¶Š©` "
b"""
ÙÜ€´\x08 ¬Kî–\n
\x1C Õ\x1A šî¾
"""
b"Úe\x14 bí9L¨šÇx\e »\x1D ’L "
b"ÚŒ˜m°ïF\x18 ŠêœSx\x02 `“ "
b"ÛObæ\x17 ULϤ—ù\x02 «¨6+ "
b"ÛZ®Bi\x11 @¨·Ò³6>ì\x10 £ "
b"█\µ\x1E\t óGbÉÙñnýn±┤ "
b"▄\x1A ü"t├Aàï\x10\x1A äk┐9■ "
b"Üp‹''ÉO…®rb\x08 ÜÝ\x02 . "
b"Üþ’Z ÑJˆ£ä·aÇr½Õ "
b"¦\x01 {\x04\x04 øL\x03 ╣ðüW=hLL "
b"ÝÃþ•¡±L‰‹_²1ÿ‘\e Ò "
b"ÝÏmGæƒ@¾½eV{Ìk“§ "
b"Ýñ\x18\x15 á\x17 K\x05 ½–þZ\x03 #‰æ "
b"Ì*ÈÊıÉIdÁ┤Ó´ú2\x16 ÷ "
b"""
ÞÄ\x02 P'\x02 Iò—\n
±)\x0E ¾‰Ë
"""
b"ÞæOµ\x15 CC9½%\x7F ¹Ó,Í? "
b"ßp¬žìíG#“Ïš¿ˆþ~\x08 "
b"߇ýÅ/ÖI\x07 ²°´›[È’\x11 "
b"Ó;\x1F\x01 rç@Ý®ÖGοÉ\x08 ú "
b"à;b+¡žK^ƒˆá\r ¹‚d/ "
b"Óæ`¥ÐeM´Ø5÷ A\v ╝┼ "
b"Ó¾û&ÔÉG娾÷\x17 LMÎü "
b"Ô\x06 g6én@▓ÅÜ╬,┐\e 5\x16 "
b"â\x16 ‚!´\x03 D~°Ð8å£Uøø "
b"Ô¥ª§z»O"Ø_æ®Yh "
b"ã\x07 ´©±\x03 Aé 6ŒêóCw "
b"õüYlBñA2êÖÈr/¬¥╩ "
b"äí¿M’÷Oî»’¶»Á\x06 °º "
b"å<7Ø\x14 PKù³¼z\x0F ÑÏj\x16 "
b"åÖ÷Õõ›M.‰\x18 °\x7F Ö\å\x19 "
b"æ€Ì~m@æ¥\x02 Üê<»#¤ "
b"æ¶ÎT_×A^¹‰>¡þ(z\x14 "
b"çh\x11 ‡RvI‡˜3\x18 «é™Õ¥ "
b"Þz\x0E a\x19 òJ═àÅ\e CÒ\x00 ┌▄ "
b"éyø10QJj”õxˆµ‹¶œ "
b"ÚÉn<NÄO¡£m┌┌ðqÝ╠ "
b"éþœ)#.J\x0E Ÿ‰–\x16 Û÷Ö× "
b"Û$3ñåFB\x19 Ť (µ>ËJ "
b"ëP™½æTE\„/3\x02 ~ñ'\x1A "
b"ë°M¼¿„LÞ´ÌfÎãÛí¨ "
b"ýº÷à×þMúؽB▒┐¨kL "
b"ìòÅj)wGã„éÌ\x0E ¾˜¡Õ "
b"í\x0E 0ý}\x05 Jº‰\x1D ¦ã”i\x19 À "
b"í‘Z~\x1F ¸O¬§Ï¶Þ\x0E é\x1C b "
b"î\x15 VØÞ\x7F Mö“¼½±&}^õ "
b"î\x18\x18 Ø\f :Fê´ïµÝâµÔ' "
b"î@éŸ\x12 ßD\x15 ‰O=½O ¥œ "
b"ï\x14 Šëœ*BQá1M÷I "
b"ï7\e ¦Ä\x04 CH \x19\x05 \ƒ –: "
b"ð/à\e |^IË©jµHSVå› "
b">]╩¨"@■ü¾ \t ┬┌¿l "
b"ñ\x0F €\x15 \x13 @ß¼\x03 m\r ¿ÖNR "
b"±À┐=ì╬I+ç▓┬}¢-io "
b"‗ëm┤<_@└«ÈÅó,gê½ "
b"òÞieÎýG´ºvö,P”.œ "
b"¾\x03 º\x17 3ÂAh£ØQN=s©¬ "
b"ói,õ\x1C\x11 Iw±ýïnUÚ©P "
b"ó’XÏm\x01 BQ€á\x1A Å\x1F ÇÞ\x07 "
b"ó”õ”“åLÕªX\x00 >^›ß\x17 "
b"óÑhÃWð@rª¤xl¤šq¿ "
b"ô£@mdZJ„¹;ÐàW¼(’ "
b"¶¼üÎR\x03 FÙå8\x00\t LZ³a "
b"""
ö\x11 }÷\n
èM-™àìn“ZÄÐ
"""
b"ö\x15 äñ6\x12 LÚ˜V\x15 ÆDFrK "
b"÷™B\e GŸGy˜¿O\x14 ¥\x13 ±b "
b"÷Á2ìù¢F0¹Öã‹8Y2ó "
b"°¢j\x16 ░7Mb¡\x03 ╣åqì¼ì "
b"¨\x00 ▒╚┤JD+┐hÀñ_æÉj "
b"¨+Â┼ıáJäû$│\ØûÚ^ "
b"ùü˜\x14 ’FBP°ºçpØ\N\x14 "
b"ú>²\x11 ‘C\t »óŸˆÒñ<… "
b"û͇ÉÛ\x13 O¶¿}fÇ\r …ÚØ "
b"üp\x1E\x04 Î#MÞ°fÝäÍ€œ\x04 "
b"üÙíæ\x01 'M4„)-žSáU\x15 "
b"ü஋f½GsŽÂ·ìqTª¥ "
b"ý“h²V€M|ƒ;Çûa\x05 §; "
b"þ\x19\x1C ’›\x0F K_¢”iÉó× T "
b"þBpƒhÙM‡«&[ÌW\x02 FÉ "
b"■¡▀Ø$yH^ôÅñ└░C\x0E ¼ "
b"þ³\x12 {¨&C\e •"‰Ún–—¾ "
b"ÿœª:\t\x08 L%±kP"£•ö‘ "
b"ÿÑó\x11 èûNì¤)+%¶ö·s "
b"ÿÛ7Üá·G˜³\\x0E ë¤ü0š "
b"ÿãZ\x14 :ŸO‚•ù°\x18 }~\x1A Ó "
b"\x00 \r \v sk¾I¿Ÿàkáïà×/ "
b"\x01 QT_\v .@]®í\x16 ¨\x17 /â "
b"\x01 V\x0F ¦²\x1D A\x1A ©)ı░³ÅyG "
b"\x01 g▀\x1C /%J<éçRìáJ=¤ "
b"\x01 ŠÜ[òÎFR æ¬zÜnd "
b"\x02 aïí_zL¬©Ã÷Þä&Œ "
b"\x02 Œ–£‚“G\x13 ½s\x07 ºÚJé\f "
b"\x02 ©Å┤0WLUëîV─A!ðN "
b"\x03 é|ÜÑ\x14 BxüS\x12 ípx0¬ "
b"\x03 Ç>\x03 жLs¥Ž‚¥·;*4 "
b"\x05 ,Ë\x00 SçB\f Îé7ãŒáú "
b"""
\x05 ‹\%âRLÒ¥>]\n
ŒñPâ
"""
b"\x05 تñJ2Lè×ÌýË┌\x16 _÷ "
b"\x05 £>/I¦O1Ÿe\v q Híô "
b"\x05 ┘ƒL▒äAÙ░ÚLØ░ù\\x18 "
b"\x05 ¸¢KîµLçØÇ?øy\x12\x1A ý "
b"\x06\v åm\x18 ÿAå©À‗v¤Åý{ "
b"\x06 TÑŽ?"A/›Þ\x15\x05\x00 ¤$_ "
b"\x06 ÅIÕGMBþÖò.#ë\v ɾ "
b"\x06 ê+î{+IM¼·Ÿ@*–EÕ "
b"\x07 :▓/$ìM¹émÍS{wrñ "
b"\x07 ”K·=ÝD¦±aºÏ†üI\x01 "
b"\x08 E}²\x02 VF?┤\x1C \e ÑôXÉ "
b"\t ÜUï1\x1C IØ’45ð“ç{ï "
b"\t ÿçì>0Oî¨zbsÀ"æð "
b"""
\n
(\f üÐ#Aä«Å├Æ1Õ¸!
"""
b"""
\n
Õ¾ï…\x14 BÝ”:…:Z\x1D ÓÍ
"""
b"\v g8Oµ\t NB³\x18 É)í‡pÅ "
b"\v Ü`\x07 ],BÜ€Ò\x1C\x1A ½\x06 s´ "
b"\f ˆoJ`jD‡™œ\x12 öŒ~°z "
b"\r ù┼Õ┤ÒJ4ɪ\x07 æNé\x15 ╝ "
b"\x0E xCìD–LJ»z\x14 šÿjâ· "
b"\x0E ï~ÝÅzC3»àŒ?¸µžÉ "
b"\x10 $ü“°˜Jx•!nÔ¯D›µ "
b"\x10 qŒb\x18 ‰NÊžx0õ- ”‚ "
b"\x11 ‘\x10 ð„úJ/§‚\x19 w\x04\x12\e 6 "
b"\x12 ╗ÅÛÌ┘H.┤´Û,Ú\x12 n) "
b"\x12 Þ%`”ØI\x13 ‚ÛGˇl\x16 ï "
b"\x13 Žm\t …\x04 I\x15 ¸ÿ¯Xô\x00 Öd "
b"\x14\x11\x16 üØ®J?±ÞE\x03 Ê^\x0F † "
b"\x15 nñÛ¢•E\x1E ’µ\x1F LûrÎ "
b"\x15 Ȭ\x00 |ñOV²,å\n àz¶® "
b"\x15 ▀┴3█cB(«\x15 W\x03 ■~\x14 É "
b"\x16 ¢÷‚ØOKQ³B1œ¸#\x07 Ë "
b"\x16 ú\x11\x0F e\x15 E£µÖOU\x02 ˜wz "
b"\x17\x04 ˜õ\x15 ¼LTµ¿.ç~HIr "
b"\x17 CÏÚ\x10 ´Kb˜+\x11 …•²& "
b"\x17 ºó{yÄI°ˆàäX85:. "
b"\x18 &ÞDìÝE>”|Ìø\x19 ÜÕÁ "
b"\x18 `ª╠VØO▓É`qÏßþñC "
b"\x18 ’GÒµ\x0E Ju¢üô\x16 ¨±b "
b"\x18 ¤åè–ËAóŽ~‹É:0š "
b"\x18 Î}\x13 ¨$Mäø¡/·\e )€ "
b"\x19 $)¡dYE9¯šà\x1E ¸l¶Þ "
b"\x19 Àç܃#NEº!XÁlv\x01 X "
b"\x1A #‰\f «\x13 Hu¸(È27Žäs "
b"""
\e\x1C \n
ˆ¥ôG%¯çi®\x10 &J€
"""
b"\e wý} ÑO\x0E ·D\)\x03\x14 tI "
b"\e Ŭr×€B§¤;Ë깘›È "
b"\x1C ìSzÖ\x03 Bm»ú´Û#Ái "
b"\x1D }ª²Z‹Lï¤Ùîn¯H6Õ "
b"\x1E\x10 }œúØL±ª!«dÞ\x03\x1F á "
b"\x1E IÉ─¤ºH§│c═¨¼H. "
b"\x1E œe[a&Eg¯ýgÆ„ß\x13 O "
b"\x1E ¬8c, F²Ÿ.þÎ/üy "
b"\x1E ÉXÝ\e tLœ¸Xºv`$&! "
b"\x1F ê$þ2Ä@]ì4ß\x12 2ÀØd "
b"\x1F ªM\x05 uHCë˜CxK'¬¹: "
b"\x1F ÷\f ºÔJMk¼N\x15 Ǿ>½O "
b" n±Ãv,J,©‡éŸ\f v\x07 à "
b"!oÈ\x18 âºLa‘œ°v"@\x17\x13 "
b"!‹òÉ8TM…Œ\x0F ’ÿF\x0E\x03 e "
b"!’Ý,ʼnH.¸¨œ§ùÀ‹¹ "
b"!┬ cØøF*ô2e¸IH¸Õ "
b""\x19 Á‡`]I\x1A ¦g\x12\x11 ÎiK½ "
b""â3ª#£Fغ¬1!"±\x14 ¸ "
b""æ9Ì€«Jwµê‡\x01 ¥M’¶ "
b"#s-Øw¤E\t ‹à«Õî•\x19 é "
b"#õ\x0F N¦B\x14 ╣üUW\x1C ü▀ß "
b"$/>)\x01 {Hײá÷ôÕî%\x7F "
b"$DPÞ¿0CV±ñ¾9\x01 ¨Ñà "
b"$«²Ê¤"HS–h¿]k#qõ "
b"$ó}´„DJ(Žâ\x02 [º~\x1F l "
b"%u\x11 BD¶O‰§\x19 jÕñEô\x03 "
b"%Úå0üßNÞ”Eþ9\x11\x17\x06 v "
b"&×é\x04 FÇIq£ÇëTŽä|Õ "
b"'4\x10 `tÙBäé!\x1A &ûy$ "
b"'5\x03 Ør_@ü—¦¥ñnå$M "
b"'?0¼\x12\x01 EŸ© ¾˜ä‚šU "
b"""
'Äõ\n
Q+J$£âš‚\x10\v ù\x0E
"""
b"'Ù\x00 ±0\x7F H(®õW\x11 XY™¯ "
b"(ƒoüV¯GÅ©ý0à\x07\x7F ╦Q "
b")cDÙù±Hν\x7F Û[Jè\x06 r "
b")¼‘îßìNQ–.J\x1A ±Ö\W "
b"*&¨¥jnE#¦\\x13 |\x1E üh\x1F "
b"*B]«ÖÌC±¸\x14 Lé\x10 S0Æ "
b"*€u©ÂZAý–J\x1F š´ÅT¼ "
b"""
*Ã\n
±¥@¹Å0M®éà×▒
"""
b"*ÐV\x00 i™K\¬Q\\x11\x1F ¥Øí "
b"+;█bmJLØü┘øÜ2WV\x05 "
b"+²'Äç H\x07 ¿É┌J>ü¦É "
b"+■ƒàiqNá│Å├░▀┘¨\x13 "
b",ê½Ð|KJîŒ7&d\x00 {BÐ "
b"-+6ŒþBMщ\x12\x7F äëb\t "
b"-0²7ã@K\x14 €\x18\x0E ‡¤Á£> "
b"-E»÷fDH摼¦Bk\x1C n` "
b"-la¦*\x11 DP‰©wxZn¾Z "
b".\x13 Û«u¤F%”\x1A Áâ^Ÿ\x1C ½ "
b".Ó×1ØTGíò¦îí_K╔à "
b"/9¢½nüE²┐oá+\x0F z?\x16 "
b"/eÜ+B³MjüHÑóp╣Z: "
b"0\t ” ¢aDF³ŒÀ‘¢ræ\x1A "
b"0|¡+õ&IÖƒÀ\x1A ¶ti\x05 "
b"0è࿘\x03 O@§÷îòOªí\x02 "
b"2ž)Ž<EKu›B꼄\x17 š0 "
b"2ò[*\x15 9J“‘\t ¯TwW$Ä "
b"3\x07 Òû]˜C\r ‰%ÒåX+•Z "
b"3æäÇjËIu ov!86\x1F "
b"4îN.N┬Kü╗╝ ÇM;E¡ "
b"4ÛµøŸ\x17 Cܳ÷å¾¾¦!\x1A "
b"4ÜßQm÷LG¨xŽG]¦ÇI "
b"6¬F,îÅO\x17 ¶ÿòüj;±% "
b"6ËNSl¢IsˆÓKñ©aü\x1A "
b"7{'ÅzM\x06 ×þbæQÌa\x08 "
b"9OEÐþpG±Ž\x10 ¶y\x0E ÚP½ "
b":R7\x10 O\x19 @ÓüÒFy╬]þ\x11 "
b":Tm•\f pNžšÖ\x16 ™á[¦Š "
b":^OpþXJ”‹î!áo\x1C\x0E ³ "
b"""
:q¸zÛ\x1A Aü┤¼ï¸Ø\n
w
"""
b";ŽYT¹´Hn‡Ið¯[îçÆ "
b";×-\x7F œO@/ºÚ·z1\x16 _Ø "
b"<h¤¬:\x16 I¹¬îÆœ˜G|‘ "
b"<‰ý-\f\x15 N#²‚å ”8”· "
b"""
<║£╣ËIM\n
ìv¢\x0F pNw■
"""
b"=k²ª•\x1D H,§ƒ¾·1´«, "
b"=á░¦~øEJ│õͪü\x00 ~x "
b">7\x0E f{/GT¤™\x0F ã±Õ}Š "
b">ZûoUÓHÖœlK\x14 ®$¸ "
b"?Š#£DøJX½O|®qôªª "
b"?ðNÈ„ÖD)ŒE9"ÜÄ8à "
b"@\x01 2ÈIïED§\x7F З\f ;Ë¥ "
b"@~¼´g@HÕœ¢9ß\x19 xÒÆ "
b"@¨\x13 §Ðû@P©ñ\e B\x1E AÊ¡ "
b"@õp}á)Fô«5U\x07 OY\x11 Å "
b"A5šê;ÊL'•\x08\x1E ˜\x01\x1C e\x16 "
b"AJˆø²%O\«*IÕ¶¿ì; "
b"AY¼®WŸ@ÈœI?e÷\x05 —\x0E "
b"""
Au\n
‚«˜Lâ¦có£ð<W\x10
"""
b"Aì¬ïÈNDw½‗(¨L█┤\ "
b"BC§;\x1A –Hæ°\r Ù]:*\x1C r "
b"Br|W KL>ØJO┐±õ\x0F ╗ "
b"B·Ÿ¦kðF䎉у>—’’ "
b"C5Þ\x19 íþM¨˜5´Ã¢b "
b"CÄ\x05 ð\x05 øK_„¾À\x03 ‹ºUÍ "
b"CÚ÷çšÐDR³7²c,øôr "
b"DYÏ6KpKØ¥Øo "ø_\x1C "
b"DªÍ\ê]G\x12 ¼e*W~\x08 §ž "
b"E–\x08 fîCKs \f ¬Ã¼Ý\h "
b"E¢2i6AGú†&‡ÌãI•ª "
b"F\x1C =eÅúEzäà \x1A µ┬º- "
b"F]\x1F\x0F .\x1A GA”T<þ/[iÎ "
b"F‹¹û5åMù©QMþT¥JW "
b"HNUâ07BŰ\x18 sÕõÕ'[ "
b"HÄa¾¹\x0F O[│Ú"YìÆâu "
b"JM\x11 *œõM\x0F ž–cõøâ\x0E = "
b"JS;\x19 iÛC~®(h8ªÉþ" "
b"Jòî4¼¤JU¤]ÏU\x01 €§‰ "
b"K\f ½b1EC¯²ùèYŶ¢B "
b"K\x12 ñÆ\x19 †EP¥ß[f01ƒC "
b"K–\f ½Žˆ@Û‘Ü&(bÁ’\t "
b"KÛ@Ç\x04 Ñ@&œÕ\x10 O\x08\x01 ‰‰ "
b"L)ÇYŠBN6³~hcBozE "
b"""
M¿ïU•|K\x04 €æ¹pL+\n
P
"""
b"MÚE▀ö³MPÇÉ@¸Iƒ\x18\x7F "
b"NCþt\v VF[µÐâ›ýnz\x19 "
b"N¸)&vìL:¡\x1F ×uI\x02 %Â "
b"O‹ÿ\e\x02 rC»‰¤WFÌ\x13 r\x1F "
b"Oû\x16 ╠ïkAqÜ┤▄¼─¹Íü "
b"P5s¥\v ›M¬‡Í q!›ÁÎ "
b"P¸_Ñ\x0E DB@´®_×\x1C ¤¬Þ "
b"Q“ÿ¥Þ†H¡¼û¡úŠ&À+ "
b"QÖƒêbíB¤±\x11 RNö…|J "
b"REM²ùB²¬\x07 š)oEJ\x10 "
b"Rø²ƒúâIï‰ÐÔ‹X\x02 Dc "
b"SýüäÇùJjº¼!5┴5þx "
b"TE K\x02 ÕB)’+ËâÈ‘vk "
b"TR£Àa├M\x00 ü+Wé\x01 à0ý "
b"T\x7F '†ï\x0F AܹºÍ˱œ´s "
b"U(|ÿ¢ªNa¤'|™yƒï\x15 "
b"U7Ê‘}ÓI†”XõžZÐÊá "
b"UD’³\x19\x7F A̧0†\x13 +»\x13 Ô "
b"Ux¦i§\e G—·c)X³ª{, "
b"UØKÅ╩;LıÖ\x01 Ø\x0F -8fq "
b"V\x18 _gÙ\f C²ž—nzÈ\x19 ¿P "
b"V\x1A 0“^ñ@Ò¹çÜ\x02 Ñ }ø "
b"V&áØ}ÍN'ë$UG)ûÑÄ "
b"VCÉ\x1D èéAtüh╩╬YÚ╠┬ "
b"WEÌ\x1E ò\x02 Fr¡ÿ"<('ç\x1D "
b"WÈnê~ÙAŒ˜‚±~–Àif "
b"WõŸ|£IOK‚hDz<Œþ "
b"X̽}\x06\x0F G‗ì│Å▒\x11 *;§ "
b"Y\x16 [ü(ëC2×ò\x06 ô"©÷ÿ "
b"Y\x19 «ÎH6F\x1C ˜<Gë\x17\x05 è# "
b"Y"œ\x06 ž“Mö±¥\x1F Rì¼\x03 5 "
b"Ye\x04 ¯\x1F RFœ…OUVG¨<Ö "
b"Yqº9ÏGCj±ŠŽ\x1F ;6ùÙ "
b"Y£Õ■░\x1D L▄üGÌ\x16 ╣ÁP¦ "
b"Yã~;D\x03 B¤¸\x07 »3×SÌÀ "
b"ZûŸ°éåF}ر\x05\x0F *+ë "
b"[ì*\x04 Q\v @\x18 ▒Iä \x02 d\x1A t "
b"[ºæÎšy@Õ¸Q+Ç^\v …_ "
b"\[\x0E k\f .ATò`▓[ìɤ? "
b"\dÇÄØRG\x13 óc▀\x14 n1ï╠ "
b"]\x0E ▓î´=IW¥?ÂxÀÇÉQ "
b"]\x1C\x01 $1óFó6¼I\x16 .ÂH "
b"]TH†ã\x10 D0‚½ÐÞþR¾. "
b"]é7n╗─D]æÏÇÚþÞÅø "
b"]ÕÕ/\x07\v IlœUi¹/Aƒ£ "
b"]áï¯^\x16 By’\x1C v…ÁyCL "
b"^{öŠs‡N¦½Ñ7H\x17 y¤ß "
b"_\x01\x1C !\x02 »Muä├W©Å±¥v "
b"_\e ÃÌ\x15 dEÇÉëP▄pÉÚû "
b"_~q\x06 ] A{“õÕv¶ïôª "
b"_Ÿ‰Œ\x03\v I–ÿ1\x03 Áa\x06 M "
b"aÕêié[G╔Å╝3\x08 4áÎ} "
b"bÜhª┬JD╣╝·\x08 a┌ü\x03 r "
b"bÌ\v 6®±B\x13 ÉÆ\t ║ÞÆ×\x19 "
b"c'é@¤\x08 A·®ßÛÄT¤\x10 ½ "
b"cF\f\x17 4ÌC`¥If¥¦\x0E ‘, "
b"cì–Ó\x01\x00 I‡‚ió•t~É "
b"""
dí$VoÔLý«ÂÉ\n
Î}┴└
"""
b"e[¼ØÜËMtï zaô\x07 Ø\x0E "
b"e’¤?³L@S‹`kú’SéÄ "
b"f\x03\f —‰\x7F Oܼ¶\x01 €#)J/ "
b"f\x10 Jç¢Ì@Á”ŒvG\x14 £œ¼ "
b"g{\x18 ´«ªE2˜Ë\x0F\x11 áÕÇf "
b"gÀì\x01 …VG\x06 «µáIÁ̸³ "
b"gÓ¶½b½F¿½ºx~œ\x05 }e "
b"h\v fÅQ·G8×\x04 ┐ª¨LÄa "
b"h\x13 €aó½A\x1C ¾ï‰6Ñ\r IÔ "
b"h\x19 kà[ÇKkŒ'¦|;£z "
b"h”ññÒñOù§Au¹MÉ\x0E ¶ "
b"iMÙNk<N#³˜Ã%3\x18 1\v "
b"ižŠÖ/\x12 C]¨ßfX‰µ>\x1C "
b"j!C–ÿ9FI‹"v\x06 n€ÐN "
b"j/xG£\x17 AÝßVt’\x17 a¶ "
b"j;Tá|öG\x13 ºŽx\x03 ¹À¾« "
b"je8ùš³I0•‚Ÿ\x7F ÀI®ò "
b"jÓ═Î/ÇI┌ëÎzØM´\x05 Ó "
b"k┌1µÄ±F■½¼2s¦\x10 êì "
b"kóMfÆKJ5–Y~’ð40Ù "
b"l%·G›\x18 N½”é\x7F\x1C ¼\x1E\f ? "
b"lˆ\x1A ‡\x11\x03 A¢ C¼š|\x02 ?ª "
b"mxø\x1F ?˜AW¦äØ\x06 r¿\x13 ´ "
b"m£A͇úIΕ.ì¥êQZç "
b"n2R{‰\x12 N*½ÞZ‰?½rÚ "
b"ni©¸DYFpŒì ߆ShØ "
b"nmœ0ZZBO¾{Ø„àP³z "
b"n}\x0E ‘c\x13 JS›Ð\x11 ê©\x02 \\x01 "
b"n®Ë\t ™š@\r ¬X±\x19 3go "
b"n¯=!Æ\x10 F—”[o\x00 ›\e\x13\x1A "
b"oˆa@íoK2…ÓÔƒÿvW’ "
b"pe÷+>NF]¦SØn\x05 Î\x17 é "
b"p¢\-ýäD† “„G#\x12 µ± "
b"pÞ¦kemJKÉ{\x0F ÃJ¯u= "
b"pðx,Ù‡@%Œcˆ\x0E aíÎ: "
b"q\x1C Sò\x03 &I┴ü|6Që´*█ "
b"qâ\x04 XÄwCà‡ïCOx:œÛ "
b"s\x0F ZP'\x17 G|┤Ê6¬░ÅR\x00 "
b"sI┬J?}H{üìHî%9XÎ "
b"s[\v R\x05 ¬O\f µ!BÙ¶Q,² "
b"si4ÚYûF×ù|░êLìÇ╠ "
b"sÝHލaDGŸc9L7*–› "
b"tI\x18 ZS+Fº³™|>Ûíú´ "
b"t®’\x06 ÝgHH’‹@Á’_ƶ "
b"u'\x01 åÎwJì»\x7F f§V—à "
b"uÕoO\x7F fLš·¨Kù/ÒL\x11 "
b"vØÅþ░èMÉÂñðgÒ¼\x18 » "
b"v¶µ‹–®@\x01 Ÿ.Lއz’? "
b"w8╣Ï\x05 ┤Aúûì[\x04 iÙæ¦ "
b"xo°.\r \x19 C\x01 ”€¥[ó\x08\x19 1 "
b"x„ÆÔØøM1 ÔR\x1F &áT~ "
b"xÅ\x0E p-;B<«\x0E GlQgÐV "
b"xéTМÖJî¢årgA¦š\x1C "
b"xõO\x16 š>LáŸV99êú«¹ "
b"y\x0E ƒ#Í\x1E AH’ÕAÆm\x17\x07 – "
b"y5ü═ñ\x11 D\t ëAÅh`ÄXv "
b"y˜zwi¨FL¼\x1E\x06 &d]¡µ "
b"yÙsŸã¼H\x7F ¨\x01 †—3#,N "
b"yù*\x07 \x1D J\x15 ©¬6Qæ\x02 4ž "
b"zcsÊì[F òëßP¹9²░ "
b"{\x0E ŸzÔúC_»ªßX\x1C P\x18 H "
b"{uwH\x18 %Kš¾EÆcœKî› "
b"|mõwï5MI³ôÆ\x11 ,ä…7 "
b"|¼\\x00 H\x02 H┴üù\e ±║E└; "
b"}5\x02 +·ÉEykªœèBŒ’ "
b"}S\x10 bM║N ¥ÅvÙ─*½\x1A "
b"}° ›´\t KÎ’'7FAq¥– "
b"~\x05 ©ŠÓQB2šÙðÿ0]ƒ• "
b"~så\x12 Q\x13 E/–òÎèÿ%>‹ "
b"~àŸ>†uMV“\x10 ˆuî\x1C [ "
b"\x7F U!ÆvLL^¸\x05 ²Ij¸ƒ( "
b"€\x1F þò—øD¨PßÓÿ<ô´ "
b"€8(¤\x02 ªF\x17 ˆÎ¹ñ\x16 á%± "
b"Ç@\x13 <«\x04 M>×ϱÙì\f\x1F c "
b"€j\x17 ‘€îEÞ¤xH\x19\x1E ù2D "
b"üf`\x15\x19 ;G$Ø┌(Çü▒9$ "
b"ü~Í\x06 ÒÓM║äZP:8Þ╩à "
b"‚0RKˆ"I\x1E ¬—]9»V~w "
b"ƒp]Ì\x0E ^Bd€-•pÀ™[× "
b"„\x10 Ë\x1D\x13 ßD\x06 °“¦/-ö¤Ÿ "
b"ädº:▄\x1E LeÉ\x10 ┤│Ó╔79 "
b"äü9µÉ<Lpâ"7\x1F sØ|° "
b"„Õh\x1F\x05 ;M\x11 °BŸµNk0# "
b"„à¡E ÅO\x08 ¿\x18\x13 0ß½™Ê "
b"àR▄1¨▓NñûЪ¥¬Ìì× "
b"…aÐb£‡N6¥øÁõýè\x06 û "
b"‡VŠ+3¡CtŸó8É\x15 az( "
b"‡bº:\t +O\x18 ©,,“B°¬Ÿ "
b"‡²ðg±gDe³™PXíÍ[ "
b"ˆ$.lS-Gœ—æy~ÍWùA "
b"ˆœc§ù[MÚ˜³Ð¡\x04 Ù¶¿ "
b"ê×>v¤{N¸üݧzL▓\x01 ¬ "
b"ˆÇÿ¡MÂIfŠúF/¼Ö4Å "
b"êÊ\x1E <Þ0AfØ÷\f Ò¾|╝¶ "
b"‰k©j¬iKVšƒ¿Y\x12 ‡©# "
b"‰ŒÜ©®CMb¨$\x1D š¤¹û% "
b"èeÉ┌ÌÑH,ø9\x11\x17 £äí┘ "
b"ï[ Áp└A*ÁìÇ»ò«ƒ\x05 "
b"ïÅJ%ÒnE¥ü\x02 \ú5mf° "
b"ïôcÓéÞN╝▒Åål\x18 j8Ä "
b"Œ~\x19\f "vDÝÈŽø%”B9 "
b"ì:!ôà¼KTØe à¾lk\x0F "
b"ìé\x7F Ã╣ÏCV╝\x02 ç>ñä\x15 F "
b"ì©\x03 \t ñ@█éª╚»Aûèñ "
b"Äv\e a0E\x1A Å;§býEQ§ "
b"Å£D╔®»H:Ñ\x1F\x07 ®ø‗\x0F d "
b"Åð└\x0F ■\e B\x14 ╝=aØ´pà/ "
b"Å▄H╗U(C°Üh×?ΫA┼ "
b"ÉÏþiÍ─@<ê\x11 ö╦G"ný "
b"É█ÄW.ÛNúû!TW■¢É╩ "
b"’\x19 A\x01 Q¸Dl·Sè]ÅmB> "
b"’j¯³\x07 \Ll£6=ª\x1D Âjd "
b"ÆÂ├Æ\t ┐LIì%\r \x17 Xð\x18 ) "
b"ôfí\x1A ╝ÍG╩ÄÉ▒`\x05 ╬Â■ "
b"”¨@\x13 §ÊBfˆ^ŠgÀ¶®t "
b"•>\x02 H{åJ0–B2A\x18 ¬å\t "
b"—O$&[hI5£¦Ê7º+\x01 × "
b"—XÖ=Ç£N’ƒ¸ü°•\x19 k% "
b"ùZ_\x7F Ú\x1A M╔©Âgê╬ÉÂ\v "
b"—dyÐÛSE…‡J0€ÙòH³ "
b"—fPRžñKNžÒ\x06 ¨\x19 >íE "
b"—›†YžÉ@0‘ìá9ÐØ\x07 È "
b"—æ0y<ÅDë²½gn²z!è "
b"˜W2‡NEH1¹\v ✙ûÎè "
b"˜šóÓÏVD¯œ\f |ï„ëE "
b"˜Ý\x1E à±$G%‘˜3Õ¡\x10 ÙX "
b"™\x08 E€¯wE˜½·•ˆ\x18 )BE "
b"™R–\x00 ¹ÿHdzYé˜\x18 «M¯ "
b"™Ö¡fšªGé¨gÉ\x12 ¬ïo4 "
b"™ä\t •\v \Mú¨ ¼çde#V "
b"™üIï²óE°»bÙ?\x1F c\x02 — "
b"Ü\e %ìÓÿCàûÓÈQ╝\v\e ─ "
b"ÜS1)ü7C└ûìî\e ª\x1D\e ^ "
b"šðÍ\x11 ÒkK,œõizš„\x1F w "
b"ø\x05 °ÄÛ╣H¶üäËZï§à¯ "
b"ø\x15 ²«_┬F\x18 ëk{ß`\x06 Å┌ "
b"""
›c~·³¶E\n
¬»Ç÷L0Ì\x1A
"""
b"ø▒/cÅFJ\x10 ¼m,e\r \x15 $¯ "
b"£12╚¶\x19 N*ò±ü*(╔&~ "
b"""
œÊƱ\x19 ÅNU£\n
5YyžìM
"""
b"£÷\x02 cõ&C▒Å\x1F eÊnßþ\x12 "
b"Ø/¤¾¨BN\ñê=æ÷_˰ "
b"ž„ç·ó,IÔ‘G1\x1C K\x1D Ü\x0E "
b"žº‰%‹.N\x0F ¼\x02 Ó7§{ð| "
b"ƒM_SÀIN▓ûÅP°ÿ▀¼µ "
b"Ÿ\x02 W|\x14 KJ¼ÒÔa\dVa "
b" \x18 :+ˆÒL\x10 ‰h>)žðå "
b" 4šÅ`M‡†¦\x00 Èÿr{{ "
b" IŠ|\x05\x14 I\x1D ¦lMÁu\x05 ;· "
b" _eξˆM¹ ¨Ñ½ÉœeŠ "
b" ¶B|÷îD÷¹\x1A ƒ©ÿÙ˜\x7F "
b"""
ØÐ\x16 E3EM·\n
ÝKæ/¶I
"""
b"""
¡f\n
$ó‚F—©\x0F ¥ˆï\t Ú\x14
"""
b"óeýÊʳO¢êúiìü¥<õ "
b"£aµö\x06 ÎFz‹Ruž\e 9Aì "
b"£†oý@\D\x03 ·'YS~ä$4 "
b"£š|’À½GÀ™pÓ˜œþÒÊ "
b"¤‰B¹\x1E\x07 BQ›Ê{\x16 fzùŽ "
b"¤øŠß\x12\x1F HÉŸÓë)à›\x1F ñ "
b"¥ìje>ëM›Ž9ýeXG÷y "
b"ª░p\x13 ÒìB╣Ö\t 3±╩»\x08 N "
b"º┬6¸YnFmª╩Á┘2'æì "
b"§Ê\r ©à E\x06 ¥¤C¬4Œ\9 "
b"¨\e Ê%4ÿG[¢Ï\x04 “s\x0E\x01 – "
b"¨<„r?lI;œ¿\x00 ƒ Ãú– "
b"¿É«Ê·A\x03 áÿ\x06 \Ë┴é "
b"¿Î\x12\x10 wD¢Ü┌ØE"~zµ "
b"©k4ÛH#N˜˜ËŽŠd^Y¬ "
b"®ó«▒█\x13 M/¿Ùɱ9ú©\x01 "
b"ªÙ\x14 ”õCC8¸î\f Ásv\r © "
b"¬■×█¾õBÉø3*ôy\x1D rÈ "
b"«'‡Œ…‰G¿›ó÷3y\x10 Q\r "
b"""
½¢x4¼\x1D HqÅs,¯Ùñ\n
\x14
"""
b"«Ëf–»aB¶©;=I†LËå "
b"¬\x1F\x11 Ó\x17 ÓH~–â06·&MÙ "
b"¬ºß®?\x0E Dð´KÀ\e hàˆ\x1A "
b"¬ýã^ö©O?™(è\x02 1\r CÖ "
b"ÿôÛ)pEc®1С\x1A –ô” "
b"®ExÞk\x7F E%¼²J ãóÜž "
b"®aÚ“Ñ,BïŽ>%+N¥[O "
b"®ä¦yz%B–ºÉãÿü"˜] "
b"¯\x11 ´|$FA\x03 ˆZ«[©À®| "
b"»ÉƒÏvÑHçô½V©▄~¾Z "
b"""
░\x14 æ?IîM\n
åO┬Ô±\x1D pÉ
"""
b"▒ÅqÓ{áL1àì2R+\x15 /┌ "
b"²5W\x11 ÜÜHتÚÇá\x03\t €\f "
b"²’{Ÿ,FAǾ\x1D ®ïlæ\x0F 6 "
b"²Ó‰¿\f g@³¯ÁE²ìòXk "
b"▓Í«C'\x00 Dõƒ¹.╠TõÅÜ "
b"³Œ!ìy‘A‡¶…Ø…\e áy@ "
b"³ºõÛñßD§»\x1C æÞ‚—§ž "
b"´3?\x7F\x15\x07 @\x11 žé¸Çp]I” "
b"´;‚ZdÆNq¨\x18\x05 ؃£åç "
b"´MtšàfOP§6\x01 ²œxQ< "
b"""
´†àÂGÐAí„Ìã\n
\f âˆ\x1F
"""
b"µb«\x08\t ¿Eâ›CzqÎ?Ù "
b"µ”\îßœJ\x1F ²/F<®E¶æ "
b"µùú²{½G”ŒËÕê»"< "
b"Â\x0E ¹Z[ÀI$▓Îì7u<I\x1D "
b"""
ÂŪ┴ú\n
OÝåÿf»|?ó\x11
"""
b"ÂØ Xà│LÌ│eÏÞd░X├ "
b"¸\x11 ´fÔÂLY¨6%þ0é%” "
b"¹b\x15 MïNEWº\t â\x1A\x1C éèÐ "
b"║ ─└ªEOÈѹ\v à#^É« "
b"╗\x01\x16 ¡╣åHØæ0ëC$¸Ñ "
b"»\r Ÿc:ÍK”¨Ì±\x19\x1A ﹃ "
b"»-É«ÀùJ\x1F ®q\x07 ¿a‚[\x1F "
b"╗ëì└}®A÷ƒDx┌\x0F ÀÚÝ "
b"½ sžáxN?µ1‘öž•Ý• "
b"¢Îmàç░OCØñ¨aö§Yñ "
b"¥4TênmB²¼ÉV,w\x0F ▄v "
b"┐ ]AõúIì®Ö¦"╬┘|Ù "
b"¿5ž\x13 CÈI.‡JjIY,#³ "
b"┴YÂØY¨Bõ▒F: î¤╦+ "
b"Á”90\f Ò@\x07 ˜Bÿ¨\x14 Cžr "
b"""
┬r░Ò\n
]Jõàõ░\x04 U>Ém
"""
b"Âx=8WŸC-•ò\x1C îR5ÕW "
b"ÂÒn;©ÈIk”OÁ—kM\x15 • "
b"Ã<öd£¤Mtª\x7F ¯9X\x1F ¸\x7F "
b"Ãäñ\x12 \r BF´£\x16 Ÿ¶ê›7T "
b"ž^?mÆH\x13 ¬K‹\x18 jH¥· "
b"Åȳ³¢ÃC\x1D ´Á|pWqu‚ "
b"ãMäp{ J ú\x1D 3 Ëüê0 "
b"Ã#hõ-ZBTü\x11 iP«BÞª "
b"Ç“çÉytN´¡ßŸ\x06 ”i9\x05 "
b"È~!§vuM{¢‘ؘ¼ñ+ß "
b"È’\f 9ÃìFºš¿*’\x00 ÖdÙ "
b"ÈòÂø'ÈGߟøQHÄ\x18 íæ "
b"ÉUÏ!=1J¼‡”…΂Ç_; "
b"╔£¿Ø«²C ┤±\x05\x02 Ùº─\ "
b"Ê1"ß \x0E K\x10 “IŸË¼˜i; "
b"ÊÝ`/d„L\x7F ¥ÆÆ†¼Ê“ "
b"ÊêkØ#mEˆ£óFÃ;ìµ\x05 "
b"Ëuø¸äqHs˜Ôø0Û‹îº "
b"╦æ┼bØé@d¢Tq ù¤Z¼ "
b"╦║ÿa\x08\x1F @ÉÁb¸Ã─Ø▒A "
b"ËÒN›B8Fѵ\x10 |\x04 ž\x08 -Ï "
b"Ëè$'l–Gâ½wSâ4W9È "
b"Ì2Nc¶€I®«.ݦ]Ì¥* "
b"Ìh¸w$ŒG\t ‚ŽìEþξ' "
b"╠\x7F\x03 m¶HYéØj@æ½■\e "
b"ÍACxÞgLÜ‹S˜gŒ\x16 žû "
b"ÍYª‘gýD3¶; ¢=¾"æ "
b"ÍŽ’}6ñNk‡¡È¸ªô}¢ "
b"ÎþžÛºÇI»“ÖE•d\x18 p+ "
b"ÏDNë WF—‚KŒù\x00 3ŸÊ "
b"Ï‚”ðïqH=›ä\x0F Ÿ!lÛý "
b"Ï»-Xa[F´–ë›þÜffå "
b"¤ÚÍü╬ÜB▓║Êý▓Õ\x08 ÐÑ "
b"¤§î\x04 skD\x0E òþqºØ¬\x0F ½ "
b"Ð+\x04 c:îN ®P\x17 E&”‘\x1C "
b"Ð>“¶å!A–œT,¨\x1C ¡¨~ "
b"Ðþ†ñI©Fߘo¸E \v W\x14 "
b"Ðpg·§ºMVº\x0F X'Å╬Ã, "
b"ÒB*:h;J&©,½¹J±ÍÄ "
b"Ó\t ¬”«ôI\x1E ¹\Ò>\x15 HœÇ "
b"Ó6óµùæIU±øDŽÄLc§ "
b"Ó@º-z8N\x16 ¦\x11 Î!ºPQò "
b"Ó¼ëM»NOšœi9×Ä¡G‰ "
b"Óæ|‚\x03\x1E D2¢7^D'ˆ›\x1C "
b"Ô)\v „ûÇGx¹}ê¼äRÇ\x13 "
b"""
ÈÅ\n
móëHÍå'╝\r Vê\e |
"""
b"ÈñØèeµK`ØÈéáÏsEº "
b"Ô« ÓòœI²—`t:•¿Å_ "
b"ıcÑ(è\x1F F¤ìÔéàW\x10 :£ "
b"ıÃÎ0█ÖN\x1F ì¤ÏË╝òÖ "
b"ÖXg—ß\x12 @Á®9C`o¿\x1C "
b"Ö“8ÝìôIn™úéj©X|â "
b"Ö¹Ÿã=XF¥´Yíå\x13 üî» "
b"×Ç[ƒ *DÇžaÆ<Žƒ¿\x06 "
b"Τ¦öÀÖGªÉ<4N=§Ôƒ "
b"Øgw7*CCvä˜ÞûÙ–G "
b"Øœü]ãdH3¡£Ñ.X®£š "
b"ÙŽ\x17 r\x1D RK@œm_Y\x02 ßÒ\x12 "
b"ÙÅGÇ®\t FDº&D—÷3\x06 ý "
b"ÚZ¿:\x19 lM ¾Ü &Œ€\x1F ¾ "
b"Û\x1E A\t\x00 ŸCz¸`ùü\x04 z¶€ "
b"Ûl\x04 ;ß'H\x1F §R üàÕ“I "
b"""
Û¾o\n
ÅÒMu¼k£8cj8m
"""
b"ÛèÜþ£\f AﬣÍxtmõN "
b"█ý³Ü¥nO}î\x1E ãi¾ØÌù "
b"Ü\x00 ±\x01\x1E PIŒ½Ç\x19 ï\x10 R)b "
b"ܬ4…\x06 ‡K7¾\t\x1C À\x1A ¹ýM "
b"▄┐âE\x1A ºFàØMõÀÛMæà "
b"¦\ÃCÏrH╠ÿüêqCì╗\t "
b"""
Þ\n
F`¯ÈAÚƒ½»kà€\x17\x12
"""
b"Þ\r ý‡Ö @š¨‘TÁͤÀ\r "
b"Þƒ'ºîZB¿£\x11 ”AΟ\x04\x00 "
b"Ó4âMµ■G╝ïÍÅB\x16 ¤ÙØ "
b"ߨ¸B┬\r DÞì`g\x11 ê\x17 ]\x01 "
b"â•Y@ëÇE\x13 ¡¯ö0ö\e ÞŠ "
b"Ô│Å/ÃúAã┐─V│└S©╬ "
b"ãe\x1D ±à\x06 @;ƒ\r A,? È@ "
b"""
ã˜Å…‡\n
Fx†ÀóX\x17 Ž>(
"""
b"ä\v 0—ó³N¤Œ×\x15 ~^2Ș "
b"äÙ':2¼Ke¿«qêÅš\x13 Ê "
b"æ*·˜ìwAe¬¢$\x03 ˜{\x05 "
b"悉aNíF¸œ‹¶^÷ï3L "
b"çpŠô‹ôK\¼Ó¨¢Oc6ö "
b"þÑ\x0E ¿Æ¥DeÉ¿CBÊ6û\x12 "
b"ç©¡\x14 üÏA5®O†Ñ—oʬ "
b"è\x17 Ëtq\x18 M\x01 ˜‹lyë\x15 úf "
b"è#\x06 Ç>ðC×–ç"û\f è¼Ò "
b"Þ╚¸\x01 ▓ÖGæè÷\x11 n½║\r É "
b"Þ╔u\x07 Ì\x10 Hqìñ\r Ú¢ë\x13 { "
b"Þ´1╠Äb@rØÍA'┴-^\x13 "
b"ÛÅälñcC@âõ[ª>▄78 "
b"êö!\x11 áGð‡æÚô4{Þæ "
b"Û├£»ünH\x16 ÅFãļþ░O "
b"ë\f\x07\x19 ÈFHá ƒ.ÀLPÿ0 "
b"ëJbPƒàJ˜ƒ&¡Ñ$;ñI "
b"붬½ˆ\x0E F)žmúÎVïJŽ "
b"ì&f¯\x07 :Gý›¨\r Í‚óSò "
b"ìø\x15\x13 èB;žL‘\x1D b즿 "
b"ÝÈÅèoÊF\x17 ñÐç┘\x13 ƒ´Ä "
b"îÑvádzBç¯áúAüÏ{² "
b"ï\t ÜÁñØLþ–²f)—TØù "
b"ïw\x1D jå_M Ž\x00 *‚Z¢Ìp "
b"´Ó9Ä çK\r âêBɳs§° "
b"ð\x10 è\x06 \r ÞJÓ¿¶ö¯Ñ—\x08 "
b"𢠤voK\x06 §Ô\t ‚\x1E ÷Ì\x18 "
b"▒:©_·ELÑÒåþìËäS "
b"ðç#}\\r Hhª&¨®ˆ6ð@ "
b"ðö¿±Ü<Mn™Ê¡Ý\v Ã*y "
b"ñQOË\x05 •@ù’G«“Õˆ+ "
b"òªÏ\x00\x7F\x05 Nÿ‡w±´háÖ_ "
b"ó$ç9Ç|Hâ–¯‘ø0>jO "
b"ó€ãyFòB\x00 ˆ¼Ì€¥Tñž "
b"¾─Çb▒\x12 J§Ø8■NI]£║ "
b"¾Ú╣×Ì\x1E B©É<|eã&\e\x12 "
b"ô\x18 O\x07 ›?D$½¦–\x17 ÇÀᘠ"
b"¶Yy¦-@$ìD¡Ëï\x19 !ý "
b"õùb;ï\x1E Mr£û×Iºsᜠ"
b"ö¶\x1E =MæM+¸\t z6žÏ™û "
b"÷\x01 Lj6^G)€îÝ}¬Õl– "
b"""
¸\n
w\x03 ÄÇB_®ÅF:\x1F ÈDs
"""
b"÷4Dï\x08\x1A Jó€Î\x05 Ôô\t T= "
b"÷Y^a¹¦@°‰D\x0E É”~\x0F š "
b"¸Ù\v æsFFZ│Ò╣\x01 írü\ "
b"øï½™|ŠDA¿Ó0@î™Ç\f "
b"°¸'╦┬ÚNF▓pì:(×Ü\ "
b"¨k─@N\e C÷Å\x10 Û\x1C vÀÓ─ "
b"úHŠ™ñºD΄Ô\x01 Š@\x0F äb "
b"úP™,!=G…€¬\x0E A/Lÿ™ "
b"·ò╔\x12 ├\x14 C·«^\x17 Ø\x00 V¬ð "
b"ú—mÉœêOà¨\x00 ßw]º:ò "
b"ú°@yÊ€Hÿ¼=§ÕVÿôR "
b"üI\x15 ¯oÚI’¥\x11\x16\x00 Ç7Ü5 "
b"üdq¿è\x04 KÚœ\x03\x07 ÉÁcûô "
b"üiXÕ†XEršbPFÇèKõ "
b"ü„\x05\x14 L×KÜ´¡ž>Cþs! "
b"ü›Hìâ5JŸ´³$Åk\x7F Má "
b"ü¡Sûµ`Kdª#&É>Ä÷‡ "
b"ü¶ãcù9Bã€o¥ã]ÚÂ{ "
b"ý\r œÖÿE†’U\x10 <\x00 Ú\f Ü "
b"þ\x00 #šPüFœ¼’ÎØ´<È» "
b"þ\x05\x1A cä´Lå“ÙuE÷&\x1D ä "
b"þ„šÕ‚ý@-¿Àž,-«\x7F \ "
b"ÿ\x06 ~\x17\f \r L\x1E ‰È®r\x13 Ëêð "
b"ÿϳË,»H‰¯Œ”ùêQ€¯ "
b" ÷|x\x1A ¼@3ÉuÂ▀sj°@ "
]
SELECT
`property_group_option` . `id`
FROM
`property_group_option`
LEFT JOIN `property_group` `property_group_option.group` ON `property_group_option` . `property_group_id` = `property_group_option.group` . `id`
WHERE
(
(
`property_group_option.group` . `filterable` = ?
)
)
AND (
`property_group_option` . `id` IN (
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
?
)
)
ORDER BY
`property_group_option` . `id` ASC
LIMIT
500
OFFSET
1500
Copy
SELECT `property_group_option` . `id` FROM `property_group_option` LEFT JOIN `property_group` `property_group_option.group` ON `property_group_option` . `property_group_id` = `property_group_option.group` . `id` WHERE ((`property_group_option.group` . `filterable` = 1 )) AND (`property_group_option` . `id` IN (0x0000C5DC07BA49C3A020438522C70CE9 , 0x005448D447F04B38AC243BD9184CAB80 , 0x005B7D79E6954928BDCC73416CB4CB14 , 0x0092907944F8487998F903520D6DE049 , 0x00F08D438BBD497CB435338F80928F8A , 0x0160BD9EE4D540028B1E7320BBAB99D8 , 0x01A4A0C730314B73AB9CA42CE780A76E , 0x01BF970534B3413283CBFB1EBF02D0A4 , 0x01C14272CCDE417A848A3C5CF7A8FD2C , 0x01E6153D53CE427ABF814C252860C642 , 0x02887F8A5A8A4F3499AE6956BD1E5AD3 , 0x02905F599AE845F3A0513383AAAB50D2 , 0x031BB94463704F3294F2C81C24A9AB34 , 0x033E6E60024043EC9AE81638D64078DB , 0x034A2E7D79FF456B9F951337A588D0EF , 0x034B6F719296401790665CD8833989D0 , 0x0356C4A5EEC74283B22CDDCFA7C062BD , 0x03DBA70AEA9149DABB26663B14E118D0 , 0x0412C9743A564C39BB49DDCB8A84424A , 0x04378725CDD54C5A9FB17AFF0A30A6B0 , 0x046BFA12896043FA91414F39A37D33C8 , 0x04CC5E9E69D447E4BA8B4776F35354F0 , 0x053BBC4041EE483D96C0DF3E7F2B6255 , 0x058378CE0D7247A38FF65FF42EC3F361 , 0x065EB38C72B14452B10E90EB2BADC0B4 , 0x06D5F40C1C4A4DEB91342F221F50161D , 0x0817803E425248E7AAF7C92450D5BCC6 , 0x08221DD723084DDF982B962A6458EC37 , 0x08391AC7169049668B56BA15C6DA90E6 , 0x085685CF627B491D8269547C96B2FA7B , 0x0862BCCBABA44A129F8DA21FED27F7BB , 0x08E99EA4931D43BB98E95F52A0149F6E , 0x08FBEDF6526241BC9E26FE90DD81496D , 0x0949936EB7E140B19B668581AAAD128F , 0x09774C77ED64480F9ABE95867B0F3948 , 0x0A1B9522AF9B4BFF9D535B3350FC48D2 , 0x0A22D8AB2206487183578A575B0CC744 , 0x0A5FDF2742F04D78A2913DB534266D03 , 0x0A673255B5B54CEBA83FE1AE455205D9 , 0x0A798B7716084A8B8C3ED5A380544187 , 0x0AA70F414FBD4544BCDDEC2C31A9489A , 0x0AD798E6C2A1417682C1714AF0F98DCC , 0x0C1744064352412CBD893EB3D927CF9A , 0x0C18DFECA6E846F4B7586E5B48E1EFF3 , 0x0C4E0ADE44624E9387025E366239C0A5 , 0x0C95783733D3439C8BBDD773382976B1 , 0x0CFF334E027D48A381EA83E65BBE92BC , 0x0D2B872DEDCC4A40BC9F1077F24DFCC2 , 0x0D96688CFECB40D5844BCA7EC61F4C8F , 0x0F138CF259E848EBB210D9704605EF5A , 0x103494C52546405DAD18E65EC316EAF7 , 0x10C5262E62A04F2DBCE924A6CA426A0E , 0x112B694D67C9482E851EADB27BEBB737 , 0x116EF02A2B7D4D6284C1A44BD26A73BA , 0x11EB3629A7B7490C8825E2C45BD645FA , 0x12E92776FD054EE9AB55FCA24A21C002 , 0x1319CA299ADD4C399D558D73A79B1505 , 0x13301F2EE49F4EBFB4586F45961DD22B , 0x1366C9B381D145F7B1050C87585DEA5E , 0x13B8A6C5A6F74D34B9DF10A69C01B62F , 0x14048F011AEE466882774BC15F1FBC6D , 0x1432CE667DD74CE1B7EB95F75FF2129D , 0x144707C8494C478A8056A04F5274F34B , 0x14A471DFAD7A4519910064EC64C04896 , 0x14A73D5663BB43D3821621A379B80F66 , 0x157B0C38A348439881796524015C890C , 0x15B06E7AFE334167B66BF268253AAC47 , 0x168832DD0DA140138668E44298E8B47D , 0x16BA7B9E4E0445B5BE6153C1F727C40B , 0x16FF470C4B6D475B83079258CC247740 , 0x1750F8B0740F463F895E5B94610FED72 , 0x1767EF4B74084E58B5D48B7368A9126E , 0x198CA28F08C3492AA911DE8560EFE7A6 , 0x1A58221CCFFB4EB080467DBFDD615578 , 0x1B4CB5B5D6184165B7DCEB349C13382B , 0x1BB5F62417C34220934129DD7B7BB539 , 0x1C8601CBA2F94432BABF1008092D8A3D , 0x1D1FC4F66A1645CEAE0BD42A94EF5E04 , 0x1D9C4F300D6647BBB3F7CA3944A0C965 , 0x1E5A4495498049849A7800B90975BD2C , 0x1E69B642B7B94CFDB53E93D7282A7617 , 0x1EB5FFAE56D74A5484FBA21EA1539CF7 , 0x2015F78EE7574440BE2FF98E853426E8 , 0x20517A60D7DD43F6866AB76889361D0C , 0x205343F4793047ADB29E3C8D632A7F84 , 0x20959155CBDD4311895DA013E2411C34 , 0x20B6199CFDF54F3E9C7B21C3BDB3B6DB , 0x20D926FFC472414EB5AB86C3C367023F , 0x20F197CEB19241CC85A5FF3BE802D337 , 0x218E4C4D3223483CB6405DAEC7C92DC5 , 0x21E39E38DD6C4F6B8BB265D759C32398 , 0x2212A930392542E7AA6414B39D6F7467 , 0x223C2FB8C74D48AF8062860CEE57AC8C , 0x223D22547D124A98897D3F6ECDE84ACD , 0x228AF76A04CD4710B1D54C91C19D0606 , 0x22AB0E3A4B4C4C84B96EB482787C2646 , 0x22E30144BB2B41658BE64AC5B61B477C , 0x22E9B2FD915048CEB8482E578A850FE3 , 0x22EC1CF49E1047E1B4775DAEF3B8190C , 0x23B3F42F53884946BD2AEE795A0454AE , 0x23C061770EFA43E1910B70591F07895B , 0x23E97090B22A4E308B071144989745E8 , 0x23F2F787928D47CBBB9C365590EDDBF0 , 0x2410815DEB5843ADB797524E184067FD , 0x243423BE0E524E6FB62E726AC839019C , 0x24428662CD6840878881205E722C74D7 , 0x24D3E96F3A12442F86D27151836EEDB4 , 0x250108567E2342A493806810EE81BB6A , 0x252532AE21EB4B1BAAB0FDC8AB166531 , 0x255AD3160E634B49970D598E3C80C281 , 0x25605580A932477DB82088EB1BFBCBE9 , 0x25C03E5608464BCF9FA48C5489C58638 , 0x25D6298763664D66AAEF6C4C5E449549 , 0x26A2B0610A324D09A65FFEBCF8B2A890 , 0x270CA9E5A5284EDF958FFB0CF1D3D33F , 0x274CCC2C37924354B9AF38F6474CE460 , 0x276AA041F75A4C56A0F6DB8A0B83057E , 0x2858057E2FE94B46BEA9CFC46CA58B98 , 0x2886E4681E4C49D9AB838B77BBEEC4BC , 0x28ADF3FF8E2B4F2C85ABDA2412E7356D , 0x28F3D42AE2E94A468B34F756D565FFCE , 0x2958B45BEAFF45CB97F3ECA63C22963F , 0x29943FADFD1F46F2BA243012A000AADE , 0x29AB1EA994AB4FAEA09635A83D8EA9B6 , 0x29BD5A6BA5574299AEC53CDE88150271 , 0x29DA0541EBAD448A8F85C225B6FE4359 , 0x2A19407F352B4387A59C64AFF6F2171E , 0x2A575A27957847B092BEF275E43F46B9 , 0x2B9E8F7C33F243D8ADBFF838BDB4CAFC , 0x2BA7E13873E148588238024ECCEAD22E , 0x2C38229BB776400E8EB6C3C306851200 , 0x2C6AD70160764E9883B8FB1F0C9B3E5E , 0x2CD9E5A582BB41289B5C560240FB54D6 , 0x2D262610B94441B5A322B2EEA27E6A4C , 0x2D9E7EB1859A4B2FBCD1BB4810795912 , 0x2DC4A2F040F04DB8A2C7350625C65192 , 0x2E1827FF70124547A91234EA02CBE47B , 0x2E458F338D2845E7A6F1E22F9887D6A8 , 0x2E47FD6E67754451BE3EA5594BF55163 , 0x300384FBA05F4066829E46411570A417 , 0x30758B4E25F74594A8B0142D835EB350 , 0x30889333868841FE9209387A88513303 , 0x30FDA5DB3BCC4B268D0A2BF3B05922BE , 0x31C8E3CF71BE414A916CB5F5DB7D7EB8 , 0x31FFA29607644FFDB679E0951B2C8648 , 0x3246F9E841664EBBA457FD24EC37D74E , 0x3277E1641814460C9E84D189A72BC0D5 , 0x329EFEECFD1540A987DE24B888BF703F , 0x32F5AAFDAED54D92B7054A73AD50E113 , 0x33404BBDDDC640FA85D028B236B91E25 , 0x337502930E8D4EF7BD6E2C0D25A75437 , 0x3399A6A9A3B645C79DC3D30BF467C772 , 0x34D381490CC44E678DCC35E70AD537FA , 0x3549AF4E1134475E8A9B7E3CCF82F99F , 0x359A9B7923A5464C8AA59BC7E7BBC79D , 0x35B8903680AC4DB1940F466268D06F6A , 0x35F7AB780FEC43C7A247C25897A3B400 , 0x36839DB9C0FA4104A312E37CD2CFCDE0 , 0x36DEC35BB92F4FA6B243B65AFBCA8E84 , 0x36E0E40CEF594D96B9ACFA9D53D4A273 , 0x36F5771C765E46ABADE0AF1AD4C795DF , 0x375B79E1343E4EF18AFD3AEAB469FEF3 , 0x389237806DE748EB922294F9E7EA9E90 , 0x392F4330055D46D283BC5106C7E9F1D0 , 0x3B26E0C79B294ACA9731973A44CB7795 , 0x3B3AEAC5927A4F0A8C8A3A0BE53B8370 , 0x3B6FE7F9E4FB47249D8E197D8C13F140 , 0x3BC958776BAB469F943DE71E367A0665 , 0x3C173B6D3D044058A53906617166CF57 , 0x3C2C6BC12A6A425A87A510459CE1ECF5 , 0x3C4B17F0F9E5411E8BD1A8D17B3262F0 , 0x3CACD004CF554A9DAABAE6660675A57B , 0x3CDBDE9E51D34BE09DC2A9D5AB4B7C57 , 0x3D602B0A6B5A4C76803D05FDF19B1798 , 0x3E67CCCFEAFD41DC8D5D9B1A8AA69399 , 0x40DF59D2781F4ACC88BF3444478377A7 , 0x4117FE180EC64EB08034AF8BB3B50A79 , 0x411C329899F04535B1FCBAF625D7B66E , 0x4170782D49DA40678A09E7E105A3183D , 0x419263AA092C40A5A72C03CD35AB5107 , 0x41E5013B67D64D3A92B7A275DA8AF441 , 0x427DE6A4AA484954BF943C44D40E3FE6 , 0x4306D9251F4E4700B4C92ED465CCEDD2 , 0x4316A85F35EF4BCCB4101DA2042F6165 , 0x4318940305E343C4ACC1398B0EAF8BFF , 0x4331D91D3C8D477DB04E8392FF1B71B1 , 0x4335686CAC4646FAB5E122AD9963B093 , 0x435C520CE15843A7A2BB26BBBF0811E5 , 0x438F6D28299A4442BDEB91DDD9CEC881 , 0x43ECE38C934B4481B401BFC61F2C16FB , 0x43F2863898F347E287B01703DE500FFB , 0x44270BA673724480B16DE602B0C4C6D1 , 0x4479295B6B0A4FB18399A23C8F8BAE48 , 0x44C040B77D854606B11F453C83B6AAF4 , 0x45145E3045CC490B9D5D5728A72D0345 , 0x454F753AA001437CA99CEC7E8BAC5135 , 0x45AF1DD1E93A4B2FBFA251F4D3A4C475 , 0x4602CEAAA8E14E6EAEEA0D2574D4A871 , 0x46DE7085CE4A45A28296FF7309DAA523 , 0x46EBCCF4F1684360908DD10E0838EEAB , 0x4718FEA3D5764E969E2E78786F9EFA84 , 0x4747EC36E6D141EEBA7A58BFCCE42FD4 , 0x47DEAEED987D4C1096FE08680F7FDCDB , 0x484F6615EAE94CDD980CAB9D025B3F8D , 0x4937F0C1F93A4D22AC39AF71BFA2ED77 , 0x4A3005A00A524AD1BC6A3B30BF81A00E , 0x4AB5B38D6039431EB6C2050C2400FE6C , 0x4B3E748F29604E4DAACBA90EAC9526D3 , 0x4C224BC961DB44BE9E32627637264440 , 0x4CF033F1AFA846208BA04BEADED9990F , 0x4D36517A48D443C58C2809288697AC62 , 0x4D45F631A9114B8EB0A0E2BF03DC760C , 0x4DB600BE63164A74B12E25C6A440821C , 0x4E1CB5B26BB14444B6B1BB0C3E914DF5 , 0x4E48F30156964CC88C867F87B03713C5 , 0x4F4BD89BE6A74FCD887A689C03E02CD2 , 0x4F51F8033A9749CFA30CFE46997D38B2 , 0x4FDA9BFE26184313A64E67F013D27C2F , 0x5053FC713FE14B9797CF672C3E719344 , 0x5098347CC45E41DDBF6C9D37E9AD0FFA , 0x50ECCFC69E92455095EFD10CF7238A0C , 0x5134205E28C14D24B34AA3CB2BDB069F , 0x5159D18CE46744199A2111FE8099CE2C , 0x51804B09A3C940C58B68FED31BC4B4A3 , 0x51A0CF4F1C1348179999E3F326886DE4 , 0x53005687C04345DDAC37FA37B820D1FC , 0x5348971D6F3342A9AE06344F855BF426 , 0x5348C511717549F1891789929E721659 , 0x540879704F9F4560A1812E4EF9297631 , 0x54147692CBFB43419A6D11E26CAD44DC , 0x54ED861E1D224CA292EE73A86EA5F09D , 0x5593F934CD364C78AEBA91A42078F31C , 0x5599868E15F0459D9CFC637B9BD19DF8 , 0x5685EDD54C284994A09025166DEFD453 , 0x5700E5A39AD3425C8306DBB1D6BE59C6 , 0x5751B83F92D3402EA1399A68FB75AF08 , 0x58175CC55E3F4F078C4DE76043EBB6A2 , 0x58F5CC37F7B84AAE8538BEFC26A7D2C8 , 0x59742B6C257B41CD8493B93826998288 , 0x59898FF2C3404878A0990F33CD7C60BF , 0x5997D91DC0784997BDEF68DFC5A08912 , 0x59CAA3674B61458AB2A6B04B7E83AF70 , 0x5AB7AECA88644E2E952902F601AF964D , 0x5ADC9C2E10E546909D0CEC57AE1B6923 , 0x5B10B306B8054BB8B210B1CF1E294DDD , 0x5B2E75D2981E411FAEDACD38F0AA5056 , 0x5BBC78B8F1EA4A42AA35ED189A6B845B , 0x5C238D79E31548C4A24CAC2F8CDB1000 , 0x5CD42FB513264BD4AC90CB3C9E6F9E01 , 0x5E548441967D4DD68DB010D87DF81486 , 0x5E749DCDD6D94540AEF4708AECF022C1 , 0x5FCBEBBB118042499ABEEC2CC4346EFD , 0x5FCF5B01D4D942609855E95E13CBD2D8 , 0x5FFB7D34AD5A4FEF8D6A3D6A4C0ED6C1 , 0x601EBD39866442929C4C465C1758575C , 0x60E6B1B07FED47C2A1F75420AD74748F , 0x612D3D7429D6424CB58CC9F1C2CD306D , 0x618A0DC60CB94DDEAB8379AC8DD865BA , 0x61EAFB01EEC745498A7F579FC0A620FA , 0x621C78C502B74A80A2047860ED3D6156 , 0x62479E3ABBF94DEEB7F2DA9877BC9BBC , 0x630C949AE0224BC7970BEAF77D84356A , 0x633F00A29FB84821BCD5A93B407B6A42 , 0x63A0266F47C14D6BA188CDC1705A98A7 , 0x64D8CE56DE054F22883C674DA7E3BB47 , 0x65A246E9B4234F79A378DDDEC45A32BF , 0x65C01AF4790F4F4EB2A4E2539A04A1D7 , 0x660950C3779F424EABD2BC78EEDA51FA , 0x66235016E0DA4382A777FD37D445D872 , 0x663BA0F9DE284525A533446CA1ECB79A , 0x6789981EC3CC431EA4626F2A5D7D7062 , 0x68702AA585C74900BD1A240D4FB92532 , 0x68EE16BDB9794830B34C49A09B740106 , 0x697EFAF4B08C4EAFBDD32A0908B07CAA , 0x6A032F858F164CA7BA7C00490C7E2799 , 0x6A278F4CB2134647AF7958725F378253 , 0x6AD3E8EB4C2B4B60A18A6E93140DEDFC , 0x6ADF02B8FEDE463EA69CB386FCE035F1 , 0x6AE006DBC6454D32B18396AA05799722 , 0x6B466513A87C486F961220AE2E116ADC , 0x6B82FFBB83AD471F96BB4B69C414D780 , 0x6B8628AFBA1C4F968B4A01D263E730D2 , 0x6BE33AC2474A46E5AF71D3C2C5B053E4 , 0x6BFE061718784FB1BAA8FDD78406985E , 0x6CBE3CE5C33946A68F1BAA139F204446 , 0x6D1C83B5F2BA4DF29EFFA468F833CECF , 0x6D77CCC6075E4F7CA650F1A80C7D9920 , 0x6DF252B66E3D41A1BA1509DC814BFE36 , 0x6E144CB9CD4A48839B8BA4DA6A9B04E2 , 0x6EE367760F9A42D1A9B7116A0F428FEF , 0x6FE4E05E5D3D413DAC97E1712A7EDEE7 , 0x70311B28272B403C973CA5732A77DDA2 , 0x716CD774FAC94B089DDE73E71CC749B6 , 0x7182B9570BED424F910D8749DEA2AB3F , 0x728921CECFC843E48B3DEF5315F262EA , 0x738251919EC346FAACD8AD6C9D0E567A , 0x73F150A35E724117A28C1CED9498D01F , 0x743F6BE3D8E14C03BE4043340852D0AA , 0x74BA42C8B7BF481A81ACF5B43242CF25 , 0x7520523B5F2947D088B64E3B4F129C10 , 0x76B71E3F558849939AE03FE605B47424 , 0x76CFB01B9645440CAB753B756DCF4E96 , 0x76D756C280034D33AECC8896D9B4E125 , 0x76E16C236826460CAB20320EDD834255 , 0x76E4E1944AD24BD78AD561802073F780 , 0x7834138D86AC4DCBB51EE90A3B784353 , 0x7849BD2B1B78484FBA489222B84D9DF4 , 0x787C9537BB6244F5AB9FD2C008CB0DD9 , 0x789F43402B8C409FB2EEB4329F4A20B7 , 0x78D2FDF1D5E84C96A6336ACFFDFBEA1A , 0x78D3D64F945C48329F2D63E59AE3EC63 , 0x78D705084A0E47AB899FF22E15923C2B , 0x792D5F235EAB485685CD2AD976330F46 , 0x796A8927B25240D2A7400A6E3CA17EAB , 0x7A4DDA46F8DF4E75ACA64CF82720054E , 0x7A9F4878AB17473993212D5A0CE03CB7 , 0x7B8680344B3A4F7F99DA176E9F951127 , 0x7C5B11B0BC9C46629F592FED30162088 , 0x7CC1E6BA47FC4BE8AE8B6923AD987EAA , 0x7E57596CF49A460BBA0CD0FD94DCD7E4 , 0x7F4D6C86245249A0838B72DA8F9FE726 , 0x7F67C86A4AB3485CAD959E24C664F6BD , 0x7F81838628CF4232BC1ABA55A18A90C7 , 0x7FBD2BF5EDEC43039F9D645D856C10E7 , 0x7FE2361E8E594C3B97DB8DBD39A2F75F , 0x801555315E6046089F2BE685EEF50680 , 0x8030086FADF744869187B3C7ED6EA6D3 , 0x803096C5E62C44B28D7AE8F636E80BE1 , 0x804576A0D7934CF9BF62E01227C16F54 , 0x806C1216EFD345FEA4585708A3978599 , 0x8353424C6AB246EFAD78D8F5D86B0E51 , 0x83ECDF1915C3432FB96C3728F63F6D8E , 0x8479C393E87F4B759DDCDE1863B27BF5 , 0x847CEA893EC4412CACA4E72175E22DF1 , 0x84FC5A60241A432B9E668AB86B5CC4EB , 0x85CB6BE2B9F84CA899FD95D5BBBE0A63 , 0x85FDC41F34484AA7925C63E768C8C3F2 , 0x8648F84FC1F34A8AA782490B9B077483 , 0x866BB9251A6940F7B452212516133970 , 0x86C15B3562424B83BE122225E1EFCBAD , 0x87641EB681D4417FB5F22592130EEA44 , 0x8786DB920B334822AE89C10428DE64B8 , 0x88A00397227E4FBB960D95C2CB605CC6 , 0x896F31689D7E4AE1B93D368154B7FFC5 , 0x8A2A7402FA3A4A638C4383402553095A , 0x8AB1D87B8E1E49E197F10DC8345E5097 , 0x8B2AFE5DC482449D90B03AD04B8C42FF , 0x8BB4913F5FB14E6EBAD3119D59B267F0 , 0x8BCBCEF3080B4521A43FD4C5AA7A0A34 , 0x8BDF2168FCB74F75BEBB294868E53136 , 0x8E01B6EC0EAF4A2491303C2CCF2E1213 , 0x8E11BB55D5164FE4B4B9D6B98AFC72B7 , 0x8E30641C37B7434982586E980853258B , 0x8E469308DB724CC48DB2E4214DB9F1CD , 0x8E46BD6536E0489DAAFC2164676B0AD1 , 0x8E48C6A766034FCFA31EF55C21C26C6C , 0x8ED1BCC23B9A448B9F3DDF3233FE9343 , 0x8EEC18E5090045918BF38822A89095F3 , 0x8F69CC127538424E913B218777C4A0A3 , 0x8F6E748BB9134690A2C1600D0CE03178 , 0x8FBD242FA0B2411ABF16EBE6C97C54CB , 0x900DE6D957604BAD83EF64007152574A , 0x90127020BB14410F884D8E27BCD6BDA8 , 0x9026B149063F4C1A985A81B2A2B1532E , 0x90A1911F60584B62BE72C0BCA266D83F , 0x918E3D930C7A4C96AD9112D423E6EB86 , 0x9254323B8D0C4579A89CA9135937B2BF , 0x92746FDD2BC54F02B7D8CA4DE230140E , 0x92DE8D8AFC0349DB958614D99053E789 , 0x931A3526302243459A86D519E21E9829 , 0x93AFADE503974BF68150875C20FF98B8 , 0x93CFA2107B184FA398922862770B25AD , 0x94166CCE97A74DC5AE9F6EC549815839 , 0x945C21F8920C4224A78579E044F3B499 , 0x947742C47E534508A4667B65D5A1067A , 0x94990F71B3434CF5A57B64339FF4EA3E , 0x94DFEE026D3242E5BA2A78A043B2DF83 , 0x95328E3731F94EFD8043336CD4E275EA , 0x953E4D5AF5864532A166435455666CC6 , 0x95CAA97BCDF84C658388380ED5922C93 , 0x95D94E0C0A244130972F6970F16EEF11 , 0x96E2CCEB3C4B43A3843D7F12A700F500 , 0x97303977ECE54D829EA799C63B2A6D5B , 0x988CD8CB631B4C08BAD5CF68AFBEC39C , 0x989603140DA042AC8E033E95458B3785 , 0x98A46977CBED403D8EEAAC7CDD190149 , 0x98BDFF925E9F4EC092EA91EEF736B9E7 , 0x994F6D566A4142559C147C7FDDAF15BD , 0x9963CB659AA54374A5A8B27BEF1FA416 , 0x99F6700613544419AF205FB375016AA7 , 0x9A464F3D363C4CB382165E9CBB4C53C3 , 0x9A50A84AB1D9449BACD5A9ECB11F859D , 0x9A644573660F4E3CB45BCE25FF321E1D , 0x9AA14DE78CBB40A0BB434CE1FA93E948 , 0x9AA236479142499D9E00B2C7A50B2AC1 , 0x9B1FFA06B94145F58F0A70BC2DAD111F , 0x9BB6FED98296409EAC1457917A417575 , 0x9BBDDBBED9BD4786A8576732068E4965 , 0x9BC2B3D8AA18489E89EE2AF8569E017B , 0x9C07D88E2DA34A3C974DA50F37102521 , 0x9C283D90F08A4DC989955CDBC07B20E0 , 0x9CA9A6D58A504A8E99C612AFAB147ACE , 0x9D7E764DF7FD48A2A6AD43A7DF4B211F , 0x9E3E972C53A34BCA8E8D4E83992F4EC0 , 0x9EF8EBF088D44F6381111538039DCEBD , 0xA0346C99508D4637849CC182BC4C90A2 , 0xA08A5C18929D40F6B1893B25D4D114B7 , 0xA16CF594E7E84125BF555AF550D2F298 , 0xA172313FC4C74F9C86009A41FEC37D58 , 0xA19A2E0DF3494D49B492A08478566ED9 , 0xA1C395832E234F66A402488F64F8D02C , 0xA1C8C6B9B4D846F38AB5177178484A19 , 0xA26C00A3E48442E188F672E0F035E08F , 0xA3A84E93B98C4FDBA8AF6E4FDB11F7AC , 0xA4A28DC7DC384970B68F19F926410B62 , 0xA4BA75390266463794DBE14500260766 , 0xA52BCD559DD94B97979A7B83E6604890 , 0xA595B09B05E04977BBC2DBD1C236AB29 , 0xA59DDDB64D5043E4B01A750BF947A2FD , 0xA5DEFC92E2624DCFA975CC8885C55B78 , 0xA652567D3D5041DCA3D13B4289EEFC0A , 0xA6743728219547D59AE23519B6FE77E2 , 0xA67AE00F357F4C528BF8B17A08DE2A1E , 0xA747F60181C541E68153500D7EF3E6E0 , 0xA7933F5B32F34A1C8CC72F69E19FE0C1 , 0xA7A865927C5E447F9C7F8AA6D9BEE9C8 , 0xA7AD6A9665EA4033A8E5E1070A8DEB44 , 0xA94E117037A94E218550F8E8E454F72D , 0xAA597CA5E8C640F4AF43B20A624C3C04 , 0xAA9C9715012349DF80B7A12E945534F7 , 0xAB5411C7FB8743CCB2DD183B47C715FB , 0xABB485E23A6C42538C2DE7FD2D9D4329 , 0xAC5C9531801B4A60B139808E0CBF0A1E , 0xAC5D5954C56F43548BFC4E4144B020A0 , 0xAC96A1F31C574FC89AD8316AB633C026 , 0xAC9B7119868C4CFF862049D97036F16E , 0xACFD7586D02848F1AC801F4776EFA414 , 0xAD20B35EECAC43CA8AC2F0CC3E06CC3E , 0xAD3846E00CE847E080AC7BD3E912DDB1 , 0xAD547BDDFACE47A1ACC257EAA87A91DA , 0xAD735AF1EBFB421E93E408B073C4A89A , 0xAD9A5C4C130341BDBA345ECA895110C2 , 0xAE59B5BB529F4DB889CC60BAB828A5B2 , 0xAE9DC35E222147D1AE7CA9BD01292674 , 0xAECF04B1A1C84A4385E9E65C4615643C , 0xAF123FA863CA4401AC3159A59A2DF3AC , 0xAF695351A56B49B58250292554C5FFB2 , 0xAF69900EA6E34364B9827C9AD03CC4DC , 0xAF9E19715E034E94B5BD9DB6B8A3B132 , 0xAFB7CBC7E602430AA255221722FD2B10 , 0xB016965020ED45D6877546D0DFAFD08C , 0xB1CFA3D6F1F243EB88715C21E668CD1A , 0xB23E7E543FD64A1097449A6E1C6E3E83 , 0xB40630DD572941959EE34D753CB5700F , 0xB5145D6B3D5F41D3B0105F2FF4186E8A , 0xB5DEE5EBE0D14E16A246DB536B069E57 , 0xB5DFA9E542EC4FECBF3DCD968BF99B13 , 0xB63B162D56554FA69FF479AD24820452 , 0xB68EFC7F595842989EDBDD42184B9DF3 , 0xB6DECF25801544489BAFFE10B69500BF , 0xB7098EFAD39848FF94F3079DA24C0B4E , 0xB7A3B4D35CB74C75A6F39476399144DA , 0xB854BDC7A9EC49E8AE7090A4BFAF4BDE , 0xB88D327575E74D51B24358CD04CC2590 , 0xB8EB179B1054446FBA765A050A0866BA , 0xB9053404F18547CA80356BCD5A056E0D , 0xB98884E3A084422E84AA59851575C75A , 0xB9D13C49802B40B8BD9A34E8CA3075E8 , 0xBA4138CE12F64CE3A64DE43A510DA936 , 0xBAD88AC403DE4371B48DE604AC51A01B , 0xBB998F422DAB443EABB6CAC1640CE6C2 , 0xBC5038B31A9A4766A9F8FCDC1BBE59BB , 0xBDD502083B5C4CFD8EFB1156D656BA15 , 0xBEA9BB64AAA1434ABBC0EDCB624C6518 , 0xC1FE0633E5244658AE245E1A11B9F887 , 0xC20F943866E74D1EAE5B3F0838BA60BD , 0xC23ED21669A8449D8AF0650FCBC15998 , 0xC3C396E968A548F9A4FEC005B3239209 , 0xC47E1725895040E097FB61DF69F0AF2B , 0xC4EEF08FDF8D451DB24F60E084B6D5B4 , 0xC5298C9021FE41818C6C89232B169FEF , 0xC5875411C4B24FF48BE7964122A10B55 , 0xC5F884861F914309A76837AE1CFB32CB , 0xC654DBE8064049A2A377EF69AB65D633 , 0xC74439171D6F488A95916F2AA7F06F6B , 0xC7A9ADC6393E48EF9CE8E7CBE13CE6F5 , 0xC7E39CD05F144D01B5930069EC4AECDF , 0xC891DA8FE266471AA83634CB5B436724 , 0xC8FEF06EF6144EF8B5098555837095CE , 0xCA599C12EB174C2587D735E3112E7784 , 0xCAAB35BAED0943788863D9AC916A60C1 , 0xCAD420DB8AA743A2BC48140515D1A996 , 0xCB1EA02BBEAB422F9757D63BD48AE687 , 0xCB634190E3664F7E8CFD52B193744F98 , 0xCB76A3C150B84A428B9D277B924164C2 , 0xCBC82329E5144D568E24005B2616A920 , 0xCBE07660008B463DBCBD128DBC0A4CE0 , 0xCC0A574F9DFA4ECFB2DF234DA716A6AE , 0xCC7C725BA6C0469CACCED57E7C12A2A0 , 0xCCEF6480E98C4EB48494C2BC53C6EB4C , 0xCD2ECB1BBB5C484882B64E95F8BDDC5C , 0xCDC174667DB4489D8478B0F76066A684 , 0xCDF7881EE1C94F809CA27718237035C9 , 0xCE1F2DBC3A7F42BDB4894D63ADB4EC12 , 0xCE2B2E10CEC14062A8C978FB6AF523A1 , 0xCECDC9821782467D9C4E11A7D90C5A1B , 0xCF39715286F249389094896DD8DB8B2B , 0xCF5CA0C6CE894DA7B265EE976C2042B9 , 0xCF6BF562C83E445DA5676EC9CF29E66F , 0xD02DDB5E68824DC0B764D0A7309B59CB , 0xD042561B61F648B49471B61EA7477963 , 0xD0B200C760FF40BA9B37050C2DE60632 , 0xD14DF177CCC044EF9EECF0D9BC1538A7 , 0xD19C8D7299E949DB9F4B7919FFC2C0B4 , 0xD1E6334C6A3E41D1BB0212368B6255A7 , 0xD22377B9ABBF4F26B2B84DD78AE27995 , 0xD2BEA05C94B54BD6A23CB5161663ECFA , 0xD31A12B2FF244775B463745344D2950D , 0xD362523913E6414E98BDB01E1D901417 , 0xD37BCB05EAD44C8A87B72A5154CD376B , 0xD389CEE74A54442CA597810CE8403E4A , 0xD3AF2E5DE8744C79AFE3707A8157EC4C , 0xD3F778965CFA46018D63DA24130D222D , 0xD47479B83431467B9F1115768F9C12CA , 0xD49A7FE6170B4B8CA04F4133BEEAD72C , 0xD4B70EA3F9534609B4B9D03FB4618E03 , 0xD52DE3258DEF488991DC5E0BBE6D5731 , 0xD577C9EEDCDC48E2A307884ABAA275E4 , 0xD584B504D76642C5BEF8312C63790729 , 0xD5CBF612A70A473080AC1E7DD80C7601 , 0xD5E853E9A3F4499D98DD1EF81E9C70BD , 0xD5F9A8F04DF449D58FD6B0271F95316F , 0xD6980496E9504B14A15F5E34B8263DB1 , 0xD72B2E8241024CB999E07F5548BFD207 , 0xD74DFFFC8C1047C49541401C815D8AA6 , 0xD7FD9A67187B400FB909B0D512DFD5DF , 0xD8283942B03C4961AD219B6D11EB576B , 0xD839824AD12F476895BE5A7747ACEAB8 , 0xD8582C1538164D159450F6AF54348680 , 0xD87B888E860A4875A238E2611157FB36 , 0xD892B1FB7D344536817847A71E94B210 , 0xD8C147B1414149078123836603C46C41 , 0xD8FD4AFAAD314DAF8473A892B68AA960 , 0xD9DC80B408AC4BEE960A1CD51A9AEEBE , 0xDA651462ED394CA89AC7781BBB1D924C , 0xDA8C986DB0EF46188AEA9C5378026093 , 0xDB4F62E617554CCFA497F902ABA8362B , 0xDB5AAE42691140A8B7D2B3363EEC10A3 , 0xDB5CE61E09A2476290EBA46EEC6EF1B4 , 0xDC1A812274C341858B101A846BBF39FE , 0xDC708B2727C94F85AE726208DCDD022E , 0xDCFE925A20D14A88A3E4B761C772BDD5 , 0xDD017B04049B4C03B9D081573D684C4C , 0xDDC3FE95A1B14C898B5FB231FF911BD2 , 0xDDCF6D47E68340BEBD65567BCC6B93A7 , 0xDDF11815E1174B05BD96FE5A032389E6 , 0xDE2AD4D2D5904964B5B4E0EFA33216F6 , 0xDEC40250270249F2970AB1290EBE89CB , 0xDEE64FB515434339BD257FB9D32CCD3F , 0xDF70AC9EECED472393CF9ABF88FE7E08 , 0xDF87FDC52FD64907B2B0B49B5BC89211 , 0xE03B1F01728740EDA99947D7A89008A3 , 0xE03B622BA19E4B5E8388E10DB982642F , 0xE09160BED1654DEF9D35F620410BBCC5 , 0xE0F39626E29047869DF3F6174C4DD781 , 0xE2066736826E40B28F9ACE2CBF1B3516 , 0xE2168221B403447EB0D038E5A355F8F8 , 0xE2BEA6F57AAF4F229D5F91A959F068FF , 0xE307B4A9B10341C3A920368CEAF34377 , 0xE481596C42A441328899D4722FAABECA , 0xE4EDBF4D92F74FEEBB92B6BBC106B0BA , 0xE53C37D814504BF9B3BC7A0FD1CF6A16 , 0xE5D6F7D5F59B4D2E8918B07FD65CE519 , 0xE6AD80CC7E6D40E6A502DCEA3CBB23A4 , 0xE6B6CE545FD7415EB9893EA1FE287A14 , 0xE768118752764987983318ABE999D5A5 , 0xE87A0E6119954ACD858F1B43E300DADC , 0xE979F83130514A6A94F57888B58BB69C , 0xE9906E3C4E8E4FAD9C6DDADAD071EDCC , 0xE9FE9C29232E4A0E9F899616DBF7D6D7 , 0xEA2433A4864642198FCF2028E63ED34A , 0xEB5099BDE654455C842F33027EF1271A , 0xEBB04DBCBF844CDEB4CC66CEE3DBEDA8 , 0xECA7F6859EE74DA39DAB42B1BFF96B4C , 0xECF2C56A297747E384E9CC0EBE98A1D5 , 0xED0E30FD7D054ABA891DA6E3946919C0 , 0xED915A7E1FB84FACA7CFB6DE0EE91C62 , 0xEE1556D8DE7F4DF693BCBDB1267D5EF5 , 0xEE1818D80C3A46EAB4EFB5DDE2B5D427 , 0xEE40E99F12DF4415894F3DBD4F20A59C , 0xEF148AEB9C2A42EEAFA451E1314DF749 , 0xEF371BA6C4044348A019055C8320963A , 0xF02FE01B7C5E49CBA96AB5485356E59B , 0xF03E5DCAF92240FE81F3FF09C2DAA86C , 0xF10F8015A01340DFBC036D0DBFD64E52 , 0xF1B7BF3D8DCE492B87B2C27DBD2D696F , 0xF2896DB43C5F40C0AED48FA22C6788AB , 0xF2DE6965CEFD47B4BA76F62C50942E9C , 0xF303A71733B641689C9D514E3D73B8AA , 0xF3692CF51C114977B1FDEF6E55DAA950 , 0xF39258CF6D01425180E11AC51FC7DE07 , 0xF394F59493E54CD5AA58003E5E9BDF17 , 0xF3D168C357F04072AAA4786CA49A71BF , 0xF4A3406D645A4A84B93BD0E057BC2892 , 0xF4AC81D7520346EB863800094C5AFC61 , 0xF6117DF70AE84D2D99E0EC6E935AC4D0 , 0xF615E4F136124CDA985615C64446724B , 0xF799421B479F477998BF4F14A513B162 , 0xF7C132ECF9A24630B9D6E38B385932F3 , 0xF8BD6A16B0374D62AD03B986718DAC8D , 0xF900B1C8B44A442BBF68B7A45F91906A , 0xF92BB6C5D5A04A849624B35C9D96E95E , 0xF9FC981492464250B0BAE770D85C4E14 , 0xFAAD3EB211914309BBF39F88D2F13C85 , 0xFBCD87C9DB134FB6BF7D66C70D85DAD8 , 0xFC701E04CE234DDEB066DDE4CD809C04 , 0xFCD9EDE601274D3484292D9E53E15515 , 0xFCE0AE8B66BD47738EC2B7EC7154AAA5 , 0xFD9368B256804D7C833BC7FB6105A73B , 0xFE191C929B0F4B5FA29469C9F3D72054 , 0xFE42708368D94D87AB265BCC570246C9 , 0xFEADDF9D2479485E938FA4C0B0430EAC , 0xFEB3127BA826431B952289DA6E9697BE , 0xFF9CAA3A09084C25B16B5022A395F691 , 0xFFD1F311E8FB4EECA4292B25B6F6B773 , 0xFFDB37DCE1B74798B35C0EEBA4FC309A , 0xFFE35A143A9F4F8295F9B0187D7E1AD3 , 0x000D0B736BBE49BF9FE06BE1EFE0D72F , 0x0151545F0B2E405DAEED16ADA8172FE2 , 0x01560FDDFD1D411AB829D5B0FC8F7947 , 0x0167DF1C2F254A3C8287528DA04A3DCF , 0x018ADC5BF2CE4652A0C3A6AC7ADC6E64 , 0x0261EFED5F7A4CACA9C3ADF7DEE4268C , 0x028C96A382934713BD7307BADA4AE90C , 0x02B88FB430574C55898C56C44121D04E , 0x03827C9AA5144278815312A1707830AA , 0x03C73E038AB64C73A58E82A5B73B2A34 , 0x052CCB0053E7420CA0CEE937E38CE1FA , 0x058B5C25E2524CD2A53E5D0A8CF150E2 , 0x059DA6A44A324C8A9EDEECD3DA165FF6 , 0x05A33E2F49A64F319F650B712048EDF4 , 0x05D99F4CB18441EBB0E94C9DB0975C18 , 0x05F7BD4B8CE64C879D803F9B79121AEC , 0x060B866D18984186B8B7F276CF8FEC7B , 0x0654D18E3F22412F9BDE150500A4245F , 0x068F49E5474D42E799952E23890B90F3 , 0x06EA2BEE7B2B494DBCB79F402A9645D5 , 0x073AB22F248D4DFB826DD6537B7772A4 , 0x07944BB73DDD44A6B161BACF86FC4901 , 0x08457DFD0256463FB41C201BA5935890 , 0x09DC55EF311C49D8923435F093E77BEF , 0x09FFE7EC3E304FEEA87A6273C022E6F0 , 0x0A280C81D1234184AE8FC39231E5F721 , 0x0AD5BEEF851442DD943A853A5A1DD3CD , 0x0B67384FB5094E42B318C929ED8770C5 , 0x0BDC60075D2C42DC80D21C1ABD0673B4 , 0x0C886F4A606A4487999C12F68C7EB07A , 0x0D97C5E5B4E34A3490A607914E8215BC , 0x0E7843EC44964C4ABB7A149AFF6AE2B7 , 0x0EEF7EDDC57A4333BBE08C3FB8B59EC9 , 0x1024FC93B0984A7895216ED4AF449BB5 , 0x10718C6218894ECA9E7830F52D209482 , 0x119110F084FA4A2FA782197704121B36 , 0x12BB8FEADED9482EB4EFEA2CE9126E29 , 0x12DE256094D8491382DB47CB876C16EF , 0x138E6D0985044915B8FFAF58F400D664 , 0x141116FCD8AE4A3FB1DE4503CA5E0F86 , 0x156EF1DBA295451E92B51F204CFB72CE , 0x15C8AC007CF14F56B22CE50AE07AB6AE , 0x15DFC133DB634228AE155703FE7E1490 , 0x16A2F782D84F4B51B342319CB82307CB , 0x16FA110F651545A3B5D64F550298777A , 0x170498F515BC4C54B5BF2EE77E484972 , 0x1743CFDA10B44B62982B118595B2AD26 , 0x17BAF37B79C449B088E0E45838353A2E , 0x1826DE44ECDD453E947CCCF819DCD5C1 , 0x1860A6CC569D4FB2906071D8E1E7A443 , 0x189247D2B50E4A75A2FCF416A8B162A0 , 0x18A4E5E896CB41F38E7EAD8BC93A309A , 0x18CE7D13A8244DE4ADF8A12FB71B2980 , 0x192429A164594539AF9AE01EB86CB6DE , 0x19C0E7DC83234E45BA2158C16C760158 , 0x1A23890CAB134875B828C832378EE473 , 0x1B1C0A88A5F44725AFE769AE10264A80 , 0x1B77FD7DA0D14F0EB7445C2903147449 , 0x1BC5AC72D78042A7A43BCBEAB9989BC8 , 0x1CEC537AD603426DBBFAB4DB23C169AD , 0x1D7DAAB25A8B4CEFA4D9EE6EAF4836D5 , 0x1E107D9CFAD84CB1AA21AB64DE031FE1 , 0x1E4990C4CFA748F5B3F063CDF9AC482E , 0x1E9C655B61264567AFFD67C684DF134F , 0x1EAC38632CA046ADB29F2EFECE2FFC79 , 0x1EC958DD1B744C9CB858BA7660242621 , 0x1F8824E7328E405D8D34E11232B79D64 , 0x1FAA4D05754843EB9843784B27ACB93A , 0x1FF70CBAD44A4D6BBC4E15C7BE3EBD4F , 0x206EB1C3762C4A2CA987E99F0C7607C3 , 0x216FC818E2BA4C61919CB07622401713 , 0x218BF2C938544D858C0F92FF460E0365 , 0x2192DD2CC589482EB8A89CA7F9C08BB9 , 0x21C220639D9B462A933265F74948F7E5 , 0x2219C187605D491AA6671211CE694BBD , 0x228333A6239C469DA7AA312122F114F7 , 0x22E639CC80AB4A77B5EA8701A54D92B6 , 0x23732DD877A445098BE0ABD5EE9519E9 , 0x23E40FFF4EDD4214B98155571C81DFE1 , 0x242F3E29017B48D7B2E1F7F4D5EE257F , 0x244450DEBF304356B1F1BE3901A8D1E0 , 0x24ABB2CAA42248539668BF5D6B2371F5 , 0x24F37DB484444A288EE2025BBA7E1F6C , 0x2575114244B64F89A7196AD5F145F403 , 0x25DAE530FCDF4EDE9445FE3911170676 , 0x26D7E90446C74971A3C7EB548EE47CD5 , 0x2734106074D942C3A4E9211A26FB7924 , 0x273503D8725F40FC97A6A5F16EE5244D , 0x273F30BC1201459FA920BE98E4829A55 , 0x27C4F50A512B4A24A3E29A82100BF90E , 0x27D900B1307F4828AEF55711585999AF , 0x289F6F8156EE478FB8EC3085077FCB51 , 0x296344D9F9B148CEBD7FDB5B4AE80672 , 0x29BC91EEDFEC4E51962E4A1AB1D65C57 , 0x2A26A8A56A6E4523A65C137C1EFC681F , 0x2A425DABD6CC43B1B8144CE9105330C6 , 0x2A8075A9C25A41FD964A1F9AB4C554BC , 0x2AC70A20F1BE40FB8F304DA982859EB1 , 0x2AD0560069994B5CAC515C111FA5D8ED , 0x2B3BDB626D4A4C9D81D99B9A32575605 , 0x2BFD278E87204807A890DA4A3E81DD90 , 0x2BFE9F8569714EA0B38FC3B0DFD9F913 , 0x2CEABDD07C4B4AEE8C372664007B42D0 , 0x2D2B368CFE424DD189127F20E4EB6209 , 0x2D30B237E3404B1480180E87A4C1A33E , 0x2D45BBF7664448E691BCA6426B1C6E60 , 0x2D6C61A62A11445089A977785A6EBE5A , 0x2E13DBAB75A44625941AC1E25E9F1CBD , 0x2EE09E319D5447A195DD8CA15F4BC9C7 , 0x2F39BDAB6E8145FDBF6FA02B0F7A3F16 , 0x2F659A2B42FC4D6A8148A5A270B95A3A , 0x30099420A2614446B38CC091A272E61A , 0x307CA12BF52649D683C01AB6AD746905 , 0x30E8E0BF98034F40A7F7EEF24FAAED02 , 0x329E298E3C454B759B42EABC84179A30 , 0x32F25B2A15394A939109AF54775724C4 , 0x3307D2FB5D98430D8925D2E5582B955A , 0x33E6E4C76ACB4975A06F76AD2138361F , 0x348C4E2E4EC24B81BBBC20804D3B45AD , 0x34DBB5F89F1743DCB3F7E5BEBEA6211A , 0x34DCDF516DF74C47A8788E475DA6C749 , 0x36AC462CEEC54F17B6FFF2FC6A3BB125 , 0x36CB4E536CA2497388D34BF1A961FC1A , 0x377BF0278F7A4D069EE7629151DE6108 , 0x394F45D0FE7047B18E10B6790EDA50BD , 0x3A5237104F1940E081E34679CE5DE711 , 0x3A546D950C704E9E9AD61699E15BA68A , 0x3A5E4F70FE584A948BEE21E16F1C0EB3 , 0x3A71F77AEA1A4181B4AC8BF0F79D0A77 , 0x3B8E5954B9B4486E8749F0AF5BEEE7C6 , 0x3BD72D7F9C4F402FBADAB77A31165FD8 , 0x3C68A4AC3A1649B9ACEEC69C98477C91 , 0x3C89FD2D0C154E23B282E5A0943894B7 , 0x3CBA9CB9D3494D0A8D76BD0F704E77FE , 0x3D6BB2AA951D482CA783BEB731B4AB2C , 0x3DA0B0DD7E9B454AB3E4D6A681007E78 , 0x3E370E667B2F4754A4990FE3B1D57D8A , 0x3E5AFB6F55D348D69C6C4B14AE24C2B8 , 0x3F8A23A344F84A58BD4F7CAE71F4AAAA , 0x3FF04EC884D644298C453922DCC438E0 , 0x400132C849EF4544A77FD0970C3BCBA5 , 0x407EBCB4674048D59CA239DF1978D2C6 , 0x40A813A7D0FB4050A9F11B421E41CAA1 , 0x40F5707DE12946F4AB3555074F5911C5 , 0x41359AEA3BCA4C2795081E98011C6516 , 0x414A88F8B2254F5CAB2A49D5B6BFEC3B , 0x4159BCAE579F40C89C493F65F705970E , 0x41750A82AB984CE2A663F3A3F03C5710 , 0x418DAA8BD44E4477ABF228F94CDBB45C , 0x4243A73B1A9648E6B00DD95D3A2A1C72 , 0x42727C57FF4B4C3E9D4A4FBFF1E40FBB , 0x42B79FA66BF046E48E89D1833E979292 , 0x4335DE19EDFE4DA898AD35B4C3ADA262 , 0x43C405F005F84B5F84BEC0038BBA55CD , 0x43DAF7E79AD04452B337B2632CF8F472 , 0x4459D8364B704B9DBE9D6FFF229B5F1C , 0x44AACD5CEA5D4712BC652A577E08A79E , 0x45960866EE434B73A00CACC3BCDD5C68 , 0x45A23269364147FA862687CCE34995AA , 0x461C3D658FA3457A84C7FF1AE6C2A72D , 0x465D1F0F2E1A474194543CFE2F5B69CE , 0x468BB9FB35E54DF9A9514DFE54A54A57 , 0x484E55E2303742C5B01873D5F5D5275B , 0x488E61F3FB0F4F5BB3E922598D928375 , 0x4A4D112A9CF54D0F9E9663F5F8E20E3D , 0x4A533B1969EA437EA9286838A690E722 , 0x4AF2EE34BCA44A55A45DCF550180A789 , 0x4B0CBD62314543AFB2F9E859C5B6A242 , 0x4B12F1C619864550A5DF5B6630318343 , 0x4B960CBD8E8840DB91DC262862C19209 , 0x4BDB40C704D140269CD5104F08018989 , 0x4C29C7598A424E36B37E6863426F7A45 , 0x4DBFEF55957C4B0480E6B9704C2B0A50 , 0x4DE945DF94FC4D50809040F7499F187F , 0x4E43FE740B56465BB5D0E29BFD6E7A19 , 0x4EB8292676EC4C3AA11FD775490225C2 , 0x4F8BFF1B027243BB89A45746CC13721F , 0x4F9616CC8B6B41719AB4DCACC4FBD681 , 0x503573A50B9B4DAC87CDA071219BC1CE , 0x50B85FD10E444240B4AE5FD71CA4ACDE , 0x5193FFA5DE8648A1BCFBA1FA8A26C02B , 0x51D683EA62ED42A4B111524EF6857C4A , 0x52454DB2ADF942B2AC079A296F454A10 , 0x52F8B283FAE249EF89D0D48B58024463 , 0x53EC818480974A6AA7AC2135C135E778 , 0x5445204B02D54229922BCBE2C891766B , 0x54529CB761C34D00812B5782018530EC , 0x547F2786EF0F41DCB9BACDCBB19CB473 , 0x55287CFFA2AA4E61A4277C997983EF15 , 0x5537CA917DD349869458F59E5AD0CAE1 , 0x554492B3197F41CCA73086132BBB13D4 , 0x5578A669A71B4797B7632958B3AA7B2C , 0x559D4B8FCA3B4CD599019D0F2D386671 , 0x56185F67D90C43B29E976E7AC819BF50 , 0x561A30935EF140D2B9E7DC02D1A07DF8 , 0x5626A09D7DD64E27892455472996A58E , 0x5643901D8A8241748168CACE59E9CCC2 , 0x5745CC1EF2024672A1FF223C2827E71D , 0x57C86EEA7ED9418C9882B17E96C06966 , 0x57F59F7CA3494F4B8268447A3C8CFEAD , 0x58DEAB7D060F47F28DB38FB1112A3BF5 , 0x59165B81288943329E95069322B8F698 , 0x5919ABCE4836461C983C47EB1705E823 , 0x59229C069E934DF6B1A51F52ECBC0335 , 0x596504AF1F52469C854F555647A83CD6 , 0x5971BA39CF47436AB18A8E1F3B36F9D9 , 0x599CE5FEB01D4CDC8147DE16B9B550DD , 0x59E37E3B440342A4B807BB33D753CCC0 , 0x5AFB9FB0E9E5467DADD8B1050F2A2BEB , 0x5B8D2A04510B4018B149842002641A74 , 0x5BBAE6CE9A7940D5B8512BC75E0B855F , 0x5C5B0E6B0C2E41549560B25B8D90CF3F , 0x5C64808E9D524713A263DF146E318BCC , 0x5D0EB28CEF3D4957BE3FB678B7809051 , 0x5D1C012431F346C3B336BC49162EC248 , 0x5D544886E310443082BDD0DEFE52BE2E , 0x5D82376EBBC4445D91D880E9E7E88F9B , 0x5DD5D52F070B496C9C5569B92F4183A3 , 0x5DE1EFAF5E164279921C7685C179434C , 0x5E7BF68A73874EA6BDD137481779A4DF , 0x5F011C2102AF4D7584C357B88FF1BE76 , 0x5F1BC7DE15644580908950DC7090E996 , 0x5F7E71065DA0417B93F5D576B6EFF4AA , 0x5F9F898C030B49C296FF3103C161064D , 0x61E58869825B47C98FBC330834A0D77D , 0x629A68A6C24A44B9BCFA0861DA810372 , 0x62DE0B36A9F14213909209BAE8929E19 , 0x6327E940A40841B7AEDFDBC454A410BD , 0x63460C1734CC4360A54966A5A60E912C , 0x63EC96D3010049878269F39574AD7EC9 , 0x64A124566FE24CECAEB6900AD77DC1C0 , 0x655BAC9D9AD34D748B207A6193079D0E , 0x6592A43FB34C40538B606BFA9253E9C4 , 0x66030C97897F4FDCBCB6018023294A2F , 0x66104AE7A2CC40C1948C764714A39CBC , 0x677B18B4ABAA453298CB0F11E1D5C766 , 0x67C0EC0185564706ABB5E149C1CCB8B3 , 0x67D3B6BD62BD46BFBDBA787E9C057D65 , 0x680B668F51FA47389E04BFA6F94C8E61 , 0x68138061F3BD411CBEEF8936D10D49D4 , 0x68196BE05BC74B6B8C27A6AD7C3BA37A , 0x6894F1F1D2F14FF9A74175B94DC90EB6 , 0x694DD94E6B3C4E23B398C3253318310B , 0x699E8AD62F12435DA8DF665889B53E1C , 0x6A214396FF3946498B2276066E80D04E , 0x6A2F7847A31741DDADDF5674921761B6 , 0x6A3B54E17CF64713BA8E7803B9C0BEAB , 0x6A6538F99AB3493095829F7FC049AEF2 , 0x6AE0CDD72F8049DA89D77A9D4DEF05E0 , 0x6BDA31E68EF146FEABAC3273DD10888D , 0x6BF34D66C64B4A3596597E92F03430D9 , 0x6C25B7479B184EBD94E97F1CBC1E0C3F , 0x6C881A87110341A2A043BC9A7C023FAA , 0x6D78F81F3F984157A6E4D80672BF13B4 , 0x6DA341CD87FA49CE952EECA5EA515AE7 , 0x6E32527B89124E2ABDDE5A893FBD72DA , 0x6E69A9B8445946708CECA0DF865368D8 , 0x6E6D9C305A5A424FBE7BD884E050B37A , 0x6E7D0E9163134A539BD011EAA9025C01 , 0x6EAECB09999A400DAC58C2B11933676F , 0x6EAF3D21C6104697945B6F009B1B131A , 0x6F886140ED6F4B3285D3D483FF765792 , 0x7065F72B3E4E465DA653D86E05CE17E9 , 0x70A25C2DFDE44486A09384472312B5B1 , 0x70E8DD6B656D4A4B907B0FC74AEE753D , 0x70F0782CD98740258C63880E61EDCE3A , 0x711C5395032649C1817C365189EF2ADB , 0x71E20458C47743E087EF434F783A9CDB , 0x730F5A502717477CB4D236AAB08F5200 , 0x7349C24A3F7D487B818D488C253958D7 , 0x735B0B5205AC4F0CB52142D9B6512CB2 , 0x736934E95996469E977CB0884C8D80CC , 0x73DD488EA86144479F63394C372A969B , 0x7449185A532B46BAB3997C3EDBEDFAB4 , 0x74AE9206DD674848928B40C1925FC6B6 , 0x752701E5CE774AECBB7F66A756C297C3 , 0x75D56F4F7F664C9AB7A84BF92FD24C11 , 0x769D8FE7B08A4D90B6A4D067E3AC18AF , 0x76B6B58B96AE40019F2E4C8E877A923F , 0x7738B9D805B441A3968D5B0469EB91DD , 0x786FB02E0D1943019480A55BF3081931 , 0x7884C6D4D8F84D31A0D4521F26E1547E , 0x788F0E702D3B423CAE0E476C5167D156 , 0x78E954D09CD64AEEA2E5726741A69A1C , 0x78F54F169A3E4CE19F563939EAFAABB9 , 0x790E8323CD1E414892D541C66D170796 , 0x793581CDA411440989418F68608E5876 , 0x79987A7769A8464CBC1E0626645DA1B5 , 0x79D9739FE3BC487FA801869733232C4E , 0x79F92A07AD1D4A15A9AC3651E602349E , 0x7A6373D28D5B46209589E150FB39FDB0 , 0x7B0E9F7AD4FA435FBBAADF581C501848 , 0x7B75774818254B9ABE45C6639C4BEE9B , 0x7C6DF577EF354D49B3F4C6112CE48537 , 0x7CAC5C00480248C181971BF1BA45C03B , 0x7D35022BB7C94579AD6BAA9CE8428C92 , 0x7D5310624DBA4EFFBE8F76EBC42AAB1A , 0x7DB0A09BB4094BCE922737464171A596 , 0x7E05A98AD35142329AD9F0FF305D8395 , 0x7E73E5125113452F96F2CEE8FF253E8B , 0x7EE09F3E86754D5693108875EEAD1C5B , 0x7F5521C6764C4C5EB805B2496AB88328 , 0x801FFEF297F844A8AD50DFD3FF3CF4B4 , 0x803828A402AA461788CEB9F116E125B1 , 0x8040133CAE044D3E9ED8F1EB8D0C1F63 , 0x806A179180EE45DEA47848191EF93244 , 0x81666015193B47249DDA288081B13924 , 0x817ED606E3E04DBA845A503A38E8CAC7 , 0x8230524B8822491EAC975D39BB567E77 , 0x83705DCC0E5E4264802D9570C0995BD7 , 0x8410CB1D13DF4406B093A62F2DF6A49F , 0x8464A73ADC1E4C659010B4B3E0C93739 , 0x848139E6903C4C708322371F739D7CF8 , 0x84D5681F053B4D11B0429FB54E6B3023 , 0x84E0A14520C54F08BF181330DFBD99CA , 0x8552DC31F9B24EA496D1A6BEAADE8D9E , 0x8561D062A3874E36A5F8C1F5FDE806FB , 0x87568A2B33A143749FF338C915617A28 , 0x8762BA3A092B4F18A92C2C9342B0AC9F , 0x87B2F067B1674465B3995058EDCDAD5B , 0x88242E6C532D479C97E6797ECD57F941 , 0x889C63A7F95B4DDA98B3D0A104D9B6BF , 0x889E3E76CF7B4EF781EDF57A4CB201AA , 0x88C7FFA14DC249668AFA462FBCD634C5 , 0x88D21E3CE83041669DF60CE3F37CBCF4 , 0x896BA96AAC694B569A83BF591287A923 , 0x898CDCA9AE434D62A8241D9AA4B9FB25 , 0x8A6590DADEA5482C9B3911179C84A1D9 , 0x8B5B20B570C0412AB58D80AF95AE9F05 , 0x8B8F4A25E36E45BE81025CA3356D66F8 , 0x8B9363E082E84EBCB18F866C186A388E , 0x8C7E190C227644DDADC88EF825944239 , 0x8D3A219385AC4B549D65FF85F36C6B0F , 0x8D827FC7B9D84356BC02873EA4841546 , 0x8DB803FF09A440DB82A6C8AF41968AA4 , 0x8E761B6130F0451A8F3BF562EC4551F5 , 0x8F9C44C9A9AF483AA51F07A99BF20F64 , 0x8FD0C00FFE1B4214BC3D619DEF70852F , 0x8FDC48BB552843F89A689E3FD7AE41C5 , 0x90D8E769D6C4403C881194CB47226EEC , 0x90DB8E572EEA4EA396215457FEBD90CA , 0x9219410151B8446CB753E85DC56D423E , 0x926AAFB3075C4C6CA3363DAA1DC26A64 , 0x92B6C39209BF4C498D250D1758D01829 , 0x9366A11ABCD647CA8E90B16005CEB6FE , 0x94A84013A7CA4266885E8A67C0B6AE74 , 0x953E02487BE54A309642324118ACE509 , 0x974F24265B684935A3A6CA37BA2B01D7 , 0x9758D63DC7A34E9283B8FCB095196B25 , 0x975A5F7FE91A4DC9B8B66788CE90B60B , 0x976479D0DB534585874A3080D9F248B3 , 0x976650529EF14B4E9ED206A8193EED45 , 0x979B86599EC9403091ECE139D0D807C8 , 0x97E630793CC544EBB2BD676EB27A21E8 , 0x985732874E454831B90BE29C99FBCEE8 , 0x989AF3D3CF5644AF9C0C7CADEF84EB45 , 0x98DD1EE0B1244725919833D5A110D958 , 0x99084580AF774598BDB7958818294245 , 0x99529600B9FF48C7B359E99818AB4DAF , 0x99D6A1669AAA47E9A867C912ACEF6F34 , 0x99E409950B5C4DFAA820BCE764652356 , 0x99FC49EFB2F345B0BB62D93F1F630297 , 0x9A1B258DE098438596E0D451BC0B1BC4 , 0x9A533129813743C0968D8C1BA61D1B5E , 0x9AF0CD11D26B4B2C9CF5697A9A841F77 , 0x9B05F88EEAB948F48184D35A8BF585EE , 0x9B15FDAE5FC24618896B7BE160068FDA , 0x9B637EB7B3B6450AACBBC7F74C30CC1A , 0x9BB12F638F464A10AC6D2C650D1524EE , 0x9C3132C8F4194E2A95F1812A28C9267E , 0x9CCAC6B119C54E55A30A3559799EEC4D , 0x9CF60263E42643B18F1F65D26EE1E712 , 0x9D2FCFF3F9424E5CA4883D91F65FD3F8 , 0x9E84E7B7F32C49D49147311C4B1DDC0E , 0x9EBA89258B2E4E0FBC02D337A77BF07C , 0x9F4D5F53B7494EB2968F50F898DFACE6 , 0x9FAD02577C144B4ABCD2D4615C645661 , 0xA0183A2B88D24C1089683E299EF0E5A0 , 0xA034AD9AC5604D8786A600C8FF727B7B , 0xA0498A7C0514491DA66C4DC175053BB7 , 0xA05F65CEBE884DB9A0A8D1BDC99C658A , 0xA0B6427CF7EE44F7B91A83A9FFD9987F , 0xA0D8D0164533454DB70ADD4BE62FB649 , 0xA1660A24F3824697A90FA588EF09DA14 , 0xA265ECD2D2FC4FBD88A3698D81BE3CE4 , 0xA361B5F606CE467A8B52759E1B3941EC , 0xA3866FFD405C4403B72759537EE42434 , 0xA39A7C92C0BD47C09970D3989CFED2CA , 0xA48942B91E0742519BCA7B16667AF98E , 0xA4F88ADF121F48C99FD3EB29E09B1FF1 , 0xA5EC6A653EEB4D9B8E39FD655847F779 , 0xA6B07013E38D42B9990933F1CAAF084E , 0xA7C236F7596E466DA6CAB5D93227918D , 0xA7CA0DA9E0204506A5A443AC348C5C39 , 0xA81BCA2534FF475BA2CF0493730E0196 , 0xA83C84723F6C493B9CBF0083A0C3FA96 , 0xA890AED2FAF04103A098065CD3C182F0 , 0xA8D71210207744BD9ADA9D45227E7AE6 , 0xA96B34DB48234E9898CB8E8A645E59AC , 0xA9A2AEB1DB134D2FA8EB90F139A3B801 , 0xAAD91494F5434338B8EE0CC173760DA9 , 0xAAFE9EDBF3E442909B332A93791D72D4 , 0xAB27878C858947BF9BF3F7337910510D , 0xABBD7834AC1D48718F732CEEEBA40A14 , 0xABCB6696BB6142B6A93B3D49864CCBE5 , 0xAC1F11D317D3487E96E23036B7264DD9 , 0xACBADFAE3F0E44F0B44BC01B68E0881A , 0xACFDE35EF6A94F3F9928E802310D43D6 , 0xADFFF4DB29704563AE31D0A11A96F494 , 0xAE4578DE6B7F4525BCB24AA0E3F3DC9E , 0xAE61DA93D12C42EF8E3E252B4EA55B4F , 0xAEE4A6797A254296BAC9E3FFFC22985D , 0xAF11B47C24464103885AAB5BA9C0AE7C , 0xAF909FD876A5488793AB56B8DC7EF35A , 0xB014913F498C4D0A864FC2E2F11D7090 , 0xB18F71E07BA04C31858D32522B152FDA , 0xB2355711DCDC48D8AADAC7E10309800C , 0xB2927B9F2C4641C7BE1DAEEF6CE60F36 , 0xB2D389BF0C6740B3AFC145B2ECF2586B , 0xB2D6AE43270044E49FFB2ECC54E48F9A , 0xB38C21EC79914187B685D8851BE17940 , 0xB3BAF5DBF1DF44A7BB1CE6DE8297A79E , 0xB4333F7F150740119EE9B8C7705D4994 , 0xB43B825A64C64E71A81805D883A3E5E7 , 0xB44D749AE0664F50A73601B29C78513C , 0xB486E0C247D041ED84CCE30A0CE2881F , 0xB562AB0809BF45E29B437AAD71CE3FD9 , 0xB5945CEEDF9C4A1FB22F463CAE45B6E6 , 0xB5F9FAB27BBD47948CCBD5EAC2BB223C , 0xB60EFB5A5BB74924B2D78D37753C491D , 0xB68FA6C1A30A4FED869866AF7C3FA211 , 0xB69D205885B34CDEB365D8E864B058C3 , 0xB811B466D4C24C59A83625FE30E92594 , 0xB962154DEF4E4557BA09E21A1CE9E8D0 , 0xBAFFC4C0A6454FD4A5FB0B85235E90AE , 0xBB0116ADB986489D9130894324F7A5FF , 0xBB0D9F633ACD4B94A8CCB1191AEFB983 , 0xBB2DC9ABC0F94A1FAE7107BF61825B1F , 0xBB898DC07DA941F69F4478DA0FB7E9ED , 0xBDA0739EE1784E3FB53191F69E95DD95 , 0xBDD76D8587B04F439DA4F96194F559A4 , 0xBE3454886E6D42FDAC90562C770FDC76 , 0xBF205D41E4A3498DA999DD22CED97CEB , 0xBF359E1343C8492E874A6A49592C23B3 , 0xC159B69D59F942E4B1463AFF8CCFCB2B , 0xC19439300CD240079842FFA814439E72 , 0xC272B0E30A5D4AE485E4B004553E906D , 0xC2783D38579F432D95F21CEE5235D557 , 0xC2D26E3BA9C8496B944FC1976B4D1595 , 0xC33CF664A3A44D74AA7FAF39581FB87F , 0xC3E4F1120D4246B4A3169FB6EA9B3754 , 0xC5BE5E3F6DC64813AC4B8B186A48A5B7 , 0xC5C8B3B3A2C3431DB4C17C7057717582 , 0xC64D84707B204AFFA31D3320D3818830 , 0xC72368E42D5A425481116950AE42E8A6 , 0xC793E7C979744EB4A1DF9F0694693905 , 0xC87E21A776754D7BA291D898BCF12BDF , 0xC8920C39C3EC46BA9ABF2A9200D664D9 , 0xC8F2C2F827C847DF9FF85148C418EDE6 , 0xC955CF213D314ABC879485CE82C75F3B , 0xC99CA89DAEFD43FFB4F10502EBA7C45C , 0xCA3122DF200E4B1093499FCBBC98693B , 0xCADD602F64844C7FADA5C6C686BCCA93 , 0xCAEA6BD8236D4588A3F346C33BECB505 , 0xCB75F8B8E471487398D4F830DB8BEEBA , 0xCB91C5629D824064BD54712097CF5AAC , 0xCBBA9861081F4090B562F7C7C49DB141 , 0xCBD24E9B423846D1B5107C049E082DCF , 0xCBE824276C9647E2BD7753E2345739C8 , 0xCC324E63B68049AEAB2EDDA65DCCA52A , 0xCC68B877248C4709828EEC45FECEBE27 , 0xCC7F036DF4F04859829D6A4091ABFE1B , 0xCD414378DE674CDC8B5398678C169EFB , 0xCD59AA9167FD4433B63BA0A23DBE22E6 , 0xCD8E927D36F14E6B87A1C8B8AAF47DA2 , 0xCEFE9EDBBAC749BB93D645956418702B , 0xCF444EEBA0574697824B8CF900339FCA , 0xCF8294F0EF71483D9BE40F9F216CDBFD , 0xCFBB2D58615B46B496EB9BFEDC6666E5 , 0xCFE9D681CE9A42B2BAD2ECB2E508D1A5 , 0xCFF58C04736B440E95E771A79DAA0FAB , 0xD02B04633AEE4E20AE5017452694911C , 0xD03E93B6E52141969C542CA81CA1A87E , 0xD0FE86F149A946DF986FB845A00B5714 , 0xD17067FAF5A74D56A70F58278FCEC72C , 0xD2422A3A683B4A26A92CBDB94AB1CDC4 , 0xD309AC94ABF4491EB95CD23E15489CC7 , 0xD336F3B5F9E64955B1F8448EC44C63A7 , 0xD340BA2D7A384E16A611CE21BA5051F2 , 0xD3BCEB4DBB4E4F9A9C6939D7C4A14789 , 0xD3E67C82031E4432A2375E4427889B1C , 0xD4290B84FBC74778B97DEABCE452C713 , 0xD48F0A6DA28948D68627BC0D56881B7C , 0xD4A49D8A65E64B609DD482A0D87345A7 , 0xD4AB20D3F29C49B29760743A95BFC55F , 0xD563A5288A1F46CF8DE2828557103A9C , 0xD5C7D730DB994E1F8DB6CFD8D3BC9599 , 0xD6586797DF1240C1AEAD3943606FBF1C , 0xD69338DDECF4496E99FAE96AA9587CE2 , 0xD6B99FE33D5846A5B459EDE513FCEEBB , 0xD7C75B83202A44C79E61C63C8E83BF06 , 0xD7CFDD94B79947A6903C344E3DF5E29F , 0xD86777372A434376ADE498DEFBD99647 , 0xD89CFC5DE3644833A1A3D12E58AEA39A , 0xD98E17721D524B409C6D5F5902DFD212 , 0xD9C547C7AE094644BA264497F73306FD , 0xDA5ABF3A196C4D20BEDC20268C801FBE , 0xDB1E4109009F437AB860F9FC047AB680 , 0xDB6C043BDF27481FA752A0FCE0D59349 , 0xDBBE6F0AC5D24D75BC6BA338636A386D , 0xDBE8DCFEA30C41EFACA3CD78746DF54E , 0xDBECFC9ABE6E4F7D8C1EC669F39DDE97 , 0xDC00B1011E50498CBDC719EF10522962 , 0xDCAC348506874B37BE091CC01AB9FD4D , 0xDCBF83451AA746859D4DE4B7EA4D9185 , 0xDD5CC743D87248CC98818871438DBB09 , 0xDE0A4660AFC841DA83BDBB6BE0801712 , 0xDE0DFD87D6A0409AA89154C1CDA4C00D , 0xDE8327BAEE5A42BFA3119441CE9F0400 , 0xE034834DE6FE47BC8BD68F4216CFEB9D , 0xE19DF742C20D44E88D60671188175D01 , 0xE2955940EBC74513A1AFF630F61BDE8A , 0xE2B38F2FC7A341C6BFC456B3C053B8CE , 0xE3651DB1E006403B830D412C3FA0C840 , 0xE398C585870A467886C0F358178E3E28 , 0xE40B3097F3B34EA48CD7157E5E32C898 , 0xE4D9273A32BC4B65BFAB71EAC59A13CA , 0xE62AB798EC774165ACA224AD03987B05 , 0xE68289614EED46B89C8BB65EF7EF334C , 0xE7708AF48BF44B5CBCD3A8A24F6336F6 , 0xE7A50EA892BE446590A84342D2369612 , 0xE7A9A114FCCF4135AE4F86D1976FCAAC , 0xE817CB7471184D01988B6C79EB15FA66 , 0xE82306C73EF043D796E722FB0CE8BCD2 , 0xE8C8F701B29947918AF6116EABBA0D90 , 0xE8C97507DE1048718DA40DE9BD89137B , 0xE8EF31CC8E6240729DD64127C12D5E13 , 0xEA8F846CA463434083E45BA63EDC3738 , 0xEAADF62111E147F087E6DAF4347BDEE6 , 0xEAC39CAF816E48168F46C68EACE7B04F , 0xEB0C0719C84648E1A0832EC04C50FF30 , 0xEB4A625083E04A988326A1D1243BF149 , 0xEBB6ACBD880E46299E6DFACE56EF4A8E , 0xEC2666AF073A47FD9BA80DCD82F353F2 , 0xECF81513ADE8423B9E4C911D62ECA6BF , 0xEDD48F8A6FD24617A4D187D9139FEF8E , 0xEED176E1647A42E7AFE1FA41FCCF7BB2 , 0xEF09DCC1F1D84CFE96B266299754D8F9 , 0xEF771D6AE55F4D208E002A825AA2CC70 , 0xEFE0398E20874B0D83884290FC73F5F8 , 0xF010E8060DDE4AD3BFB6F6AFD1970820 , 0xF0A2A0A4766F4B06A7D409821EF7CC18 , 0xF0B13AB85FFA454CA5E386E78DD38453 , 0xF0E7237D5C0D4868AA26A8AE8836F040 , 0xF0F6BFB1DC3C4D6E99CAA1DD0BC32A79 , 0xF1514FCB059540F99247AB93D588AD2B , 0xF2AACF007F054EFF8777B1B468E1D65F , 0xF324E739C77C48E296AF91F8303E6A4F , 0xF380E37946F2420088BCCC80A554F19E , 0xF3C48062B1124AF59D38FE4E495D9CBA , 0xF3E9B99EDE1E42B8903C7C65C6261B12 , 0xF4184F079B3F4424BDA69617C7C0E198 , 0xF4F05979DD2D40248D44ADD38B1921EC , 0xF5F9623BEF1E4D72A3FBD749BA73E19C , 0xF6B61E3D4DE64D2BB8097A369ECF99FB , 0xF7014C6A365E472980EEDD7DACD56C96 , 0xF70A77038E80425FA98F463A1FD44473 , 0xF73444EF081A4AF380CE05D4F409543D , 0xF7595E61B9A640B089440EC9947E0F9A , 0xF7EB0B917346465AB3E3B901A172815C , 0xF8EFBD997C8A4441BFD33040EE99C70C , 0xF8F727CBC2E94E46B2708D3A289E9A5C , 0xF96BC4404E1B43F68F10EA1C76B7E0C4 , 0xFA488A99F1BA44CE84D4018A400FE462 , 0xFA50992C213D478580AC0E412F4CFF99 , 0xFA95C912C31443FAAE5E179D0056AAD0 , 0xFA976DC99CEA4FE0A800DF775DBA3AF2 , 0xFAB04079CA8048FFBC3DA7D556FFF452 , 0xFC4915AF6FDA4992A5111600C737DC35 , 0xFC6471BFE8044BDA9C0307C9C163FBF4 , 0xFC6958D5865845729A625046C7E84BF5 , 0xFC8405144CD74BDCB4A19E3E43FE7321 , 0xFC9B48ECE2354A9FB4B324C56B7F4DE1 , 0xFCA153FBB5604B64AA2326C93EC4F787 , 0xFCB6E363F93942E3806FA5E35DDAC27B , 0xFD0D209CD6FF45869255103C00DA0CDC , 0xFE00239A50FC469CBC92CED8B43CC8BB , 0xFE051A63E4B44CE593D97545F7261DE4 , 0xFE849AD582FD402DBFC09E2C2DAB7F5C , 0xFF067E170C0D4C1E89C8AE7213CBEAF0 , 0xFFCFB3CB2CBB4889AF8C94F9EA5180AF , 0xFFF67C781AAC40339075B6DF736AF840 )) ORDER BY `property_group_option` . `id` ASC LIMIT 500 OFFSET 1500 ;
Copy
68
0.52 ms
SELECT `app` . `name` , `app` . `version` , `app` . `template_load_priority`
FROM `app`
INNER JOIN `app_template` ON `app_template` . `app_id` = `app` . `id`
WHERE `app` . `active` = 1 AND `app_template` . `active` = 1
SELECT `app` . `name` , `app` . `version` , `app` . `template_load_priority`
FROM `app`
INNER JOIN `app_template` ON `app_template` . `app_id` = `app` . `id`
WHERE `app` . `active` = 1 AND `app_template` . `active` = 1 ;
Copy
69
0.47 ms
SELECT path FROM category WHERE id = ?
Parameters :
[
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02 (bH "
]
SELECT path FROM category WHERE id = '\0\0\0\0\0\0\0\0\0\0\0\0(bH' ;
Copy
70
0.22 ms
SELECT `min_search_length` FROM `product_search_config` WHERE `language_id` = ?
Parameters :
[
b"\x02 0¨(çñA —O®8ͬÞÛ "
]
SELECT `min_search_length` FROM `product_search_config` WHERE `language_id` = 0x0230A828E7F14120974FAE38CDACDEDB ;
Copy
71
0.74 ms
SELECT `theme` . `id` as `theme.id` , `theme` . `technical_name` as `theme.technicalName` , `theme` . `name` as `theme.name` , `theme` . `author` as `theme.author` , `theme` . `preview_media_id` as `theme.previewMediaId` , `theme` . `parent_theme_id` as `theme.parentThemeId` , `theme` . `theme_json` as `theme.themeJson` , `theme` . `base_config` as `theme.baseConfig` , `theme` . `config_values` as `theme.configValues` , `theme` . `active` as `theme.active` , `theme` . `created_at` as `theme.createdAt` , `theme` . `updated_at` as `theme.updatedAt` , `theme.translation.description` , `theme.translation.description` as `theme.description` , `theme.translation.labels` , `theme.translation.labels` as `theme.labels` , `theme.translation.helpTexts` , `theme.translation.helpTexts` as `theme.helpTexts` , `theme.translation.customFields` , `theme.translation.customFields` as `theme.customFields` FROM `theme` LEFT JOIN (SELECT `theme.translation` . `theme_id` , `theme.translation` . `description` as `theme.translation.description` , `theme.translation` . `labels` as `theme.translation.labels` , `theme.translation` . `help_texts` as `theme.translation.helpTexts` , `theme.translation` . `custom_fields` as `theme.translation.customFields` FROM `theme_translation` `theme.translation` WHERE `theme.translation` . `language_id` = ? ) `theme.theme_translation` ON `theme.theme_translation` . `theme_id` = `theme` . `id`
Parameters :
[
b"\x02 0¨(çñA —O®8ͬÞÛ "
]
SELECT `theme` . `id` as `theme.id` , `theme` . `technical_name` as `theme.technicalName` , `theme` . `name` as `theme.name` , `theme` . `author` as `theme.author` , `theme` . `preview_media_id` as `theme.previewMediaId` , `theme` . `parent_theme_id` as `theme.parentThemeId` , `theme` . `theme_json` as `theme.themeJson` , `theme` . `base_config` as `theme.baseConfig` , `theme` . `config_values` as `theme.configValues` , `theme` . `active` as `theme.active` , `theme` . `created_at` as `theme.createdAt` , `theme` . `updated_at` as `theme.updatedAt` , `theme.translation.description` , `theme.translation.description` as `theme.description` , `theme.translation.labels` , `theme.translation.labels` as `theme.labels` , `theme.translation.helpTexts` , `theme.translation.helpTexts` as `theme.helpTexts` , `theme.translation.customFields` , `theme.translation.customFields` as `theme.customFields` FROM `theme` LEFT JOIN (SELECT `theme.translation` . `theme_id` , `theme.translation` . `description` as `theme.translation.description` , `theme.translation` . `labels` as `theme.translation.labels` , `theme.translation` . `help_texts` as `theme.translation.helpTexts` , `theme.translation` . `custom_fields` as `theme.translation.customFields` FROM `theme_translation` `theme.translation` WHERE `theme.translation` . `language_id` = 0x0230A828E7F14120974FAE38CDACDEDB ) `theme.theme_translation` ON `theme.theme_translation` . `theme_id` = `theme` . `id` ;
Copy
72
1.03 ms
SELECT `media` . `id` as `media.id` , `media` . `user_id` as `media.userId` , `media` . `media_folder_id` as `media.mediaFolderId` , `media` . `mime_type` as `media.mimeType` , `media` . `file_extension` as `media.fileExtension` , `media` . `uploaded_at` as `media.uploadedAt` , `media` . `file_name` as `media.fileName` , `media` . `file_size` as `media.fileSize` , `media` . `media_type` as `media.mediaTypeRaw` , `media` . `meta_data` as `media.metaData` , `media` . `config` as `media.config` , `media` . `path` as `media.path` , `media` . `private` as `media.private` , `media` . `thumbnails_ro` as `media.thumbnailsRo` , `media` . `file_hash` as `media.fileHash` , `media` . `created_at` as `media.createdAt` , `media` . `updated_at` as `media.updatedAt` , `media.translation.title` , `media.translation.title` as `media.title` , `media.translation.alt` , `media.translation.alt` as `media.alt` , `media.translation.customFields` , `media.translation.customFields` as `media.customFields` FROM `media` LEFT JOIN `media_folder` `media.mediaFolder` ON `media` . `media_folder_id` = `media.mediaFolder` . `id` LEFT JOIN (SELECT `media.translation` . `media_id` , `media.translation` . `alt` as `media.translation.alt` , `media.translation` . `title` as `media.translation.title` , `media.translation` . `custom_fields` as `media.translation.customFields` FROM `media_translation` `media.translation` WHERE `media.translation` . `language_id` = ? ) `media.media_translation` ON `media.media_translation` . `media_id` = `media` . `id` LEFT JOIN `media_default_folder` `media.mediaFolder.defaultFolder` ON `media.mediaFolder` . `default_folder_id` = `media.mediaFolder.defaultFolder` . `id` WHERE (((`media` . `private` = ? OR (`media` . `private` = ? AND `media.mediaFolder.defaultFolder` . `entity` = ? )))) AND (`media` . `id` IN (? , ? ))
Parameters :
[
b"\x02 0¨(çñA —O®8ͬÞÛ "
false
true
"product_download "
b"‹2Ö’¶jHÙ“£QœlI,7 "
b"™m\x01 í!\x1F J4‘%GÕ‚ºƒu "
]
SELECT `media` . `id` as `media.id` , `media` . `user_id` as `media.userId` , `media` . `media_folder_id` as `media.mediaFolderId` , `media` . `mime_type` as `media.mimeType` , `media` . `file_extension` as `media.fileExtension` , `media` . `uploaded_at` as `media.uploadedAt` , `media` . `file_name` as `media.fileName` , `media` . `file_size` as `media.fileSize` , `media` . `media_type` as `media.mediaTypeRaw` , `media` . `meta_data` as `media.metaData` , `media` . `config` as `media.config` , `media` . `path` as `media.path` , `media` . `private` as `media.private` , `media` . `thumbnails_ro` as `media.thumbnailsRo` , `media` . `file_hash` as `media.fileHash` , `media` . `created_at` as `media.createdAt` , `media` . `updated_at` as `media.updatedAt` , `media.translation.title` , `media.translation.title` as `media.title` , `media.translation.alt` , `media.translation.alt` as `media.alt` , `media.translation.customFields` , `media.translation.customFields` as `media.customFields` FROM `media` LEFT JOIN `media_folder` `media.mediaFolder` ON `media` . `media_folder_id` = `media.mediaFolder` . `id` LEFT JOIN (SELECT `media.translation` . `media_id` , `media.translation` . `alt` as `media.translation.alt` , `media.translation` . `title` as `media.translation.title` , `media.translation` . `custom_fields` as `media.translation.customFields` FROM `media_translation` `media.translation` WHERE `media.translation` . `language_id` = 0x0230A828E7F14120974FAE38CDACDEDB ) `media.media_translation` ON `media.media_translation` . `media_id` = `media` . `id` LEFT JOIN `media_default_folder` `media.mediaFolder.defaultFolder` ON `media.mediaFolder` . `default_folder_id` = `media.mediaFolder.defaultFolder` . `id` WHERE (((`media` . `private` = 0 OR (`media` . `private` = 1 AND `media.mediaFolder.defaultFolder` . `entity` = 'product_download' )))) AND (`media` . `id` IN (0x8B32D692B66A48D993A3519C6C492C37 , 0x996D01ED211F4A34912547D582BA8375 ));
Copy
73
0.53 ms
SELECT LOWER (HEX (language . id )) AS array_key , LOWER (HEX (language . id )) AS id , locale . code , parentLocale . code AS parentCode , LOWER (HEX (language . parent_id )) parentId FROM language LEFT JOIN locale locale ON language . translation_code_id = locale . id LEFT JOIN language parentLanguage ON language . parent_id = parentLanguage . id LEFT JOIN locale parentLocale ON parentLanguage . translation_code_id = parentLocale . id
SELECT LOWER (HEX (language . id )) AS array_key , LOWER (HEX (language . id )) AS id , locale . code , parentLocale . code AS parentCode , LOWER (HEX (language . parent_id )) parentId FROM language LEFT JOIN locale locale ON language . translation_code_id = locale . id LEFT JOIN language parentLanguage ON language . parent_id = parentLanguage . id LEFT JOIN locale parentLocale ON parentLanguage . translation_code_id = parentLocale . id ;
Copy
74
0.35 ms
SELECT LOWER (HEX (id )) FROM snippet_set WHERE iso = ?
SELECT LOWER (HEX (id )) FROM snippet_set WHERE iso = 'de-DE' ;
Copy
75
0.21 ms
SELECT iso FROM snippet_set WHERE id = ?
Parameters :
[
b"o\x03 ˆ¼×ËC`¶{AÝPùU\x17 "
]
SELECT iso FROM snippet_set WHERE id = 0x6F0388BCD7CB4360B67B41DD50F95517 ;
Copy
76
0.37 ms
SELECT LOWER (HEX (theme . id )) themeId , theme . technical_name as themeName , parentTheme . technical_name as parentThemeName , LOWER (HEX (parentTheme . parent_theme_id )) as grandParentThemeId
FROM sales_channel
LEFT JOIN theme_sales_channel ON sales_channel . id = theme_sales_channel . sales_channel_id
LEFT JOIN theme ON theme_sales_channel . theme_id = theme . id
LEFT JOIN theme AS parentTheme ON parentTheme . id = theme . parent_theme_id
WHERE sales_channel . id = ?
Parameters :
[
b">{k'Ô\x1E O‡!¼GnÏMj "
]
SELECT LOWER (HEX (theme . id )) themeId , theme . technical_name as themeName , parentTheme . technical_name as parentThemeName , LOWER (HEX (parentTheme . parent_theme_id )) as grandParentThemeId
FROM sales_channel
LEFT JOIN theme_sales_channel ON sales_channel . id = theme_sales_channel . sales_channel_id
LEFT JOIN theme ON theme_sales_channel . theme_id = theme . id
LEFT JOIN theme AS parentTheme ON parentTheme . id = theme . parent_theme_id
WHERE sales_channel . id = 0x3E7B6B27D41E4F87AD21BC476ECF4D6A
;
Copy
77
0.25 ms
SELECT `base_class` AS `baseClass` , `author`
FROM `plugin`
SELECT `base_class` AS `baseClass` , `author`
FROM `plugin`
;
Copy
78
0.84 ms
SELECT translation_key , value FROM snippet WHERE snippet_set_id = ?
Parameters :
[
b"o\x03 ˆ¼×ËC`¶{AÝPùU\x17 "
]
SELECT translation_key , value FROM snippet WHERE snippet_set_id = 0x6F0388BCD7CB4360B67B41DD50F95517 ;
Copy
79
0.67 ms
SELECT `theme` . `id` as `theme.id` , `theme` . `technical_name` as `theme.technicalName` , `theme` . `name` as `theme.name` , `theme` . `author` as `theme.author` , `theme` . `preview_media_id` as `theme.previewMediaId` , `theme` . `parent_theme_id` as `theme.parentThemeId` , `theme` . `theme_json` as `theme.themeJson` , `theme` . `base_config` as `theme.baseConfig` , `theme` . `config_values` as `theme.configValues` , `theme` . `active` as `theme.active` , `theme` . `created_at` as `theme.createdAt` , `theme` . `updated_at` as `theme.updatedAt` , `theme.translation.description` , `theme.translation.description` as `theme.description` , `theme.translation.labels` , `theme.translation.labels` as `theme.labels` , `theme.translation.helpTexts` , `theme.translation.helpTexts` as `theme.helpTexts` , `theme.translation.customFields` , `theme.translation.customFields` as `theme.customFields` FROM `theme` LEFT JOIN (SELECT `theme.translation` . `theme_id` , `theme.translation` . `description` as `theme.translation.description` , `theme.translation` . `labels` as `theme.translation.labels` , `theme.translation` . `help_texts` as `theme.translation.helpTexts` , `theme.translation` . `custom_fields` as `theme.translation.customFields` FROM `theme_translation` `theme.translation` WHERE `theme.translation` . `language_id` = ? ) `theme.theme_translation` ON `theme.theme_translation` . `theme_id` = `theme` . `id` WHERE `theme` . `id` IN (? )
Parameters :
[
b"\x02 0¨(çñA —O®8ͬÞÛ "
b"`œl9<š@]Œêö\x05 ‡À;+ "
]
SELECT `theme` . `id` as `theme.id` , `theme` . `technical_name` as `theme.technicalName` , `theme` . `name` as `theme.name` , `theme` . `author` as `theme.author` , `theme` . `preview_media_id` as `theme.previewMediaId` , `theme` . `parent_theme_id` as `theme.parentThemeId` , `theme` . `theme_json` as `theme.themeJson` , `theme` . `base_config` as `theme.baseConfig` , `theme` . `config_values` as `theme.configValues` , `theme` . `active` as `theme.active` , `theme` . `created_at` as `theme.createdAt` , `theme` . `updated_at` as `theme.updatedAt` , `theme.translation.description` , `theme.translation.description` as `theme.description` , `theme.translation.labels` , `theme.translation.labels` as `theme.labels` , `theme.translation.helpTexts` , `theme.translation.helpTexts` as `theme.helpTexts` , `theme.translation.customFields` , `theme.translation.customFields` as `theme.customFields` FROM `theme` LEFT JOIN (SELECT `theme.translation` . `theme_id` , `theme.translation` . `description` as `theme.translation.description` , `theme.translation` . `labels` as `theme.translation.labels` , `theme.translation` . `help_texts` as `theme.translation.helpTexts` , `theme.translation` . `custom_fields` as `theme.translation.customFields` FROM `theme_translation` `theme.translation` WHERE `theme.translation` . `language_id` = 0x0230A828E7F14120974FAE38CDACDEDB ) `theme.theme_translation` ON `theme.theme_translation` . `theme_id` = `theme` . `id` WHERE `theme` . `id` IN (0x609C6C393C9A405D8CEAF60587C03B2B );
Copy
80
0.65 ms
SELECT `theme` . `id` as `theme.id` , `theme` . `technical_name` as `theme.technicalName` , `theme` . `name` as `theme.name` , `theme` . `author` as `theme.author` , `theme` . `preview_media_id` as `theme.previewMediaId` , `theme` . `parent_theme_id` as `theme.parentThemeId` , `theme` . `theme_json` as `theme.themeJson` , `theme` . `base_config` as `theme.baseConfig` , `theme` . `config_values` as `theme.configValues` , `theme` . `active` as `theme.active` , `theme` . `created_at` as `theme.createdAt` , `theme` . `updated_at` as `theme.updatedAt` , `theme.translation.description` , `theme.translation.description` as `theme.description` , `theme.translation.labels` , `theme.translation.labels` as `theme.labels` , `theme.translation.helpTexts` , `theme.translation.helpTexts` as `theme.helpTexts` , `theme.translation.customFields` , `theme.translation.customFields` as `theme.customFields` FROM `theme` LEFT JOIN (SELECT `theme.translation` . `theme_id` , `theme.translation` . `description` as `theme.translation.description` , `theme.translation` . `labels` as `theme.translation.labels` , `theme.translation` . `help_texts` as `theme.translation.helpTexts` , `theme.translation` . `custom_fields` as `theme.translation.customFields` FROM `theme_translation` `theme.translation` WHERE `theme.translation` . `language_id` = ? ) `theme.theme_translation` ON `theme.theme_translation` . `theme_id` = `theme` . `id`
Parameters :
[
b"\x02 0¨(çñA —O®8ͬÞÛ "
]
SELECT `theme` . `id` as `theme.id` , `theme` . `technical_name` as `theme.technicalName` , `theme` . `name` as `theme.name` , `theme` . `author` as `theme.author` , `theme` . `preview_media_id` as `theme.previewMediaId` , `theme` . `parent_theme_id` as `theme.parentThemeId` , `theme` . `theme_json` as `theme.themeJson` , `theme` . `base_config` as `theme.baseConfig` , `theme` . `config_values` as `theme.configValues` , `theme` . `active` as `theme.active` , `theme` . `created_at` as `theme.createdAt` , `theme` . `updated_at` as `theme.updatedAt` , `theme.translation.description` , `theme.translation.description` as `theme.description` , `theme.translation.labels` , `theme.translation.labels` as `theme.labels` , `theme.translation.helpTexts` , `theme.translation.helpTexts` as `theme.helpTexts` , `theme.translation.customFields` , `theme.translation.customFields` as `theme.customFields` FROM `theme` LEFT JOIN (SELECT `theme.translation` . `theme_id` , `theme.translation` . `description` as `theme.translation.description` , `theme.translation` . `labels` as `theme.translation.labels` , `theme.translation` . `help_texts` as `theme.translation.helpTexts` , `theme.translation` . `custom_fields` as `theme.translation.customFields` FROM `theme_translation` `theme.translation` WHERE `theme.translation` . `language_id` = 0x0230A828E7F14120974FAE38CDACDEDB ) `theme.theme_translation` ON `theme.theme_translation` . `theme_id` = `theme` . `id` ;
Copy
81
1.00 ms
SELECT `media` . `id` as `media.id` , `media` . `user_id` as `media.userId` , `media` . `media_folder_id` as `media.mediaFolderId` , `media` . `mime_type` as `media.mimeType` , `media` . `file_extension` as `media.fileExtension` , `media` . `uploaded_at` as `media.uploadedAt` , `media` . `file_name` as `media.fileName` , `media` . `file_size` as `media.fileSize` , `media` . `media_type` as `media.mediaTypeRaw` , `media` . `meta_data` as `media.metaData` , `media` . `config` as `media.config` , `media` . `path` as `media.path` , `media` . `private` as `media.private` , `media` . `thumbnails_ro` as `media.thumbnailsRo` , `media` . `file_hash` as `media.fileHash` , `media` . `created_at` as `media.createdAt` , `media` . `updated_at` as `media.updatedAt` , `media.translation.title` , `media.translation.title` as `media.title` , `media.translation.alt` , `media.translation.alt` as `media.alt` , `media.translation.customFields` , `media.translation.customFields` as `media.customFields` FROM `media` LEFT JOIN `media_folder` `media.mediaFolder` ON `media` . `media_folder_id` = `media.mediaFolder` . `id` LEFT JOIN (SELECT `media.translation` . `media_id` , `media.translation` . `alt` as `media.translation.alt` , `media.translation` . `title` as `media.translation.title` , `media.translation` . `custom_fields` as `media.translation.customFields` FROM `media_translation` `media.translation` WHERE `media.translation` . `language_id` = ? ) `media.media_translation` ON `media.media_translation` . `media_id` = `media` . `id` LEFT JOIN `media_default_folder` `media.mediaFolder.defaultFolder` ON `media.mediaFolder` . `default_folder_id` = `media.mediaFolder.defaultFolder` . `id` WHERE (((`media` . `private` = ? OR (`media` . `private` = ? AND `media.mediaFolder.defaultFolder` . `entity` = ? )))) AND (`media` . `id` IN (? , ? , ? , ? ))
Parameters :
[
b"\x02 0¨(çñA —O®8ͬÞÛ "
false
true
"product_download "
b"‹2Ö’¶jHÙ“£QœlI,7 "
b"‹2Ö’¶jHÙ“£QœlI,7 "
b"‹2Ö’¶jHÙ“£QœlI,7 "
b"™m\x01 í!\x1F J4‘%GÕ‚ºƒu "
]
SELECT `media` . `id` as `media.id` , `media` . `user_id` as `media.userId` , `media` . `media_folder_id` as `media.mediaFolderId` , `media` . `mime_type` as `media.mimeType` , `media` . `file_extension` as `media.fileExtension` , `media` . `uploaded_at` as `media.uploadedAt` , `media` . `file_name` as `media.fileName` , `media` . `file_size` as `media.fileSize` , `media` . `media_type` as `media.mediaTypeRaw` , `media` . `meta_data` as `media.metaData` , `media` . `config` as `media.config` , `media` . `path` as `media.path` , `media` . `private` as `media.private` , `media` . `thumbnails_ro` as `media.thumbnailsRo` , `media` . `file_hash` as `media.fileHash` , `media` . `created_at` as `media.createdAt` , `media` . `updated_at` as `media.updatedAt` , `media.translation.title` , `media.translation.title` as `media.title` , `media.translation.alt` , `media.translation.alt` as `media.alt` , `media.translation.customFields` , `media.translation.customFields` as `media.customFields` FROM `media` LEFT JOIN `media_folder` `media.mediaFolder` ON `media` . `media_folder_id` = `media.mediaFolder` . `id` LEFT JOIN (SELECT `media.translation` . `media_id` , `media.translation` . `alt` as `media.translation.alt` , `media.translation` . `title` as `media.translation.title` , `media.translation` . `custom_fields` as `media.translation.customFields` FROM `media_translation` `media.translation` WHERE `media.translation` . `language_id` = 0x0230A828E7F14120974FAE38CDACDEDB ) `media.media_translation` ON `media.media_translation` . `media_id` = `media` . `id` LEFT JOIN `media_default_folder` `media.mediaFolder.defaultFolder` ON `media.mediaFolder` . `default_folder_id` = `media.mediaFolder.defaultFolder` . `id` WHERE (((`media` . `private` = 0 OR (`media` . `private` = 1 AND `media.mediaFolder.defaultFolder` . `entity` = 'product_download' )))) AND (`media` . `id` IN (0x8B32D692B66A48D993A3519C6C492C37 , 0x8B32D692B66A48D993A3519C6C492C37 , 0x8B32D692B66A48D993A3519C6C492C37 , 0x996D01ED211F4A34912547D582BA8375 ));
Copy
82
1.05 ms
SELECT `category` . `id` as `category.id` , `category` . `version_id` as `category.versionId` , `category` . `parent_id` as `category.parentId` , `category` . `parent_version_id` as `category.parentVersionId` , `category` . `after_category_id` as `category.afterCategoryId` , `category` . `after_category_version_id` as `category.afterCategoryVersionId` , `category` . `media_id` as `category.mediaId` , `category` . `display_nested_products` as `category.displayNestedProducts` , `category` . `auto_increment` as `category.autoIncrement` , `category` . `level` as `category.level` , `category` . `path` as `category.path` , `category` . `child_count` as `category.childCount` , `category` . `type` as `category.type` , `category` . `product_assignment_type` as `category.productAssignmentType` , `category` . `visible` as `category.visible` , `category` . `active` as `category.active` , `category` . `cms_page_id` as `category.cmsPageId` , `category` . `cms_page_version_id` as `category.cmsPageVersionId` , `category` . `product_stream_id` as `category.productStreamId` , `category` . `custom_entity_type_id` as `category.customEntityTypeId` , `category` . `created_at` as `category.createdAt` , `category` . `updated_at` as `category.updatedAt` , `category.translation.name` , `category.translation.name` as `category.name` , `category.translation.breadcrumb` , `category.translation.breadcrumb` as `category.breadcrumb` , `category.translation.slotConfig` , `category.translation.slotConfig` as `category.slotConfig` , `category.translation.linkType` , `category.translation.linkType` as `category.linkType` , `category.translation.internalLink` , `category.translation.internalLink` as `category.internalLink` , `category.translation.externalLink` , `category.translation.externalLink` as `category.externalLink` , `category.translation.linkNewTab` , `category.translation.linkNewTab` as `category.linkNewTab` , `category.translation.description` , `category.translation.description` as `category.description` , `category.translation.metaTitle` , `category.translation.metaTitle` as `category.metaTitle` , `category.translation.metaDescription` , `category.translation.metaDescription` as `category.metaDescription` , `category.translation.keywords` , `category.translation.keywords` as `category.keywords` , `category.translation.customFields` , `category.translation.customFields` as `category.customFields` FROM `category` LEFT JOIN (SELECT `category.translation` . `category_id` , `category.translation` . `category_version_id` , `category.translation` . `breadcrumb` as `category.translation.breadcrumb` , `category.translation` . `name` as `category.translation.name` , `category.translation` . `custom_fields` as `category.translation.customFields` , `category.translation` . `slot_config` as `category.translation.slotConfig` , `category.translation` . `link_type` as `category.translation.linkType` , `category.translation` . `internal_link` as `category.translation.internalLink` , `category.translation` . `external_link` as `category.translation.externalLink` , `category.translation` . `link_new_tab` as `category.translation.linkNewTab` , `category.translation` . `description` as `category.translation.description` , `category.translation` . `meta_title` as `category.translation.metaTitle` , `category.translation` . `meta_description` as `category.translation.metaDescription` , `category.translation` . `keywords` as `category.translation.keywords` FROM `category_translation` `category.translation` WHERE `category.translation` . `language_id` = ? ) `category.category_translation` ON `category.category_translation` . `category_id` = `category` . `id` AND `category.category_translation` . `category_version_id` = `category` . `version_id` WHERE (`category` . `version_id` = ? ) AND (`category` . `id` IN (? ))
Parameters :
[
b"\x02 0¨(çñA —O®8ͬÞÛ "
b"\x0F ©\x1C ãéjK¾KÙÎu,4% "
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02 (bH "
]
SELECT
`category` . `id` as `category.id` ,
`category` . `version_id` as `category.versionId` ,
`category` . `parent_id` as `category.parentId` ,
`category` . `parent_version_id` as `category.parentVersionId` ,
`category` . `after_category_id` as `category.afterCategoryId` ,
`category` . `after_category_version_id` as `category.afterCategoryVersionId` ,
`category` . `media_id` as `category.mediaId` ,
`category` . `display_nested_products` as `category.displayNestedProducts` ,
`category` . `auto_increment` as `category.autoIncrement` ,
`category` . `level` as `category.level` ,
`category` . `path` as `category.path` ,
`category` . `child_count` as `category.childCount` ,
`category` . `type` as `category.type` ,
`category` . `product_assignment_type` as `category.productAssignmentType` ,
`category` . `visible` as `category.visible` ,
`category` . `active` as `category.active` ,
`category` . `cms_page_id` as `category.cmsPageId` ,
`category` . `cms_page_version_id` as `category.cmsPageVersionId` ,
`category` . `product_stream_id` as `category.productStreamId` ,
`category` . `custom_entity_type_id` as `category.customEntityTypeId` ,
`category` . `created_at` as `category.createdAt` ,
`category` . `updated_at` as `category.updatedAt` ,
`category.translation.name` ,
`category.translation.name` as `category.name` ,
`category.translation.breadcrumb` ,
`category.translation.breadcrumb` as `category.breadcrumb` ,
`category.translation.slotConfig` ,
`category.translation.slotConfig` as `category.slotConfig` ,
`category.translation.linkType` ,
`category.translation.linkType` as `category.linkType` ,
`category.translation.internalLink` ,
`category.translation.internalLink` as `category.internalLink` ,
`category.translation.externalLink` ,
`category.translation.externalLink` as `category.externalLink` ,
`category.translation.linkNewTab` ,
`category.translation.linkNewTab` as `category.linkNewTab` ,
`category.translation.description` ,
`category.translation.description` as `category.description` ,
`category.translation.metaTitle` ,
`category.translation.metaTitle` as `category.metaTitle` ,
`category.translation.metaDescription` ,
`category.translation.metaDescription` as `category.metaDescription` ,
`category.translation.keywords` ,
`category.translation.keywords` as `category.keywords` ,
`category.translation.customFields` ,
`category.translation.customFields` as `category.customFields`
FROM
`category`
LEFT JOIN (
SELECT
`category.translation` . `category_id` ,
`category.translation` . `category_version_id` ,
`category.translation` . `breadcrumb` as `category.translation.breadcrumb` ,
`category.translation` . `name` as `category.translation.name` ,
`category.translation` . `custom_fields` as `category.translation.customFields` ,
`category.translation` . `slot_config` as `category.translation.slotConfig` ,
`category.translation` . `link_type` as `category.translation.linkType` ,
`category.translation` . `internal_link` as `category.translation.internalLink` ,
`category.translation` . `external_link` as `category.translation.externalLink` ,
`category.translation` . `link_new_tab` as `category.translation.linkNewTab` ,
`category.translation` . `description` as `category.translation.description` ,
`category.translation` . `meta_title` as `category.translation.metaTitle` ,
`category.translation` . `meta_description` as `category.translation.metaDescription` ,
`category.translation` . `keywords` as `category.translation.keywords`
FROM
`category_translation` `category.translation`
WHERE
`category.translation` . `language_id` = ?
) `category.category_translation` ON `category.category_translation` . `category_id` = `category` . `id`
AND `category.category_translation` . `category_version_id` = `category` . `version_id`
WHERE
(`category` . `version_id` = ? )
AND (
`category` . `id` IN (? )
)
Copy
SELECT `category` . `id` as `category.id` , `category` . `version_id` as `category.versionId` , `category` . `parent_id` as `category.parentId` , `category` . `parent_version_id` as `category.parentVersionId` , `category` . `after_category_id` as `category.afterCategoryId` , `category` . `after_category_version_id` as `category.afterCategoryVersionId` , `category` . `media_id` as `category.mediaId` , `category` . `display_nested_products` as `category.displayNestedProducts` , `category` . `auto_increment` as `category.autoIncrement` , `category` . `level` as `category.level` , `category` . `path` as `category.path` , `category` . `child_count` as `category.childCount` , `category` . `type` as `category.type` , `category` . `product_assignment_type` as `category.productAssignmentType` , `category` . `visible` as `category.visible` , `category` . `active` as `category.active` , `category` . `cms_page_id` as `category.cmsPageId` , `category` . `cms_page_version_id` as `category.cmsPageVersionId` , `category` . `product_stream_id` as `category.productStreamId` , `category` . `custom_entity_type_id` as `category.customEntityTypeId` , `category` . `created_at` as `category.createdAt` , `category` . `updated_at` as `category.updatedAt` , `category.translation.name` , `category.translation.name` as `category.name` , `category.translation.breadcrumb` , `category.translation.breadcrumb` as `category.breadcrumb` , `category.translation.slotConfig` , `category.translation.slotConfig` as `category.slotConfig` , `category.translation.linkType` , `category.translation.linkType` as `category.linkType` , `category.translation.internalLink` , `category.translation.internalLink` as `category.internalLink` , `category.translation.externalLink` , `category.translation.externalLink` as `category.externalLink` , `category.translation.linkNewTab` , `category.translation.linkNewTab` as `category.linkNewTab` , `category.translation.description` , `category.translation.description` as `category.description` , `category.translation.metaTitle` , `category.translation.metaTitle` as `category.metaTitle` , `category.translation.metaDescription` , `category.translation.metaDescription` as `category.metaDescription` , `category.translation.keywords` , `category.translation.keywords` as `category.keywords` , `category.translation.customFields` , `category.translation.customFields` as `category.customFields` FROM `category` LEFT JOIN (SELECT `category.translation` . `category_id` , `category.translation` . `category_version_id` , `category.translation` . `breadcrumb` as `category.translation.breadcrumb` , `category.translation` . `name` as `category.translation.name` , `category.translation` . `custom_fields` as `category.translation.customFields` , `category.translation` . `slot_config` as `category.translation.slotConfig` , `category.translation` . `link_type` as `category.translation.linkType` , `category.translation` . `internal_link` as `category.translation.internalLink` , `category.translation` . `external_link` as `category.translation.externalLink` , `category.translation` . `link_new_tab` as `category.translation.linkNewTab` , `category.translation` . `description` as `category.translation.description` , `category.translation` . `meta_title` as `category.translation.metaTitle` , `category.translation` . `meta_description` as `category.translation.metaDescription` , `category.translation` . `keywords` as `category.translation.keywords` FROM `category_translation` `category.translation` WHERE `category.translation` . `language_id` = 0x0230A828E7F14120974FAE38CDACDEDB ) `category.category_translation` ON `category.category_translation` . `category_id` = `category` . `id` AND `category.category_translation` . `category_version_id` = `category` . `version_id` WHERE (`category` . `version_id` = 0x0FA91CE3E96A4BC2BE4BD9CE752C3425 ) AND (`category` . `id` IN ('\0\0\0\0\0\0\0\0\0\0\0\0(bH' ));
Copy
83
1.05 ms
SELECT `category` . `id` as `category.id` , `category` . `version_id` as `category.versionId` , `category` . `parent_id` as `category.parentId` , `category` . `parent_version_id` as `category.parentVersionId` , `category` . `after_category_id` as `category.afterCategoryId` , `category` . `after_category_version_id` as `category.afterCategoryVersionId` , `category` . `media_id` as `category.mediaId` , `category` . `display_nested_products` as `category.displayNestedProducts` , `category` . `auto_increment` as `category.autoIncrement` , `category` . `level` as `category.level` , `category` . `path` as `category.path` , `category` . `child_count` as `category.childCount` , `category` . `type` as `category.type` , `category` . `product_assignment_type` as `category.productAssignmentType` , `category` . `visible` as `category.visible` , `category` . `active` as `category.active` , `category` . `cms_page_id` as `category.cmsPageId` , `category` . `cms_page_version_id` as `category.cmsPageVersionId` , `category` . `product_stream_id` as `category.productStreamId` , `category` . `custom_entity_type_id` as `category.customEntityTypeId` , `category` . `created_at` as `category.createdAt` , `category` . `updated_at` as `category.updatedAt` , `category.translation.name` , `category.translation.name` as `category.name` , `category.translation.breadcrumb` , `category.translation.breadcrumb` as `category.breadcrumb` , `category.translation.slotConfig` , `category.translation.slotConfig` as `category.slotConfig` , `category.translation.linkType` , `category.translation.linkType` as `category.linkType` , `category.translation.internalLink` , `category.translation.internalLink` as `category.internalLink` , `category.translation.externalLink` , `category.translation.externalLink` as `category.externalLink` , `category.translation.linkNewTab` , `category.translation.linkNewTab` as `category.linkNewTab` , `category.translation.description` , `category.translation.description` as `category.description` , `category.translation.metaTitle` , `category.translation.metaTitle` as `category.metaTitle` , `category.translation.metaDescription` , `category.translation.metaDescription` as `category.metaDescription` , `category.translation.keywords` , `category.translation.keywords` as `category.keywords` , `category.translation.customFields` , `category.translation.customFields` as `category.customFields` FROM `category` LEFT JOIN (SELECT `category.translation` . `category_id` , `category.translation` . `category_version_id` , `category.translation` . `breadcrumb` as `category.translation.breadcrumb` , `category.translation` . `name` as `category.translation.name` , `category.translation` . `custom_fields` as `category.translation.customFields` , `category.translation` . `slot_config` as `category.translation.slotConfig` , `category.translation` . `link_type` as `category.translation.linkType` , `category.translation` . `internal_link` as `category.translation.internalLink` , `category.translation` . `external_link` as `category.translation.externalLink` , `category.translation` . `link_new_tab` as `category.translation.linkNewTab` , `category.translation` . `description` as `category.translation.description` , `category.translation` . `meta_title` as `category.translation.metaTitle` , `category.translation` . `meta_description` as `category.translation.metaDescription` , `category.translation` . `keywords` as `category.translation.keywords` FROM `category_translation` `category.translation` WHERE `category.translation` . `language_id` = ? ) `category.category_translation` ON `category.category_translation` . `category_id` = `category` . `id` AND `category.category_translation` . `category_version_id` = `category` . `version_id` WHERE (`category` . `version_id` = ? ) AND (`category` . `id` IN (? ))
Parameters :
[
b"\x02 0¨(çñA —O®8ͬÞÛ "
b"\x0F ©\x1C ãéjK¾KÙÎu,4% "
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02 (bH "
]
SELECT
`category` . `id` as `category.id` ,
`category` . `version_id` as `category.versionId` ,
`category` . `parent_id` as `category.parentId` ,
`category` . `parent_version_id` as `category.parentVersionId` ,
`category` . `after_category_id` as `category.afterCategoryId` ,
`category` . `after_category_version_id` as `category.afterCategoryVersionId` ,
`category` . `media_id` as `category.mediaId` ,
`category` . `display_nested_products` as `category.displayNestedProducts` ,
`category` . `auto_increment` as `category.autoIncrement` ,
`category` . `level` as `category.level` ,
`category` . `path` as `category.path` ,
`category` . `child_count` as `category.childCount` ,
`category` . `type` as `category.type` ,
`category` . `product_assignment_type` as `category.productAssignmentType` ,
`category` . `visible` as `category.visible` ,
`category` . `active` as `category.active` ,
`category` . `cms_page_id` as `category.cmsPageId` ,
`category` . `cms_page_version_id` as `category.cmsPageVersionId` ,
`category` . `product_stream_id` as `category.productStreamId` ,
`category` . `custom_entity_type_id` as `category.customEntityTypeId` ,
`category` . `created_at` as `category.createdAt` ,
`category` . `updated_at` as `category.updatedAt` ,
`category.translation.name` ,
`category.translation.name` as `category.name` ,
`category.translation.breadcrumb` ,
`category.translation.breadcrumb` as `category.breadcrumb` ,
`category.translation.slotConfig` ,
`category.translation.slotConfig` as `category.slotConfig` ,
`category.translation.linkType` ,
`category.translation.linkType` as `category.linkType` ,
`category.translation.internalLink` ,
`category.translation.internalLink` as `category.internalLink` ,
`category.translation.externalLink` ,
`category.translation.externalLink` as `category.externalLink` ,
`category.translation.linkNewTab` ,
`category.translation.linkNewTab` as `category.linkNewTab` ,
`category.translation.description` ,
`category.translation.description` as `category.description` ,
`category.translation.metaTitle` ,
`category.translation.metaTitle` as `category.metaTitle` ,
`category.translation.metaDescription` ,
`category.translation.metaDescription` as `category.metaDescription` ,
`category.translation.keywords` ,
`category.translation.keywords` as `category.keywords` ,
`category.translation.customFields` ,
`category.translation.customFields` as `category.customFields`
FROM
`category`
LEFT JOIN (
SELECT
`category.translation` . `category_id` ,
`category.translation` . `category_version_id` ,
`category.translation` . `breadcrumb` as `category.translation.breadcrumb` ,
`category.translation` . `name` as `category.translation.name` ,
`category.translation` . `custom_fields` as `category.translation.customFields` ,
`category.translation` . `slot_config` as `category.translation.slotConfig` ,
`category.translation` . `link_type` as `category.translation.linkType` ,
`category.translation` . `internal_link` as `category.translation.internalLink` ,
`category.translation` . `external_link` as `category.translation.externalLink` ,
`category.translation` . `link_new_tab` as `category.translation.linkNewTab` ,
`category.translation` . `description` as `category.translation.description` ,
`category.translation` . `meta_title` as `category.translation.metaTitle` ,
`category.translation` . `meta_description` as `category.translation.metaDescription` ,
`category.translation` . `keywords` as `category.translation.keywords`
FROM
`category_translation` `category.translation`
WHERE
`category.translation` . `language_id` = ?
) `category.category_translation` ON `category.category_translation` . `category_id` = `category` . `id`
AND `category.category_translation` . `category_version_id` = `category` . `version_id`
WHERE
(`category` . `version_id` = ? )
AND (
`category` . `id` IN (? )
)
Copy
SELECT `category` . `id` as `category.id` , `category` . `version_id` as `category.versionId` , `category` . `parent_id` as `category.parentId` , `category` . `parent_version_id` as `category.parentVersionId` , `category` . `after_category_id` as `category.afterCategoryId` , `category` . `after_category_version_id` as `category.afterCategoryVersionId` , `category` . `media_id` as `category.mediaId` , `category` . `display_nested_products` as `category.displayNestedProducts` , `category` . `auto_increment` as `category.autoIncrement` , `category` . `level` as `category.level` , `category` . `path` as `category.path` , `category` . `child_count` as `category.childCount` , `category` . `type` as `category.type` , `category` . `product_assignment_type` as `category.productAssignmentType` , `category` . `visible` as `category.visible` , `category` . `active` as `category.active` , `category` . `cms_page_id` as `category.cmsPageId` , `category` . `cms_page_version_id` as `category.cmsPageVersionId` , `category` . `product_stream_id` as `category.productStreamId` , `category` . `custom_entity_type_id` as `category.customEntityTypeId` , `category` . `created_at` as `category.createdAt` , `category` . `updated_at` as `category.updatedAt` , `category.translation.name` , `category.translation.name` as `category.name` , `category.translation.breadcrumb` , `category.translation.breadcrumb` as `category.breadcrumb` , `category.translation.slotConfig` , `category.translation.slotConfig` as `category.slotConfig` , `category.translation.linkType` , `category.translation.linkType` as `category.linkType` , `category.translation.internalLink` , `category.translation.internalLink` as `category.internalLink` , `category.translation.externalLink` , `category.translation.externalLink` as `category.externalLink` , `category.translation.linkNewTab` , `category.translation.linkNewTab` as `category.linkNewTab` , `category.translation.description` , `category.translation.description` as `category.description` , `category.translation.metaTitle` , `category.translation.metaTitle` as `category.metaTitle` , `category.translation.metaDescription` , `category.translation.metaDescription` as `category.metaDescription` , `category.translation.keywords` , `category.translation.keywords` as `category.keywords` , `category.translation.customFields` , `category.translation.customFields` as `category.customFields` FROM `category` LEFT JOIN (SELECT `category.translation` . `category_id` , `category.translation` . `category_version_id` , `category.translation` . `breadcrumb` as `category.translation.breadcrumb` , `category.translation` . `name` as `category.translation.name` , `category.translation` . `custom_fields` as `category.translation.customFields` , `category.translation` . `slot_config` as `category.translation.slotConfig` , `category.translation` . `link_type` as `category.translation.linkType` , `category.translation` . `internal_link` as `category.translation.internalLink` , `category.translation` . `external_link` as `category.translation.externalLink` , `category.translation` . `link_new_tab` as `category.translation.linkNewTab` , `category.translation` . `description` as `category.translation.description` , `category.translation` . `meta_title` as `category.translation.metaTitle` , `category.translation` . `meta_description` as `category.translation.metaDescription` , `category.translation` . `keywords` as `category.translation.keywords` FROM `category_translation` `category.translation` WHERE `category.translation` . `language_id` = 0x0230A828E7F14120974FAE38CDACDEDB ) `category.category_translation` ON `category.category_translation` . `category_id` = `category` . `id` AND `category.category_translation` . `category_version_id` = `category` . `version_id` WHERE (`category` . `version_id` = 0x0FA91CE3E96A4BC2BE4BD9CE752C3425 ) AND (`category` . `id` IN ('\0\0\0\0\0\0\0\0\0\0\0\0(bH' ));
Copy
84
0.73 ms
SELECT `cms_page` . `id` as `cms_page.id` , `cms_page` . `version_id` as `cms_page.versionId` , `cms_page` . `type` as `cms_page.type` , `cms_page` . `entity` as `cms_page.entity` , `cms_page` . `css_class` as `cms_page.cssClass` , `cms_page` . `config` as `cms_page.config` , `cms_page` . `preview_media_id` as `cms_page.previewMediaId` , `cms_page` . `locked` as `cms_page.locked` , `cms_page` . `created_at` as `cms_page.createdAt` , `cms_page` . `updated_at` as `cms_page.updatedAt` , `cms_page.translation.name` , `cms_page.translation.name` as `cms_page.name` , `cms_page.translation.customFields` , `cms_page.translation.customFields` as `cms_page.customFields` FROM `cms_page` LEFT JOIN (SELECT `cms_page.translation` . `cms_page_id` , `cms_page.translation` . `cms_page_version_id` , `cms_page.translation` . `name` as `cms_page.translation.name` , `cms_page.translation` . `custom_fields` as `cms_page.translation.customFields` FROM `cms_page_translation` `cms_page.translation` WHERE `cms_page.translation` . `language_id` = ? ) `cms_page.cms_page_translation` ON `cms_page.cms_page_translation` . `cms_page_id` = `cms_page` . `id` AND `cms_page.cms_page_translation` . `cms_page_version_id` = `cms_page` . `version_id` WHERE (`cms_page` . `version_id` = ? ) AND (`cms_page` . `id` IN (? ))
Parameters :
[
b"\x02 0¨(çñA —O®8ͬÞÛ "
b"\x0F ©\x1C ãéjK¾KÙÎu,4% "
b"""
›f\n
Lü}Ju³¥:ÿz70¹
"""
]
SELECT `cms_page` . `id` as `cms_page.id` , `cms_page` . `version_id` as `cms_page.versionId` , `cms_page` . `type` as `cms_page.type` , `cms_page` . `entity` as `cms_page.entity` , `cms_page` . `css_class` as `cms_page.cssClass` , `cms_page` . `config` as `cms_page.config` , `cms_page` . `preview_media_id` as `cms_page.previewMediaId` , `cms_page` . `locked` as `cms_page.locked` , `cms_page` . `created_at` as `cms_page.createdAt` , `cms_page` . `updated_at` as `cms_page.updatedAt` , `cms_page.translation.name` , `cms_page.translation.name` as `cms_page.name` , `cms_page.translation.customFields` , `cms_page.translation.customFields` as `cms_page.customFields` FROM `cms_page` LEFT JOIN (SELECT `cms_page.translation` . `cms_page_id` , `cms_page.translation` . `cms_page_version_id` , `cms_page.translation` . `name` as `cms_page.translation.name` , `cms_page.translation` . `custom_fields` as `cms_page.translation.customFields` FROM `cms_page_translation` `cms_page.translation` WHERE `cms_page.translation` . `language_id` = 0x0230A828E7F14120974FAE38CDACDEDB ) `cms_page.cms_page_translation` ON `cms_page.cms_page_translation` . `cms_page_id` = `cms_page` . `id` AND `cms_page.cms_page_translation` . `cms_page_version_id` = `cms_page` . `version_id` WHERE (`cms_page` . `version_id` = 0x0FA91CE3E96A4BC2BE4BD9CE752C3425 ) AND (`cms_page` . `id` IN (0x9B660A4CFC7D4A75B3A53AFF7A3730B9 ));
Copy
85
0.99 ms
SELECT `cms_section` . `id` as `cms_section.id` , `cms_section` . `version_id` as `cms_section.versionId` , `cms_section` . `cms_page_version_id` as `cms_section.cmsPageVersionId` , `cms_section` . `position` as `cms_section.position` , `cms_section` . `type` as `cms_section.type` , `cms_section` . `locked` as `cms_section.locked` , `cms_section` . `name` as `cms_section.name` , `cms_section` . `sizing_mode` as `cms_section.sizingMode` , `cms_section` . `mobile_behavior` as `cms_section.mobileBehavior` , `cms_section` . `background_color` as `cms_section.backgroundColor` , `cms_section` . `background_media_id` as `cms_section.backgroundMediaId` , `cms_section` . `background_media_mode` as `cms_section.backgroundMediaMode` , `cms_section` . `css_class` as `cms_section.cssClass` , `cms_section` . `cms_page_id` as `cms_section.pageId` , `cms_section` . `visibility` as `cms_section.visibility` , `cms_section` . `custom_fields` as `cms_section.customFields` , `cms_section` . `created_at` as `cms_section.createdAt` , `cms_section` . `updated_at` as `cms_section.updatedAt` , `cms_section.backgroundMedia` . `id` as `cms_section.backgroundMedia.id` , `cms_section.backgroundMedia` . `user_id` as `cms_section.backgroundMedia.userId` , `cms_section.backgroundMedia` . `media_folder_id` as `cms_section.backgroundMedia.mediaFolderId` , `cms_section.backgroundMedia` . `mime_type` as `cms_section.backgroundMedia.mimeType` , `cms_section.backgroundMedia` . `file_extension` as `cms_section.backgroundMedia.fileExtension` , `cms_section.backgroundMedia` . `uploaded_at` as `cms_section.backgroundMedia.uploadedAt` , `cms_section.backgroundMedia` . `file_name` as `cms_section.backgroundMedia.fileName` , `cms_section.backgroundMedia` . `file_size` as `cms_section.backgroundMedia.fileSize` , `cms_section.backgroundMedia` . `media_type` as `cms_section.backgroundMedia.mediaTypeRaw` , `cms_section.backgroundMedia` . `meta_data` as `cms_section.backgroundMedia.metaData` , `cms_section.backgroundMedia` . `config` as `cms_section.backgroundMedia.config` , `cms_section.backgroundMedia` . `path` as `cms_section.backgroundMedia.path` , `cms_section.backgroundMedia` . `private` as `cms_section.backgroundMedia.private` , `cms_section.backgroundMedia` . `thumbnails_ro` as `cms_section.backgroundMedia.thumbnailsRo` , `cms_section.backgroundMedia` . `file_hash` as `cms_section.backgroundMedia.fileHash` , `cms_section.backgroundMedia` . `created_at` as `cms_section.backgroundMedia.createdAt` , `cms_section.backgroundMedia` . `updated_at` as `cms_section.backgroundMedia.updatedAt` , `cms_section.backgroundMedia.translation.title` , `cms_section.backgroundMedia.translation.title` as `cms_section.backgroundMedia.title` , `cms_section.backgroundMedia.translation.alt` , `cms_section.backgroundMedia.translation.alt` as `cms_section.backgroundMedia.alt` , `cms_section.backgroundMedia.translation.customFields` , `cms_section.backgroundMedia.translation.customFields` as `cms_section.backgroundMedia.customFields` FROM `cms_section` LEFT JOIN `media` `cms_section.backgroundMedia` ON `cms_section` . `background_media_id` = `cms_section.backgroundMedia` . `id` LEFT JOIN (SELECT `cms_section.backgroundMedia.translation` . `media_id` , `cms_section.backgroundMedia.translation` . `alt` as `cms_section.backgroundMedia.translation.alt` , `cms_section.backgroundMedia.translation` . `title` as `cms_section.backgroundMedia.translation.title` , `cms_section.backgroundMedia.translation` . `custom_fields` as `cms_section.backgroundMedia.translation.customFields` FROM `media_translation` `cms_section.backgroundMedia.translation` WHERE `cms_section.backgroundMedia.translation` . `language_id` = ? ) `cms_section.backgroundMedia.media_translation` ON `cms_section.backgroundMedia.media_translation` . `media_id` = `cms_section.backgroundMedia` . `id` WHERE (`cms_section` . `version_id` = ? ) AND (((`cms_section` . `cms_page_id` IN (? ))))
Parameters :
[
b"\x02 0¨(çñA —O®8ͬÞÛ "
b"\x0F ©\x1C ãéjK¾KÙÎu,4% "
b"""
›f\n
Lü}Ju³¥:ÿz70¹
"""
]
SELECT
`cms_section` . `id` as `cms_section.id` ,
`cms_section` . `version_id` as `cms_section.versionId` ,
`cms_section` . `cms_page_version_id` as `cms_section.cmsPageVersionId` ,
`cms_section` . `position` as `cms_section.position` ,
`cms_section` . `type` as `cms_section.type` ,
`cms_section` . `locked` as `cms_section.locked` ,
`cms_section` . `name` as `cms_section.name` ,
`cms_section` . `sizing_mode` as `cms_section.sizingMode` ,
`cms_section` . `mobile_behavior` as `cms_section.mobileBehavior` ,
`cms_section` . `background_color` as `cms_section.backgroundColor` ,
`cms_section` . `background_media_id` as `cms_section.backgroundMediaId` ,
`cms_section` . `background_media_mode` as `cms_section.backgroundMediaMode` ,
`cms_section` . `css_class` as `cms_section.cssClass` ,
`cms_section` . `cms_page_id` as `cms_section.pageId` ,
`cms_section` . `visibility` as `cms_section.visibility` ,
`cms_section` . `custom_fields` as `cms_section.customFields` ,
`cms_section` . `created_at` as `cms_section.createdAt` ,
`cms_section` . `updated_at` as `cms_section.updatedAt` ,
`cms_section.backgroundMedia` . `id` as `cms_section.backgroundMedia.id` ,
`cms_section.backgroundMedia` . `user_id` as `cms_section.backgroundMedia.userId` ,
`cms_section.backgroundMedia` . `media_folder_id` as `cms_section.backgroundMedia.mediaFolderId` ,
`cms_section.backgroundMedia` . `mime_type` as `cms_section.backgroundMedia.mimeType` ,
`cms_section.backgroundMedia` . `file_extension` as `cms_section.backgroundMedia.fileExtension` ,
`cms_section.backgroundMedia` . `uploaded_at` as `cms_section.backgroundMedia.uploadedAt` ,
`cms_section.backgroundMedia` . `file_name` as `cms_section.backgroundMedia.fileName` ,
`cms_section.backgroundMedia` . `file_size` as `cms_section.backgroundMedia.fileSize` ,
`cms_section.backgroundMedia` . `media_type` as `cms_section.backgroundMedia.mediaTypeRaw` ,
`cms_section.backgroundMedia` . `meta_data` as `cms_section.backgroundMedia.metaData` ,
`cms_section.backgroundMedia` . `config` as `cms_section.backgroundMedia.config` ,
`cms_section.backgroundMedia` . `path` as `cms_section.backgroundMedia.path` ,
`cms_section.backgroundMedia` . `private` as `cms_section.backgroundMedia.private` ,
`cms_section.backgroundMedia` . `thumbnails_ro` as `cms_section.backgroundMedia.thumbnailsRo` ,
`cms_section.backgroundMedia` . `file_hash` as `cms_section.backgroundMedia.fileHash` ,
`cms_section.backgroundMedia` . `created_at` as `cms_section.backgroundMedia.createdAt` ,
`cms_section.backgroundMedia` . `updated_at` as `cms_section.backgroundMedia.updatedAt` ,
`cms_section.backgroundMedia.translation.title` ,
`cms_section.backgroundMedia.translation.title` as `cms_section.backgroundMedia.title` ,
`cms_section.backgroundMedia.translation.alt` ,
`cms_section.backgroundMedia.translation.alt` as `cms_section.backgroundMedia.alt` ,
`cms_section.backgroundMedia.translation.customFields` ,
`cms_section.backgroundMedia.translation.customFields` as `cms_section.backgroundMedia.customFields`
FROM
`cms_section`
LEFT JOIN `media` `cms_section.backgroundMedia` ON `cms_section` . `background_media_id` = `cms_section.backgroundMedia` . `id`
LEFT JOIN (
SELECT
`cms_section.backgroundMedia.translation` . `media_id` ,
`cms_section.backgroundMedia.translation` . `alt` as `cms_section.backgroundMedia.translation.alt` ,
`cms_section.backgroundMedia.translation` . `title` as `cms_section.backgroundMedia.translation.title` ,
`cms_section.backgroundMedia.translation` . `custom_fields` as `cms_section.backgroundMedia.translation.customFields`
FROM
`media_translation` `cms_section.backgroundMedia.translation`
WHERE
`cms_section.backgroundMedia.translation` . `language_id` = ?
) `cms_section.backgroundMedia.media_translation` ON `cms_section.backgroundMedia.media_translation` . `media_id` = `cms_section.backgroundMedia` . `id`
WHERE
(`cms_section` . `version_id` = ? )
AND (
(
(
`cms_section` . `cms_page_id` IN (? )
)
)
)
Copy
SELECT `cms_section` . `id` as `cms_section.id` , `cms_section` . `version_id` as `cms_section.versionId` , `cms_section` . `cms_page_version_id` as `cms_section.cmsPageVersionId` , `cms_section` . `position` as `cms_section.position` , `cms_section` . `type` as `cms_section.type` , `cms_section` . `locked` as `cms_section.locked` , `cms_section` . `name` as `cms_section.name` , `cms_section` . `sizing_mode` as `cms_section.sizingMode` , `cms_section` . `mobile_behavior` as `cms_section.mobileBehavior` , `cms_section` . `background_color` as `cms_section.backgroundColor` , `cms_section` . `background_media_id` as `cms_section.backgroundMediaId` , `cms_section` . `background_media_mode` as `cms_section.backgroundMediaMode` , `cms_section` . `css_class` as `cms_section.cssClass` , `cms_section` . `cms_page_id` as `cms_section.pageId` , `cms_section` . `visibility` as `cms_section.visibility` , `cms_section` . `custom_fields` as `cms_section.customFields` , `cms_section` . `created_at` as `cms_section.createdAt` , `cms_section` . `updated_at` as `cms_section.updatedAt` , `cms_section.backgroundMedia` . `id` as `cms_section.backgroundMedia.id` , `cms_section.backgroundMedia` . `user_id` as `cms_section.backgroundMedia.userId` , `cms_section.backgroundMedia` . `media_folder_id` as `cms_section.backgroundMedia.mediaFolderId` , `cms_section.backgroundMedia` . `mime_type` as `cms_section.backgroundMedia.mimeType` , `cms_section.backgroundMedia` . `file_extension` as `cms_section.backgroundMedia.fileExtension` , `cms_section.backgroundMedia` . `uploaded_at` as `cms_section.backgroundMedia.uploadedAt` , `cms_section.backgroundMedia` . `file_name` as `cms_section.backgroundMedia.fileName` , `cms_section.backgroundMedia` . `file_size` as `cms_section.backgroundMedia.fileSize` , `cms_section.backgroundMedia` . `media_type` as `cms_section.backgroundMedia.mediaTypeRaw` , `cms_section.backgroundMedia` . `meta_data` as `cms_section.backgroundMedia.metaData` , `cms_section.backgroundMedia` . `config` as `cms_section.backgroundMedia.config` , `cms_section.backgroundMedia` . `path` as `cms_section.backgroundMedia.path` , `cms_section.backgroundMedia` . `private` as `cms_section.backgroundMedia.private` , `cms_section.backgroundMedia` . `thumbnails_ro` as `cms_section.backgroundMedia.thumbnailsRo` , `cms_section.backgroundMedia` . `file_hash` as `cms_section.backgroundMedia.fileHash` , `cms_section.backgroundMedia` . `created_at` as `cms_section.backgroundMedia.createdAt` , `cms_section.backgroundMedia` . `updated_at` as `cms_section.backgroundMedia.updatedAt` , `cms_section.backgroundMedia.translation.title` , `cms_section.backgroundMedia.translation.title` as `cms_section.backgroundMedia.title` , `cms_section.backgroundMedia.translation.alt` , `cms_section.backgroundMedia.translation.alt` as `cms_section.backgroundMedia.alt` , `cms_section.backgroundMedia.translation.customFields` , `cms_section.backgroundMedia.translation.customFields` as `cms_section.backgroundMedia.customFields` FROM `cms_section` LEFT JOIN `media` `cms_section.backgroundMedia` ON `cms_section` . `background_media_id` = `cms_section.backgroundMedia` . `id` LEFT JOIN (SELECT `cms_section.backgroundMedia.translation` . `media_id` , `cms_section.backgroundMedia.translation` . `alt` as `cms_section.backgroundMedia.translation.alt` , `cms_section.backgroundMedia.translation` . `title` as `cms_section.backgroundMedia.translation.title` , `cms_section.backgroundMedia.translation` . `custom_fields` as `cms_section.backgroundMedia.translation.customFields` FROM `media_translation` `cms_section.backgroundMedia.translation` WHERE `cms_section.backgroundMedia.translation` . `language_id` = 0x0230A828E7F14120974FAE38CDACDEDB ) `cms_section.backgroundMedia.media_translation` ON `cms_section.backgroundMedia.media_translation` . `media_id` = `cms_section.backgroundMedia` . `id` WHERE (`cms_section` . `version_id` = 0x0FA91CE3E96A4BC2BE4BD9CE752C3425 ) AND (((`cms_section` . `cms_page_id` IN (0x9B660A4CFC7D4A75B3A53AFF7A3730B9 ))));
Copy
86
1.00 ms
SELECT `cms_block` . `id` as `cms_block.id` , `cms_block` . `version_id` as `cms_block.versionId` , `cms_block` . `cms_section_version_id` as `cms_block.cmsSectionVersionId` , `cms_block` . `position` as `cms_block.position` , `cms_block` . `type` as `cms_block.type` , `cms_block` . `locked` as `cms_block.locked` , `cms_block` . `name` as `cms_block.name` , `cms_block` . `section_position` as `cms_block.sectionPosition` , `cms_block` . `margin_top` as `cms_block.marginTop` , `cms_block` . `margin_bottom` as `cms_block.marginBottom` , `cms_block` . `margin_left` as `cms_block.marginLeft` , `cms_block` . `margin_right` as `cms_block.marginRight` , `cms_block` . `background_color` as `cms_block.backgroundColor` , `cms_block` . `background_media_id` as `cms_block.backgroundMediaId` , `cms_block` . `background_media_mode` as `cms_block.backgroundMediaMode` , `cms_block` . `css_class` as `cms_block.cssClass` , `cms_block` . `visibility` as `cms_block.visibility` , `cms_block` . `cms_section_id` as `cms_block.sectionId` , `cms_block` . `custom_fields` as `cms_block.customFields` , `cms_block` . `created_at` as `cms_block.createdAt` , `cms_block` . `updated_at` as `cms_block.updatedAt` , `cms_block.backgroundMedia` . `id` as `cms_block.backgroundMedia.id` , `cms_block.backgroundMedia` . `user_id` as `cms_block.backgroundMedia.userId` , `cms_block.backgroundMedia` . `media_folder_id` as `cms_block.backgroundMedia.mediaFolderId` , `cms_block.backgroundMedia` . `mime_type` as `cms_block.backgroundMedia.mimeType` , `cms_block.backgroundMedia` . `file_extension` as `cms_block.backgroundMedia.fileExtension` , `cms_block.backgroundMedia` . `uploaded_at` as `cms_block.backgroundMedia.uploadedAt` , `cms_block.backgroundMedia` . `file_name` as `cms_block.backgroundMedia.fileName` , `cms_block.backgroundMedia` . `file_size` as `cms_block.backgroundMedia.fileSize` , `cms_block.backgroundMedia` . `media_type` as `cms_block.backgroundMedia.mediaTypeRaw` , `cms_block.backgroundMedia` . `meta_data` as `cms_block.backgroundMedia.metaData` , `cms_block.backgroundMedia` . `config` as `cms_block.backgroundMedia.config` , `cms_block.backgroundMedia` . `path` as `cms_block.backgroundMedia.path` , `cms_block.backgroundMedia` . `private` as `cms_block.backgroundMedia.private` , `cms_block.backgroundMedia` . `thumbnails_ro` as `cms_block.backgroundMedia.thumbnailsRo` , `cms_block.backgroundMedia` . `file_hash` as `cms_block.backgroundMedia.fileHash` , `cms_block.backgroundMedia` . `created_at` as `cms_block.backgroundMedia.createdAt` , `cms_block.backgroundMedia` . `updated_at` as `cms_block.backgroundMedia.updatedAt` , `cms_block.backgroundMedia.translation.title` , `cms_block.backgroundMedia.translation.title` as `cms_block.backgroundMedia.title` , `cms_block.backgroundMedia.translation.alt` , `cms_block.backgroundMedia.translation.alt` as `cms_block.backgroundMedia.alt` , `cms_block.backgroundMedia.translation.customFields` , `cms_block.backgroundMedia.translation.customFields` as `cms_block.backgroundMedia.customFields` FROM `cms_block` LEFT JOIN `media` `cms_block.backgroundMedia` ON `cms_block` . `background_media_id` = `cms_block.backgroundMedia` . `id` LEFT JOIN (SELECT `cms_block.backgroundMedia.translation` . `media_id` , `cms_block.backgroundMedia.translation` . `alt` as `cms_block.backgroundMedia.translation.alt` , `cms_block.backgroundMedia.translation` . `title` as `cms_block.backgroundMedia.translation.title` , `cms_block.backgroundMedia.translation` . `custom_fields` as `cms_block.backgroundMedia.translation.customFields` FROM `media_translation` `cms_block.backgroundMedia.translation` WHERE `cms_block.backgroundMedia.translation` . `language_id` = ? ) `cms_block.backgroundMedia.media_translation` ON `cms_block.backgroundMedia.media_translation` . `media_id` = `cms_block.backgroundMedia` . `id` WHERE (`cms_block` . `version_id` = ? ) AND (((`cms_block` . `cms_section_id` IN (? ))))
Parameters :
[
b"\x02 0¨(çñA —O®8ͬÞÛ "
b"\x0F ©\x1C ãéjK¾KÙÎu,4% "
b"Vƒ‰ÁñcMÁ³3¿Ý\x00 Õì@ "
]
SELECT
`cms_block` . `id` as `cms_block.id` ,
`cms_block` . `version_id` as `cms_block.versionId` ,
`cms_block` . `cms_section_version_id` as `cms_block.cmsSectionVersionId` ,
`cms_block` . `position` as `cms_block.position` ,
`cms_block` . `type` as `cms_block.type` ,
`cms_block` . `locked` as `cms_block.locked` ,
`cms_block` . `name` as `cms_block.name` ,
`cms_block` . `section_position` as `cms_block.sectionPosition` ,
`cms_block` . `margin_top` as `cms_block.marginTop` ,
`cms_block` . `margin_bottom` as `cms_block.marginBottom` ,
`cms_block` . `margin_left` as `cms_block.marginLeft` ,
`cms_block` . `margin_right` as `cms_block.marginRight` ,
`cms_block` . `background_color` as `cms_block.backgroundColor` ,
`cms_block` . `background_media_id` as `cms_block.backgroundMediaId` ,
`cms_block` . `background_media_mode` as `cms_block.backgroundMediaMode` ,
`cms_block` . `css_class` as `cms_block.cssClass` ,
`cms_block` . `visibility` as `cms_block.visibility` ,
`cms_block` . `cms_section_id` as `cms_block.sectionId` ,
`cms_block` . `custom_fields` as `cms_block.customFields` ,
`cms_block` . `created_at` as `cms_block.createdAt` ,
`cms_block` . `updated_at` as `cms_block.updatedAt` ,
`cms_block.backgroundMedia` . `id` as `cms_block.backgroundMedia.id` ,
`cms_block.backgroundMedia` . `user_id` as `cms_block.backgroundMedia.userId` ,
`cms_block.backgroundMedia` . `media_folder_id` as `cms_block.backgroundMedia.mediaFolderId` ,
`cms_block.backgroundMedia` . `mime_type` as `cms_block.backgroundMedia.mimeType` ,
`cms_block.backgroundMedia` . `file_extension` as `cms_block.backgroundMedia.fileExtension` ,
`cms_block.backgroundMedia` . `uploaded_at` as `cms_block.backgroundMedia.uploadedAt` ,
`cms_block.backgroundMedia` . `file_name` as `cms_block.backgroundMedia.fileName` ,
`cms_block.backgroundMedia` . `file_size` as `cms_block.backgroundMedia.fileSize` ,
`cms_block.backgroundMedia` . `media_type` as `cms_block.backgroundMedia.mediaTypeRaw` ,
`cms_block.backgroundMedia` . `meta_data` as `cms_block.backgroundMedia.metaData` ,
`cms_block.backgroundMedia` . `config` as `cms_block.backgroundMedia.config` ,
`cms_block.backgroundMedia` . `path` as `cms_block.backgroundMedia.path` ,
`cms_block.backgroundMedia` . `private` as `cms_block.backgroundMedia.private` ,
`cms_block.backgroundMedia` . `thumbnails_ro` as `cms_block.backgroundMedia.thumbnailsRo` ,
`cms_block.backgroundMedia` . `file_hash` as `cms_block.backgroundMedia.fileHash` ,
`cms_block.backgroundMedia` . `created_at` as `cms_block.backgroundMedia.createdAt` ,
`cms_block.backgroundMedia` . `updated_at` as `cms_block.backgroundMedia.updatedAt` ,
`cms_block.backgroundMedia.translation.title` ,
`cms_block.backgroundMedia.translation.title` as `cms_block.backgroundMedia.title` ,
`cms_block.backgroundMedia.translation.alt` ,
`cms_block.backgroundMedia.translation.alt` as `cms_block.backgroundMedia.alt` ,
`cms_block.backgroundMedia.translation.customFields` ,
`cms_block.backgroundMedia.translation.customFields` as `cms_block.backgroundMedia.customFields`
FROM
`cms_block`
LEFT JOIN `media` `cms_block.backgroundMedia` ON `cms_block` . `background_media_id` = `cms_block.backgroundMedia` . `id`
LEFT JOIN (
SELECT
`cms_block.backgroundMedia.translation` . `media_id` ,
`cms_block.backgroundMedia.translation` . `alt` as `cms_block.backgroundMedia.translation.alt` ,
`cms_block.backgroundMedia.translation` . `title` as `cms_block.backgroundMedia.translation.title` ,
`cms_block.backgroundMedia.translation` . `custom_fields` as `cms_block.backgroundMedia.translation.customFields`
FROM
`media_translation` `cms_block.backgroundMedia.translation`
WHERE
`cms_block.backgroundMedia.translation` . `language_id` = ?
) `cms_block.backgroundMedia.media_translation` ON `cms_block.backgroundMedia.media_translation` . `media_id` = `cms_block.backgroundMedia` . `id`
WHERE
(`cms_block` . `version_id` = ? )
AND (
(
(
`cms_block` . `cms_section_id` IN (? )
)
)
)
Copy
SELECT `cms_block` . `id` as `cms_block.id` , `cms_block` . `version_id` as `cms_block.versionId` , `cms_block` . `cms_section_version_id` as `cms_block.cmsSectionVersionId` , `cms_block` . `position` as `cms_block.position` , `cms_block` . `type` as `cms_block.type` , `cms_block` . `locked` as `cms_block.locked` , `cms_block` . `name` as `cms_block.name` , `cms_block` . `section_position` as `cms_block.sectionPosition` , `cms_block` . `margin_top` as `cms_block.marginTop` , `cms_block` . `margin_bottom` as `cms_block.marginBottom` , `cms_block` . `margin_left` as `cms_block.marginLeft` , `cms_block` . `margin_right` as `cms_block.marginRight` , `cms_block` . `background_color` as `cms_block.backgroundColor` , `cms_block` . `background_media_id` as `cms_block.backgroundMediaId` , `cms_block` . `background_media_mode` as `cms_block.backgroundMediaMode` , `cms_block` . `css_class` as `cms_block.cssClass` , `cms_block` . `visibility` as `cms_block.visibility` , `cms_block` . `cms_section_id` as `cms_block.sectionId` , `cms_block` . `custom_fields` as `cms_block.customFields` , `cms_block` . `created_at` as `cms_block.createdAt` , `cms_block` . `updated_at` as `cms_block.updatedAt` , `cms_block.backgroundMedia` . `id` as `cms_block.backgroundMedia.id` , `cms_block.backgroundMedia` . `user_id` as `cms_block.backgroundMedia.userId` , `cms_block.backgroundMedia` . `media_folder_id` as `cms_block.backgroundMedia.mediaFolderId` , `cms_block.backgroundMedia` . `mime_type` as `cms_block.backgroundMedia.mimeType` , `cms_block.backgroundMedia` . `file_extension` as `cms_block.backgroundMedia.fileExtension` , `cms_block.backgroundMedia` . `uploaded_at` as `cms_block.backgroundMedia.uploadedAt` , `cms_block.backgroundMedia` . `file_name` as `cms_block.backgroundMedia.fileName` , `cms_block.backgroundMedia` . `file_size` as `cms_block.backgroundMedia.fileSize` , `cms_block.backgroundMedia` . `media_type` as `cms_block.backgroundMedia.mediaTypeRaw` , `cms_block.backgroundMedia` . `meta_data` as `cms_block.backgroundMedia.metaData` , `cms_block.backgroundMedia` . `config` as `cms_block.backgroundMedia.config` , `cms_block.backgroundMedia` . `path` as `cms_block.backgroundMedia.path` , `cms_block.backgroundMedia` . `private` as `cms_block.backgroundMedia.private` , `cms_block.backgroundMedia` . `thumbnails_ro` as `cms_block.backgroundMedia.thumbnailsRo` , `cms_block.backgroundMedia` . `file_hash` as `cms_block.backgroundMedia.fileHash` , `cms_block.backgroundMedia` . `created_at` as `cms_block.backgroundMedia.createdAt` , `cms_block.backgroundMedia` . `updated_at` as `cms_block.backgroundMedia.updatedAt` , `cms_block.backgroundMedia.translation.title` , `cms_block.backgroundMedia.translation.title` as `cms_block.backgroundMedia.title` , `cms_block.backgroundMedia.translation.alt` , `cms_block.backgroundMedia.translation.alt` as `cms_block.backgroundMedia.alt` , `cms_block.backgroundMedia.translation.customFields` , `cms_block.backgroundMedia.translation.customFields` as `cms_block.backgroundMedia.customFields` FROM `cms_block` LEFT JOIN `media` `cms_block.backgroundMedia` ON `cms_block` . `background_media_id` = `cms_block.backgroundMedia` . `id` LEFT JOIN (SELECT `cms_block.backgroundMedia.translation` . `media_id` , `cms_block.backgroundMedia.translation` . `alt` as `cms_block.backgroundMedia.translation.alt` , `cms_block.backgroundMedia.translation` . `title` as `cms_block.backgroundMedia.translation.title` , `cms_block.backgroundMedia.translation` . `custom_fields` as `cms_block.backgroundMedia.translation.customFields` FROM `media_translation` `cms_block.backgroundMedia.translation` WHERE `cms_block.backgroundMedia.translation` . `language_id` = 0x0230A828E7F14120974FAE38CDACDEDB ) `cms_block.backgroundMedia.media_translation` ON `cms_block.backgroundMedia.media_translation` . `media_id` = `cms_block.backgroundMedia` . `id` WHERE (`cms_block` . `version_id` = 0x0FA91CE3E96A4BC2BE4BD9CE752C3425 ) AND (((`cms_block` . `cms_section_id` IN (0x568389C1F1634DC1B333BFDD00D5EC40 ))));
Copy
87
0.75 ms
SELECT `cms_slot` . `id` as `cms_slot.id` , `cms_slot` . `version_id` as `cms_slot.versionId` , `cms_slot` . `cms_block_version_id` as `cms_slot.cmsBlockVersionId` , `cms_slot` . `type` as `cms_slot.type` , `cms_slot` . `slot` as `cms_slot.slot` , `cms_slot` . `locked` as `cms_slot.locked` , `cms_slot` . `cms_block_id` as `cms_slot.blockId` , `cms_slot` . `created_at` as `cms_slot.createdAt` , `cms_slot` . `updated_at` as `cms_slot.updatedAt` , `cms_slot.translation.config` , `cms_slot.translation.config` as `cms_slot.config` , `cms_slot.translation.customFields` , `cms_slot.translation.customFields` as `cms_slot.customFields` FROM `cms_slot` LEFT JOIN (SELECT `cms_slot.translation` . `cms_slot_id` , `cms_slot.translation` . `cms_slot_version_id` , `cms_slot.translation` . `config` as `cms_slot.translation.config` , `cms_slot.translation` . `custom_fields` as `cms_slot.translation.customFields` FROM `cms_slot_translation` `cms_slot.translation` WHERE `cms_slot.translation` . `language_id` = ? ) `cms_slot.cms_slot_translation` ON `cms_slot.cms_slot_translation` . `cms_slot_id` = `cms_slot` . `id` AND `cms_slot.cms_slot_translation` . `cms_slot_version_id` = `cms_slot` . `version_id` WHERE (`cms_slot` . `version_id` = ? ) AND (((`cms_slot` . `cms_block_id` IN (? ))))
Parameters :
[
b"\x02 0¨(çñA —O®8ͬÞÛ "
b"\x0F ©\x1C ãéjK¾KÙÎu,4% "
b"—]5!{dN˦¿tµÑý?D "
]
SELECT `cms_slot` . `id` as `cms_slot.id` , `cms_slot` . `version_id` as `cms_slot.versionId` , `cms_slot` . `cms_block_version_id` as `cms_slot.cmsBlockVersionId` , `cms_slot` . `type` as `cms_slot.type` , `cms_slot` . `slot` as `cms_slot.slot` , `cms_slot` . `locked` as `cms_slot.locked` , `cms_slot` . `cms_block_id` as `cms_slot.blockId` , `cms_slot` . `created_at` as `cms_slot.createdAt` , `cms_slot` . `updated_at` as `cms_slot.updatedAt` , `cms_slot.translation.config` , `cms_slot.translation.config` as `cms_slot.config` , `cms_slot.translation.customFields` , `cms_slot.translation.customFields` as `cms_slot.customFields` FROM `cms_slot` LEFT JOIN (SELECT `cms_slot.translation` . `cms_slot_id` , `cms_slot.translation` . `cms_slot_version_id` , `cms_slot.translation` . `config` as `cms_slot.translation.config` , `cms_slot.translation` . `custom_fields` as `cms_slot.translation.customFields` FROM `cms_slot_translation` `cms_slot.translation` WHERE `cms_slot.translation` . `language_id` = 0x0230A828E7F14120974FAE38CDACDEDB ) `cms_slot.cms_slot_translation` ON `cms_slot.cms_slot_translation` . `cms_slot_id` = `cms_slot` . `id` AND `cms_slot.cms_slot_translation` . `cms_slot_version_id` = `cms_slot` . `version_id` WHERE (`cms_slot` . `version_id` = 0x0FA91CE3E96A4BC2BE4BD9CE752C3425 ) AND (((`cms_slot` . `cms_block_id` IN (0x975D35217B644ECBA6BF74B5D1FD3F44 ))));
Copy
88
10.74 ms
SELECT seo_path_info , path_info , sales_channel_id FROM seo_url WHERE (seo_url . is_canonical = 1 ) AND (seo_url . path_info IN (? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? )) AND (seo_url . language_id = ? ) AND (seo_url . sales_channel_id = ? OR seo_url . sales_channel_id IS NULL ) AND (seo_url . is_deleted = 0 )
Parameters :
[
"/navigation/00000000000000000000000002286248 "
"/navigation/00000000000000000000000002290945 "
"/navigation/00000000000000000000000002299445 "
"/navigation/00000000000000000000000002286967 "
"/navigation/00000000000000000000000002286251 "
"/navigation/00000000000000000000000002287129 "
"/navigation/00000000000000000000000002286968 "
"/navigation/00000000000000000000000002287130 "
"/navigation/00000000000000000000000002334273 "
"/navigation/00000000000000000000000002334115 "
"/navigation/00000000000000000000000002286969 "
"/navigation/00000000000000000000000002286249 "
"/navigation/00000000000000000000000002286970 "
"/navigation/00000000000000000000000002286929 "
"/navigation/00000000000000000000000002286971 "
"/navigation/00000000000000000000000002286932 "
"/navigation/00000000000000000000000002286974 "
"/navigation/00000000000000000000000002286975 "
"/navigation/00000000000000000000000002287012 "
"/navigation/00000000000000000000000002287037 "
"/navigation/00000000000000000000000002287039 "
"/navigation/00000000000000000000000002287038 "
"/navigation/00000000000000000000000002287026 "
"/navigation/00000000000000000000000002287134 "
"/navigation/00000000000000000000000002286976 "
"/navigation/00000000000000000000000002286977 "
"/navigation/00000000000000000000000002287018 "
"/navigation/00000000000000000000000002286934 "
"/navigation/00000000000000000000000002286978 "
"/navigation/00000000000000000000000002286935 "
"/navigation/00000000000000000000000002286936 "
"/navigation/00000000000000000000000002286979 "
"/navigation/00000000000000000000000002286937 "
"/navigation/00000000000000000000000002287042 "
"/navigation/00000000000000000000000002286984 "
"/navigation/00000000000000000000000002287131 "
"/navigation/00000000000000000000000002287019 "
"/navigation/00000000000000000000000002298194 "
"/navigation/00000000000000000000000002286956 "
"/navigation/00000000000000000000000002333426 "
"/navigation/00000000000000000000000002287020 "
"/navigation/00000000000000000000000002286985 "
"/navigation/00000000000000000000000002286993 "
"/navigation/00000000000000000000000002286994 "
"/navigation/00000000000000000000000002286957 "
"/navigation/00000000000000000000000002286958 "
"/navigation/00000000000000000000000002287021 "
"/navigation/00000000000000000000000002287023 "
"/navigation/00000000000000000000000002286995 "
"/navigation/00000000000000000000000002286997 "
"/navigation/00000000000000000000000002287028 "
"/navigation/00000000000000000000000002286960 "
"/navigation/00000000000000000000000002286961 "
"/navigation/00000000000000000000000002286998 "
"/navigation/00000000000000000000000002287000 "
"/navigation/00000000000000000000000002287024 "
"/navigation/00000000000000000000000002287045 "
"/navigation/00000000000000000000000002286962 "
"/navigation/00000000000000000000000002286963 "
"/navigation/00000000000000000000000002287133 "
"/navigation/00000000000000000000000002287029 "
"/navigation/00000000000000000000000002287046 "
"/navigation/00000000000000000000000002286964 "
"/navigation/00000000000000000000000002296256 "
"/navigation/00000000000000000000000002287047 "
"/navigation/00000000000000000000000002287048 "
"/navigation/00000000000000000000000002287025 "
"/navigation/00000000000000000000000002287030 "
"/navigation/00000000000000000000000002333712 "
"/navigation/00000000000000000000000002287127 "
"/navigation/00000000000000000000000002287011 "
"/navigation/00000000000000000000000002286965 "
"/navigation/9ffd8c4072204212adf81a841c3d4e3d "
"/navigation/00000000000000000000000002286931 "
"/detail/00000000000000000000000162351168 "
"/detail/00000000000000000000000178330897 "
"/detail/00000000000000000000000133610736 "
"/detail/00000000000000000000000164268333 "
"/detail/00000000000000000000000135671475 "
"/detail/00000000000000000000000146091176 "
"/detail/00000000000000000000000146531591 "
"/detail/00000000000000000000000160335942 "
"/detail/00000000000000000000000160147522 "
"/detail/00000000000000000000000148774056 "
"/detail/00000000000000000000000159815500 "
"/detail/00000000000000000000000133561053 "
"/detail/00000000000000000000000159970493 "
"/detail/00000000000000000000000171995818 "
"/detail/e13db033b13945289156d22285a38306 "
"/detail/00000000000000000000000134949607 "
"/detail/00000000000000000000000124043781 "
"/detail/00000000000000000000000123647301 "
"/detail/00000000000000000000000169714298 "
"/detail/00000000000000000000000166030785 "
"/detail/00000000000000000000000123647194 "
"/detail/00000000000000000000000172012138 "
"/detail/00000000000000000000000170112622 "
"/detail/00000000000000000000000166030715 "
b"\x02 0¨(çñA —O®8ͬÞÛ "
b">{k'Ô\x1E O‡!¼GnÏMj "
]
SELECT
seo_path_info ,
path_info ,
sales_channel_id
FROM
seo_url
WHERE
(seo_url . is_canonical = 1 )
AND (
seo_url . path_info IN (
? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? ,
? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? ,
? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? ,
? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? ,
? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? ,
? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? ,
? , ? , ? , ? , ? , ? , ?
)
)
AND (seo_url . language_id = ? )
AND (
seo_url . sales_channel_id = ?
OR seo_url . sales_channel_id IS NULL
)
AND (seo_url . is_deleted = 0 )
Copy
SELECT seo_path_info , path_info , sales_channel_id FROM seo_url WHERE (seo_url . is_canonical = 1 ) AND (seo_url . path_info IN ('/navigation/00000000000000000000000002286248' , '/navigation/00000000000000000000000002290945' , '/navigation/00000000000000000000000002299445' , '/navigation/00000000000000000000000002286967' , '/navigation/00000000000000000000000002286251' , '/navigation/00000000000000000000000002287129' , '/navigation/00000000000000000000000002286968' , '/navigation/00000000000000000000000002287130' , '/navigation/00000000000000000000000002334273' , '/navigation/00000000000000000000000002334115' , '/navigation/00000000000000000000000002286969' , '/navigation/00000000000000000000000002286249' , '/navigation/00000000000000000000000002286970' , '/navigation/00000000000000000000000002286929' , '/navigation/00000000000000000000000002286971' , '/navigation/00000000000000000000000002286932' , '/navigation/00000000000000000000000002286974' , '/navigation/00000000000000000000000002286975' , '/navigation/00000000000000000000000002287012' , '/navigation/00000000000000000000000002287037' , '/navigation/00000000000000000000000002287039' , '/navigation/00000000000000000000000002287038' , '/navigation/00000000000000000000000002287026' , '/navigation/00000000000000000000000002287134' , '/navigation/00000000000000000000000002286976' , '/navigation/00000000000000000000000002286977' , '/navigation/00000000000000000000000002287018' , '/navigation/00000000000000000000000002286934' , '/navigation/00000000000000000000000002286978' , '/navigation/00000000000000000000000002286935' , '/navigation/00000000000000000000000002286936' , '/navigation/00000000000000000000000002286979' , '/navigation/00000000000000000000000002286937' , '/navigation/00000000000000000000000002287042' , '/navigation/00000000000000000000000002286984' , '/navigation/00000000000000000000000002287131' , '/navigation/00000000000000000000000002287019' , '/navigation/00000000000000000000000002298194' , '/navigation/00000000000000000000000002286956' , '/navigation/00000000000000000000000002333426' , '/navigation/00000000000000000000000002287020' , '/navigation/00000000000000000000000002286985' , '/navigation/00000000000000000000000002286993' , '/navigation/00000000000000000000000002286994' , '/navigation/00000000000000000000000002286957' , '/navigation/00000000000000000000000002286958' , '/navigation/00000000000000000000000002287021' , '/navigation/00000000000000000000000002287023' , '/navigation/00000000000000000000000002286995' , '/navigation/00000000000000000000000002286997' , '/navigation/00000000000000000000000002287028' , '/navigation/00000000000000000000000002286960' , '/navigation/00000000000000000000000002286961' , '/navigation/00000000000000000000000002286998' , '/navigation/00000000000000000000000002287000' , '/navigation/00000000000000000000000002287024' , '/navigation/00000000000000000000000002287045' , '/navigation/00000000000000000000000002286962' , '/navigation/00000000000000000000000002286963' , '/navigation/00000000000000000000000002287133' , '/navigation/00000000000000000000000002287029' , '/navigation/00000000000000000000000002287046' , '/navigation/00000000000000000000000002286964' , '/navigation/00000000000000000000000002296256' , '/navigation/00000000000000000000000002287047' , '/navigation/00000000000000000000000002287048' , '/navigation/00000000000000000000000002287025' , '/navigation/00000000000000000000000002287030' , '/navigation/00000000000000000000000002333712' , '/navigation/00000000000000000000000002287127' , '/navigation/00000000000000000000000002287011' , '/navigation/00000000000000000000000002286965' , '/navigation/9ffd8c4072204212adf81a841c3d4e3d' , '/navigation/00000000000000000000000002286931' , '/detail/00000000000000000000000162351168' , '/detail/00000000000000000000000178330897' , '/detail/00000000000000000000000133610736' , '/detail/00000000000000000000000164268333' , '/detail/00000000000000000000000135671475' , '/detail/00000000000000000000000146091176' , '/detail/00000000000000000000000146531591' , '/detail/00000000000000000000000160335942' , '/detail/00000000000000000000000160147522' , '/detail/00000000000000000000000148774056' , '/detail/00000000000000000000000159815500' , '/detail/00000000000000000000000133561053' , '/detail/00000000000000000000000159970493' , '/detail/00000000000000000000000171995818' , '/detail/e13db033b13945289156d22285a38306' , '/detail/00000000000000000000000134949607' , '/detail/00000000000000000000000124043781' , '/detail/00000000000000000000000123647301' , '/detail/00000000000000000000000169714298' , '/detail/00000000000000000000000166030785' , '/detail/00000000000000000000000123647194' , '/detail/00000000000000000000000172012138' , '/detail/00000000000000000000000170112622' , '/detail/00000000000000000000000166030715' )) AND (seo_url . language_id = 0x0230A828E7F14120974FAE38CDACDEDB ) AND (seo_url . sales_channel_id = 0x3E7B6B27D41E4F87AD21BC476ECF4D6A OR seo_url . sales_channel_id IS NULL ) AND (seo_url . is_deleted = 0 );
Copy
89
0.88 ms
SELECT `rule` . `id` as `rule.id` , `rule` . `name` as `rule.name` , `rule` . `priority` as `rule.priority` , `rule` . `description` as `rule.description` , `rule` . `payload` as `rule.payload` , `rule` . `invalid` as `rule.invalid` , `rule` . `areas` as `rule.areas` , `rule` . `custom_fields` as `rule.customFields` , `rule` . `module_types` as `rule.moduleTypes` , `rule` . `created_at` as `rule.createdAt` , `rule` . `updated_at` as `rule.updatedAt` FROM `rule` WHERE `rule` . `id` IN (? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? )
Parameters :
[
b"Ø\f zÔ\x13 `H\t ±{\x19\x1D ²5u5 "
b"\x1D pH#jÏJR°<\x03 eÅÏQ\ "
b"8X•p\x16 dMä®HÀP\v óÌÈ "
b"D«îåŽÚCU›¼ðöÿ)c\x00 "
b"sÿ]5Ú╩Bi¬Ç\e ÅÓböK "
b"—*{žNàOÇ E$ÁÁ{Wù "
b"ß7ìÀÇèGÅæ×\r t\r ]l\x1A "
b"éŒa'L9EhµùÓ¢‹D°Ù "
b"ìi~ÃAÙOËœ§ÌµŸ),< "
b"(Ê®u¥bO\r ˜Z½\x0E ³*¡` "
b"YÄCê\r II0 \x0E ÏZ\x03 ˜ð\x03 "
b"äNg‚ÆBG·–¸‘Ï%®8÷ "
]
SELECT `rule` . `id` as `rule.id` , `rule` . `name` as `rule.name` , `rule` . `priority` as `rule.priority` , `rule` . `description` as `rule.description` , `rule` . `payload` as `rule.payload` , `rule` . `invalid` as `rule.invalid` , `rule` . `areas` as `rule.areas` , `rule` . `custom_fields` as `rule.customFields` , `rule` . `module_types` as `rule.moduleTypes` , `rule` . `created_at` as `rule.createdAt` , `rule` . `updated_at` as `rule.updatedAt` FROM `rule` WHERE `rule` . `id` IN (0xD80C7AD413604809B17B191DB2357535 , 0x1D7048236ACF4A52B03C0365C5CF515C , 0x3858957016644DE4AE48C0500BF3CCC8 , 0x44ABEEE58EDA43559BBCF0F6FF296300 , 0x73985D35E9CA4269AA801B8FE062944B , 0x972A7B9E4EE04FC7A04524C1C17B57F9 , 0xE1378DB7808A478F919E0D740D5D6C1A , 0xE98C61274C394568B5F9D3A28B44B0D9 , 0xEC697EC341D94FCB9CA7CCB59F292C3C , 0x28CAAE75A5624F0D985ABD0EB32AA160 , 0x59C443EA0D494930A00ECF5A0398F003 , 0xE44E6782C64247B796B891CF25AE38F7 );
Copy
90
0.77 ms
SELECT id , path_info pathInfo , is_canonical isCanonical , sales_channel_id salesChannelId FROM seo_url WHERE (language_id = ? ) AND ((sales_channel_id = ? OR sales_channel_id IS NULL )) AND ((seo_path_info = ? OR seo_path_info = ? ))
Parameters :
[
b"\x02 0¨(çñA —O®8ͬÞÛ "
b">{k'Ô\x1E O‡!¼GnÏMj "
"header "
"header/ "
]
SELECT id , path_info pathInfo , is_canonical isCanonical , sales_channel_id salesChannelId FROM seo_url WHERE (language_id = 0x0230A828E7F14120974FAE38CDACDEDB ) AND ((sales_channel_id = 0x3E7B6B27D41E4F87AD21BC476ECF4D6A OR sales_channel_id IS NULL )) AND ((seo_path_info = 'header' OR seo_path_info = 'header/' ));
Copy
91
0.54 ms
SELECT path_info pathInfo , seo_path_info seoPathInfo FROM seo_url WHERE (language_id = ? ) AND (sales_channel_id = ? ) AND (path_info = ? ) AND (is_canonical = 1 ) LIMIT 1
Parameters :
[
b"\x02 0¨(çñA —O®8ͬÞÛ "
b">{k'Ô\x1E O‡!¼GnÏMj "
"/header "
]
SELECT path_info pathInfo , seo_path_info seoPathInfo FROM seo_url WHERE (language_id = 0x0230A828E7F14120974FAE38CDACDEDB ) AND (sales_channel_id = 0x3E7B6B27D41E4F87AD21BC476ECF4D6A ) AND (path_info = '/header' ) AND (is_canonical = 1 ) LIMIT 1 ;
Copy
92
0.25 ms
SELECT * FROM sales_channel_api_context WHERE (sales_channel_id = ? ) AND (token = ? ) LIMIT 1
Parameters :
[
b">{k'Ô\x1E O‡!¼GnÏMj "
"dhy7lVXuw8dWjgQ6QKQ7so6fqgg8AS3H "
]
SELECT * FROM sales_channel_api_context WHERE (sales_channel_id = 0x3E7B6B27D41E4F87AD21BC476ECF4D6A ) AND (token = 'dhy7lVXuw8dWjgQ6QKQ7so6fqgg8AS3H' ) LIMIT 1 ;
Copy
93
0.45 ms
SELECT `cart` . `payload` , `cart` . `rule_ids` , `cart` . `compressed` FROM cart WHERE `token` = ?
Parameters :
[
"dhy7lVXuw8dWjgQ6QKQ7so6fqgg8AS3H "
]
SELECT `cart` . `payload` , `cart` . `rule_ids` , `cart` . `compressed` FROM cart WHERE `token` = 'dhy7lVXuw8dWjgQ6QKQ7so6fqgg8AS3H' ;
Copy
94
0.68 ms
SELECT LOWER (HEX (`id` )), `path` , `level`
FROM `category`
WHERE `id` = ? OR `parent_id` = ? OR `id` = ?
Parameters :
[
b"·├ÛdÅÔJ#ù┐\x16 {╠HÀ¼ "
b"·├ÛdÅÔJ#ù┐\x16 {╠HÀ¼ "
b"·├ÛdÅÔJ#ù┐\x16 {╠HÀ¼ "
]
SELECT LOWER (HEX (`id` )), `path` , `level`
FROM `category`
WHERE `id` = 0xFAC3EA648FE24A2397BF167BCC48B7AC OR `parent_id` = 0xFAC3EA648FE24A2397BF167BCC48B7AC OR `id` = 0xFAC3EA648FE24A2397BF167BCC48B7AC
;
Copy
95
9.65 ms
SELECT `category` . `id` as `category.id` , `category` . `version_id` as `category.versionId` , `category` . `parent_id` as `category.parentId` , `category` . `parent_version_id` as `category.parentVersionId` , `category` . `after_category_id` as `category.afterCategoryId` , `category` . `after_category_version_id` as `category.afterCategoryVersionId` , `category` . `media_id` as `category.mediaId` , `category` . `display_nested_products` as `category.displayNestedProducts` , `category` . `auto_increment` as `category.autoIncrement` , `category` . `level` as `category.level` , `category` . `path` as `category.path` , `category` . `child_count` as `category.childCount` , `category` . `type` as `category.type` , `category` . `product_assignment_type` as `category.productAssignmentType` , `category` . `visible` as `category.visible` , `category` . `active` as `category.active` , `category` . `cms_page_id` as `category.cmsPageId` , `category` . `cms_page_version_id` as `category.cmsPageVersionId` , `category` . `product_stream_id` as `category.productStreamId` , `category` . `custom_entity_type_id` as `category.customEntityTypeId` , `category` . `created_at` as `category.createdAt` , `category` . `updated_at` as `category.updatedAt` , `category.media` . `id` as `category.media.id` , `category.media` . `user_id` as `category.media.userId` , `category.media` . `media_folder_id` as `category.media.mediaFolderId` , `category.media` . `mime_type` as `category.media.mimeType` , `category.media` . `file_extension` as `category.media.fileExtension` , `category.media` . `uploaded_at` as `category.media.uploadedAt` , `category.media` . `file_name` as `category.media.fileName` , `category.media` . `file_size` as `category.media.fileSize` , `category.media` . `media_type` as `category.media.mediaTypeRaw` , `category.media` . `meta_data` as `category.media.metaData` , `category.media` . `config` as `category.media.config` , `category.media` . `path` as `category.media.path` , `category.media` . `private` as `category.media.private` , `category.media` . `thumbnails_ro` as `category.media.thumbnailsRo` , `category.media` . `file_hash` as `category.media.fileHash` , `category.media` . `created_at` as `category.media.createdAt` , `category.media` . `updated_at` as `category.media.updatedAt` , `category.media.translation.title` , `category.media.translation.title` as `category.media.title` , `category.media.translation.alt` , `category.media.translation.alt` as `category.media.alt` , `category.media.translation.customFields` , `category.media.translation.customFields` as `category.media.customFields` , `category.translation.name` , `category.translation.name` as `category.name` , `category.translation.breadcrumb` , `category.translation.breadcrumb` as `category.breadcrumb` , `category.translation.slotConfig` , `category.translation.slotConfig` as `category.slotConfig` , `category.translation.linkType` , `category.translation.linkType` as `category.linkType` , `category.translation.internalLink` , `category.translation.internalLink` as `category.internalLink` , `category.translation.externalLink` , `category.translation.externalLink` as `category.externalLink` , `category.translation.linkNewTab` , `category.translation.linkNewTab` as `category.linkNewTab` , `category.translation.description` , `category.translation.description` as `category.description` , `category.translation.metaTitle` , `category.translation.metaTitle` as `category.metaTitle` , `category.translation.metaDescription` , `category.translation.metaDescription` as `category.metaDescription` , `category.translation.keywords` , `category.translation.keywords` as `category.keywords` , `category.translation.customFields` , `category.translation.customFields` as `category.customFields` FROM `category` LEFT JOIN `media` `category.media` ON `category` . `media_id` = `category.media` . `id` LEFT JOIN (SELECT `category.translation` . `category_id` , `category.translation` . `category_version_id` , `category.translation` . `breadcrumb` as `category.translation.breadcrumb` , `category.translation` . `name` as `category.translation.name` , `category.translation` . `custom_fields` as `category.translation.customFields` , `category.translation` . `slot_config` as `category.translation.slotConfig` , `category.translation` . `link_type` as `category.translation.linkType` , `category.translation` . `internal_link` as `category.translation.internalLink` , `category.translation` . `external_link` as `category.translation.externalLink` , `category.translation` . `link_new_tab` as `category.translation.linkNewTab` , `category.translation` . `description` as `category.translation.description` , `category.translation` . `meta_title` as `category.translation.metaTitle` , `category.translation` . `meta_description` as `category.translation.metaDescription` , `category.translation` . `keywords` as `category.translation.keywords` FROM `category_translation` `category.translation` WHERE `category.translation` . `language_id` = ? ) `category.category_translation` ON `category.category_translation` . `category_id` = `category` . `id` AND `category.category_translation` . `category_version_id` = `category` . `version_id` LEFT JOIN (SELECT `category.media.translation` . `media_id` , `category.media.translation` . `alt` as `category.media.translation.alt` , `category.media.translation` . `title` as `category.media.translation.title` , `category.media.translation` . `custom_fields` as `category.media.translation.customFields` FROM `media_translation` `category.media.translation` WHERE `category.media.translation` . `language_id` = ? ) `category.media.media_translation` ON `category.media.media_translation` . `media_id` = `category.media` . `id` WHERE (`category` . `version_id` = ? ) AND ((`category` . `path` LIKE ? AND (`category` . `level` > ? AND `category` . `level` < = ? )))
Parameters :
[
b"\x02 0¨(çñA —O®8ͬÞÛ "
b"\x02 0¨(çñA —O®8ͬÞÛ "
b"\x0F ©\x1C ãéjK¾KÙÎu,4% "
"%|fac3ea648fe24a2397bf167bcc48b7ac|% "
1
7
]
SELECT
`category` . `id` as `category.id` ,
`category` . `version_id` as `category.versionId` ,
`category` . `parent_id` as `category.parentId` ,
`category` . `parent_version_id` as `category.parentVersionId` ,
`category` . `after_category_id` as `category.afterCategoryId` ,
`category` . `after_category_version_id` as `category.afterCategoryVersionId` ,
`category` . `media_id` as `category.mediaId` ,
`category` . `display_nested_products` as `category.displayNestedProducts` ,
`category` . `auto_increment` as `category.autoIncrement` ,
`category` . `level` as `category.level` ,
`category` . `path` as `category.path` ,
`category` . `child_count` as `category.childCount` ,
`category` . `type` as `category.type` ,
`category` . `product_assignment_type` as `category.productAssignmentType` ,
`category` . `visible` as `category.visible` ,
`category` . `active` as `category.active` ,
`category` . `cms_page_id` as `category.cmsPageId` ,
`category` . `cms_page_version_id` as `category.cmsPageVersionId` ,
`category` . `product_stream_id` as `category.productStreamId` ,
`category` . `custom_entity_type_id` as `category.customEntityTypeId` ,
`category` . `created_at` as `category.createdAt` ,
`category` . `updated_at` as `category.updatedAt` ,
`category.media` . `id` as `category.media.id` ,
`category.media` . `user_id` as `category.media.userId` ,
`category.media` . `media_folder_id` as `category.media.mediaFolderId` ,
`category.media` . `mime_type` as `category.media.mimeType` ,
`category.media` . `file_extension` as `category.media.fileExtension` ,
`category.media` . `uploaded_at` as `category.media.uploadedAt` ,
`category.media` . `file_name` as `category.media.fileName` ,
`category.media` . `file_size` as `category.media.fileSize` ,
`category.media` . `media_type` as `category.media.mediaTypeRaw` ,
`category.media` . `meta_data` as `category.media.metaData` ,
`category.media` . `config` as `category.media.config` ,
`category.media` . `path` as `category.media.path` ,
`category.media` . `private` as `category.media.private` ,
`category.media` . `thumbnails_ro` as `category.media.thumbnailsRo` ,
`category.media` . `file_hash` as `category.media.fileHash` ,
`category.media` . `created_at` as `category.media.createdAt` ,
`category.media` . `updated_at` as `category.media.updatedAt` ,
`category.media.translation.title` ,
`category.media.translation.title` as `category.media.title` ,
`category.media.translation.alt` ,
`category.media.translation.alt` as `category.media.alt` ,
`category.media.translation.customFields` ,
`category.media.translation.customFields` as `category.media.customFields` ,
`category.translation.name` ,
`category.translation.name` as `category.name` ,
`category.translation.breadcrumb` ,
`category.translation.breadcrumb` as `category.breadcrumb` ,
`category.translation.slotConfig` ,
`category.translation.slotConfig` as `category.slotConfig` ,
`category.translation.linkType` ,
`category.translation.linkType` as `category.linkType` ,
`category.translation.internalLink` ,
`category.translation.internalLink` as `category.internalLink` ,
`category.translation.externalLink` ,
`category.translation.externalLink` as `category.externalLink` ,
`category.translation.linkNewTab` ,
`category.translation.linkNewTab` as `category.linkNewTab` ,
`category.translation.description` ,
`category.translation.description` as `category.description` ,
`category.translation.metaTitle` ,
`category.translation.metaTitle` as `category.metaTitle` ,
`category.translation.metaDescription` ,
`category.translation.metaDescription` as `category.metaDescription` ,
`category.translation.keywords` ,
`category.translation.keywords` as `category.keywords` ,
`category.translation.customFields` ,
`category.translation.customFields` as `category.customFields`
FROM
`category`
LEFT JOIN `media` `category.media` ON `category` . `media_id` = `category.media` . `id`
LEFT JOIN (
SELECT
`category.translation` . `category_id` ,
`category.translation` . `category_version_id` ,
`category.translation` . `breadcrumb` as `category.translation.breadcrumb` ,
`category.translation` . `name` as `category.translation.name` ,
`category.translation` . `custom_fields` as `category.translation.customFields` ,
`category.translation` . `slot_config` as `category.translation.slotConfig` ,
`category.translation` . `link_type` as `category.translation.linkType` ,
`category.translation` . `internal_link` as `category.translation.internalLink` ,
`category.translation` . `external_link` as `category.translation.externalLink` ,
`category.translation` . `link_new_tab` as `category.translation.linkNewTab` ,
`category.translation` . `description` as `category.translation.description` ,
`category.translation` . `meta_title` as `category.translation.metaTitle` ,
`category.translation` . `meta_description` as `category.translation.metaDescription` ,
`category.translation` . `keywords` as `category.translation.keywords`
FROM
`category_translation` `category.translation`
WHERE
`category.translation` . `language_id` = ?
) `category.category_translation` ON `category.category_translation` . `category_id` = `category` . `id`
AND `category.category_translation` . `category_version_id` = `category` . `version_id`
LEFT JOIN (
SELECT
`category.media.translation` . `media_id` ,
`category.media.translation` . `alt` as `category.media.translation.alt` ,
`category.media.translation` . `title` as `category.media.translation.title` ,
`category.media.translation` . `custom_fields` as `category.media.translation.customFields`
FROM
`media_translation` `category.media.translation`
WHERE
`category.media.translation` . `language_id` = ?
) `category.media.media_translation` ON `category.media.media_translation` . `media_id` = `category.media` . `id`
WHERE
(`category` . `version_id` = ? )
AND (
(
`category` . `path` LIKE ?
AND (
`category` . `level` > ?
AND `category` . `level` < = ?
)
)
)
Copy
SELECT `category` . `id` as `category.id` , `category` . `version_id` as `category.versionId` , `category` . `parent_id` as `category.parentId` , `category` . `parent_version_id` as `category.parentVersionId` , `category` . `after_category_id` as `category.afterCategoryId` , `category` . `after_category_version_id` as `category.afterCategoryVersionId` , `category` . `media_id` as `category.mediaId` , `category` . `display_nested_products` as `category.displayNestedProducts` , `category` . `auto_increment` as `category.autoIncrement` , `category` . `level` as `category.level` , `category` . `path` as `category.path` , `category` . `child_count` as `category.childCount` , `category` . `type` as `category.type` , `category` . `product_assignment_type` as `category.productAssignmentType` , `category` . `visible` as `category.visible` , `category` . `active` as `category.active` , `category` . `cms_page_id` as `category.cmsPageId` , `category` . `cms_page_version_id` as `category.cmsPageVersionId` , `category` . `product_stream_id` as `category.productStreamId` , `category` . `custom_entity_type_id` as `category.customEntityTypeId` , `category` . `created_at` as `category.createdAt` , `category` . `updated_at` as `category.updatedAt` , `category.media` . `id` as `category.media.id` , `category.media` . `user_id` as `category.media.userId` , `category.media` . `media_folder_id` as `category.media.mediaFolderId` , `category.media` . `mime_type` as `category.media.mimeType` , `category.media` . `file_extension` as `category.media.fileExtension` , `category.media` . `uploaded_at` as `category.media.uploadedAt` , `category.media` . `file_name` as `category.media.fileName` , `category.media` . `file_size` as `category.media.fileSize` , `category.media` . `media_type` as `category.media.mediaTypeRaw` , `category.media` . `meta_data` as `category.media.metaData` , `category.media` . `config` as `category.media.config` , `category.media` . `path` as `category.media.path` , `category.media` . `private` as `category.media.private` , `category.media` . `thumbnails_ro` as `category.media.thumbnailsRo` , `category.media` . `file_hash` as `category.media.fileHash` , `category.media` . `created_at` as `category.media.createdAt` , `category.media` . `updated_at` as `category.media.updatedAt` , `category.media.translation.title` , `category.media.translation.title` as `category.media.title` , `category.media.translation.alt` , `category.media.translation.alt` as `category.media.alt` , `category.media.translation.customFields` , `category.media.translation.customFields` as `category.media.customFields` , `category.translation.name` , `category.translation.name` as `category.name` , `category.translation.breadcrumb` , `category.translation.breadcrumb` as `category.breadcrumb` , `category.translation.slotConfig` , `category.translation.slotConfig` as `category.slotConfig` , `category.translation.linkType` , `category.translation.linkType` as `category.linkType` , `category.translation.internalLink` , `category.translation.internalLink` as `category.internalLink` , `category.translation.externalLink` , `category.translation.externalLink` as `category.externalLink` , `category.translation.linkNewTab` , `category.translation.linkNewTab` as `category.linkNewTab` , `category.translation.description` , `category.translation.description` as `category.description` , `category.translation.metaTitle` , `category.translation.metaTitle` as `category.metaTitle` , `category.translation.metaDescription` , `category.translation.metaDescription` as `category.metaDescription` , `category.translation.keywords` , `category.translation.keywords` as `category.keywords` , `category.translation.customFields` , `category.translation.customFields` as `category.customFields` FROM `category` LEFT JOIN `media` `category.media` ON `category` . `media_id` = `category.media` . `id` LEFT JOIN (SELECT `category.translation` . `category_id` , `category.translation` . `category_version_id` , `category.translation` . `breadcrumb` as `category.translation.breadcrumb` , `category.translation` . `name` as `category.translation.name` , `category.translation` . `custom_fields` as `category.translation.customFields` , `category.translation` . `slot_config` as `category.translation.slotConfig` , `category.translation` . `link_type` as `category.translation.linkType` , `category.translation` . `internal_link` as `category.translation.internalLink` , `category.translation` . `external_link` as `category.translation.externalLink` , `category.translation` . `link_new_tab` as `category.translation.linkNewTab` , `category.translation` . `description` as `category.translation.description` , `category.translation` . `meta_title` as `category.translation.metaTitle` , `category.translation` . `meta_description` as `category.translation.metaDescription` , `category.translation` . `keywords` as `category.translation.keywords` FROM `category_translation` `category.translation` WHERE `category.translation` . `language_id` = 0x0230A828E7F14120974FAE38CDACDEDB ) `category.category_translation` ON `category.category_translation` . `category_id` = `category` . `id` AND `category.category_translation` . `category_version_id` = `category` . `version_id` LEFT JOIN (SELECT `category.media.translation` . `media_id` , `category.media.translation` . `alt` as `category.media.translation.alt` , `category.media.translation` . `title` as `category.media.translation.title` , `category.media.translation` . `custom_fields` as `category.media.translation.customFields` FROM `media_translation` `category.media.translation` WHERE `category.media.translation` . `language_id` = 0x0230A828E7F14120974FAE38CDACDEDB ) `category.media.media_translation` ON `category.media.media_translation` . `media_id` = `category.media` . `id` WHERE (`category` . `version_id` = 0x0FA91CE3E96A4BC2BE4BD9CE752C3425 ) AND ((`category` . `path` LIKE '%|fac3ea648fe24a2397bf167bcc48b7ac|%' AND (`category` . `level` > 1 AND `category` . `level` < = 7 )));
Copy
96
0.93 ms
SELECT LOWER (HEX (`category` . `parent_id` )) as `category-ids.key` , COUNT (`category` . `id` ) as `category-ids.count` , COUNT (DISTINCT `category` . `id` ) as `visible-children-count` FROM `category` WHERE (`category` . `version_id` = ? ) AND ((`category` . `path` LIKE ? AND `category` . `level` = ? AND `category` . `active` = ? AND `category` . `visible` = ? )) GROUP BY `category` . `parent_id`
Parameters :
[
b"\x0F ©\x1C ãéjK¾KÙÎu,4% "
"%|fac3ea648fe24a2397bf167bcc48b7ac|% "
7
true
true
]
SELECT LOWER (HEX (`category` . `parent_id` )) as `category-ids.key` , COUNT (`category` . `id` ) as `category-ids.count` , COUNT (DISTINCT `category` . `id` ) as `visible-children-count` FROM `category` WHERE (`category` . `version_id` = 0x0FA91CE3E96A4BC2BE4BD9CE752C3425 ) AND ((`category` . `path` LIKE '%|fac3ea648fe24a2397bf167bcc48b7ac|%' AND `category` . `level` = 7 AND `category` . `active` = 1 AND `category` . `visible` = 1 )) GROUP BY `category` . `parent_id` ;
Copy
97
1.50 ms
SELECT `category` . `id` as `category.id` , `category` . `version_id` as `category.versionId` , `category` . `parent_id` as `category.parentId` , `category` . `parent_version_id` as `category.parentVersionId` , `category` . `after_category_id` as `category.afterCategoryId` , `category` . `after_category_version_id` as `category.afterCategoryVersionId` , `category` . `media_id` as `category.mediaId` , `category` . `display_nested_products` as `category.displayNestedProducts` , `category` . `auto_increment` as `category.autoIncrement` , `category` . `level` as `category.level` , `category` . `path` as `category.path` , `category` . `child_count` as `category.childCount` , `category` . `type` as `category.type` , `category` . `product_assignment_type` as `category.productAssignmentType` , `category` . `visible` as `category.visible` , `category` . `active` as `category.active` , `category` . `cms_page_id` as `category.cmsPageId` , `category` . `cms_page_version_id` as `category.cmsPageVersionId` , `category` . `product_stream_id` as `category.productStreamId` , `category` . `custom_entity_type_id` as `category.customEntityTypeId` , `category` . `created_at` as `category.createdAt` , `category` . `updated_at` as `category.updatedAt` , `category.media` . `id` as `category.media.id` , `category.media` . `user_id` as `category.media.userId` , `category.media` . `media_folder_id` as `category.media.mediaFolderId` , `category.media` . `mime_type` as `category.media.mimeType` , `category.media` . `file_extension` as `category.media.fileExtension` , `category.media` . `uploaded_at` as `category.media.uploadedAt` , `category.media` . `file_name` as `category.media.fileName` , `category.media` . `file_size` as `category.media.fileSize` , `category.media` . `media_type` as `category.media.mediaTypeRaw` , `category.media` . `meta_data` as `category.media.metaData` , `category.media` . `config` as `category.media.config` , `category.media` . `path` as `category.media.path` , `category.media` . `private` as `category.media.private` , `category.media` . `thumbnails_ro` as `category.media.thumbnailsRo` , `category.media` . `file_hash` as `category.media.fileHash` , `category.media` . `created_at` as `category.media.createdAt` , `category.media` . `updated_at` as `category.media.updatedAt` , `category.media.translation.title` , `category.media.translation.title` as `category.media.title` , `category.media.translation.alt` , `category.media.translation.alt` as `category.media.alt` , `category.media.translation.customFields` , `category.media.translation.customFields` as `category.media.customFields` , `category.translation.name` , `category.translation.name` as `category.name` , `category.translation.breadcrumb` , `category.translation.breadcrumb` as `category.breadcrumb` , `category.translation.slotConfig` , `category.translation.slotConfig` as `category.slotConfig` , `category.translation.linkType` , `category.translation.linkType` as `category.linkType` , `category.translation.internalLink` , `category.translation.internalLink` as `category.internalLink` , `category.translation.externalLink` , `category.translation.externalLink` as `category.externalLink` , `category.translation.linkNewTab` , `category.translation.linkNewTab` as `category.linkNewTab` , `category.translation.description` , `category.translation.description` as `category.description` , `category.translation.metaTitle` , `category.translation.metaTitle` as `category.metaTitle` , `category.translation.metaDescription` , `category.translation.metaDescription` as `category.metaDescription` , `category.translation.keywords` , `category.translation.keywords` as `category.keywords` , `category.translation.customFields` , `category.translation.customFields` as `category.customFields` FROM `category` LEFT JOIN `media` `category.media` ON `category` . `media_id` = `category.media` . `id` LEFT JOIN (SELECT `category.translation` . `category_id` , `category.translation` . `category_version_id` , `category.translation` . `breadcrumb` as `category.translation.breadcrumb` , `category.translation` . `name` as `category.translation.name` , `category.translation` . `custom_fields` as `category.translation.customFields` , `category.translation` . `slot_config` as `category.translation.slotConfig` , `category.translation` . `link_type` as `category.translation.linkType` , `category.translation` . `internal_link` as `category.translation.internalLink` , `category.translation` . `external_link` as `category.translation.externalLink` , `category.translation` . `link_new_tab` as `category.translation.linkNewTab` , `category.translation` . `description` as `category.translation.description` , `category.translation` . `meta_title` as `category.translation.metaTitle` , `category.translation` . `meta_description` as `category.translation.metaDescription` , `category.translation` . `keywords` as `category.translation.keywords` FROM `category_translation` `category.translation` WHERE `category.translation` . `language_id` = ? ) `category.category_translation` ON `category.category_translation` . `category_id` = `category` . `id` AND `category.category_translation` . `category_version_id` = `category` . `version_id` LEFT JOIN (SELECT `category.media.translation` . `media_id` , `category.media.translation` . `alt` as `category.media.translation.alt` , `category.media.translation` . `title` as `category.media.translation.title` , `category.media.translation` . `custom_fields` as `category.media.translation.customFields` FROM `media_translation` `category.media.translation` WHERE `category.media.translation` . `language_id` = ? ) `category.media.media_translation` ON `category.media.media_translation` . `media_id` = `category.media` . `id` WHERE (`category` . `version_id` = ? ) AND (`category` . `id` IN (? ))
Parameters :
[
b"\x02 0¨(çñA —O®8ͬÞÛ "
b"\x02 0¨(çñA —O®8ͬÞÛ "
b"\x0F ©\x1C ãéjK¾KÙÎu,4% "
b"·├ÛdÅÔJ#ù┐\x16 {╠HÀ¼ "
]
SELECT
`category` . `id` as `category.id` ,
`category` . `version_id` as `category.versionId` ,
`category` . `parent_id` as `category.parentId` ,
`category` . `parent_version_id` as `category.parentVersionId` ,
`category` . `after_category_id` as `category.afterCategoryId` ,
`category` . `after_category_version_id` as `category.afterCategoryVersionId` ,
`category` . `media_id` as `category.mediaId` ,
`category` . `display_nested_products` as `category.displayNestedProducts` ,
`category` . `auto_increment` as `category.autoIncrement` ,
`category` . `level` as `category.level` ,
`category` . `path` as `category.path` ,
`category` . `child_count` as `category.childCount` ,
`category` . `type` as `category.type` ,
`category` . `product_assignment_type` as `category.productAssignmentType` ,
`category` . `visible` as `category.visible` ,
`category` . `active` as `category.active` ,
`category` . `cms_page_id` as `category.cmsPageId` ,
`category` . `cms_page_version_id` as `category.cmsPageVersionId` ,
`category` . `product_stream_id` as `category.productStreamId` ,
`category` . `custom_entity_type_id` as `category.customEntityTypeId` ,
`category` . `created_at` as `category.createdAt` ,
`category` . `updated_at` as `category.updatedAt` ,
`category.media` . `id` as `category.media.id` ,
`category.media` . `user_id` as `category.media.userId` ,
`category.media` . `media_folder_id` as `category.media.mediaFolderId` ,
`category.media` . `mime_type` as `category.media.mimeType` ,
`category.media` . `file_extension` as `category.media.fileExtension` ,
`category.media` . `uploaded_at` as `category.media.uploadedAt` ,
`category.media` . `file_name` as `category.media.fileName` ,
`category.media` . `file_size` as `category.media.fileSize` ,
`category.media` . `media_type` as `category.media.mediaTypeRaw` ,
`category.media` . `meta_data` as `category.media.metaData` ,
`category.media` . `config` as `category.media.config` ,
`category.media` . `path` as `category.media.path` ,
`category.media` . `private` as `category.media.private` ,
`category.media` . `thumbnails_ro` as `category.media.thumbnailsRo` ,
`category.media` . `file_hash` as `category.media.fileHash` ,
`category.media` . `created_at` as `category.media.createdAt` ,
`category.media` . `updated_at` as `category.media.updatedAt` ,
`category.media.translation.title` ,
`category.media.translation.title` as `category.media.title` ,
`category.media.translation.alt` ,
`category.media.translation.alt` as `category.media.alt` ,
`category.media.translation.customFields` ,
`category.media.translation.customFields` as `category.media.customFields` ,
`category.translation.name` ,
`category.translation.name` as `category.name` ,
`category.translation.breadcrumb` ,
`category.translation.breadcrumb` as `category.breadcrumb` ,
`category.translation.slotConfig` ,
`category.translation.slotConfig` as `category.slotConfig` ,
`category.translation.linkType` ,
`category.translation.linkType` as `category.linkType` ,
`category.translation.internalLink` ,
`category.translation.internalLink` as `category.internalLink` ,
`category.translation.externalLink` ,
`category.translation.externalLink` as `category.externalLink` ,
`category.translation.linkNewTab` ,
`category.translation.linkNewTab` as `category.linkNewTab` ,
`category.translation.description` ,
`category.translation.description` as `category.description` ,
`category.translation.metaTitle` ,
`category.translation.metaTitle` as `category.metaTitle` ,
`category.translation.metaDescription` ,
`category.translation.metaDescription` as `category.metaDescription` ,
`category.translation.keywords` ,
`category.translation.keywords` as `category.keywords` ,
`category.translation.customFields` ,
`category.translation.customFields` as `category.customFields`
FROM
`category`
LEFT JOIN `media` `category.media` ON `category` . `media_id` = `category.media` . `id`
LEFT JOIN (
SELECT
`category.translation` . `category_id` ,
`category.translation` . `category_version_id` ,
`category.translation` . `breadcrumb` as `category.translation.breadcrumb` ,
`category.translation` . `name` as `category.translation.name` ,
`category.translation` . `custom_fields` as `category.translation.customFields` ,
`category.translation` . `slot_config` as `category.translation.slotConfig` ,
`category.translation` . `link_type` as `category.translation.linkType` ,
`category.translation` . `internal_link` as `category.translation.internalLink` ,
`category.translation` . `external_link` as `category.translation.externalLink` ,
`category.translation` . `link_new_tab` as `category.translation.linkNewTab` ,
`category.translation` . `description` as `category.translation.description` ,
`category.translation` . `meta_title` as `category.translation.metaTitle` ,
`category.translation` . `meta_description` as `category.translation.metaDescription` ,
`category.translation` . `keywords` as `category.translation.keywords`
FROM
`category_translation` `category.translation`
WHERE
`category.translation` . `language_id` = ?
) `category.category_translation` ON `category.category_translation` . `category_id` = `category` . `id`
AND `category.category_translation` . `category_version_id` = `category` . `version_id`
LEFT JOIN (
SELECT
`category.media.translation` . `media_id` ,
`category.media.translation` . `alt` as `category.media.translation.alt` ,
`category.media.translation` . `title` as `category.media.translation.title` ,
`category.media.translation` . `custom_fields` as `category.media.translation.customFields`
FROM
`media_translation` `category.media.translation`
WHERE
`category.media.translation` . `language_id` = ?
) `category.media.media_translation` ON `category.media.media_translation` . `media_id` = `category.media` . `id`
WHERE
(`category` . `version_id` = ? )
AND (
`category` . `id` IN (? )
)
Copy
SELECT `category` . `id` as `category.id` , `category` . `version_id` as `category.versionId` , `category` . `parent_id` as `category.parentId` , `category` . `parent_version_id` as `category.parentVersionId` , `category` . `after_category_id` as `category.afterCategoryId` , `category` . `after_category_version_id` as `category.afterCategoryVersionId` , `category` . `media_id` as `category.mediaId` , `category` . `display_nested_products` as `category.displayNestedProducts` , `category` . `auto_increment` as `category.autoIncrement` , `category` . `level` as `category.level` , `category` . `path` as `category.path` , `category` . `child_count` as `category.childCount` , `category` . `type` as `category.type` , `category` . `product_assignment_type` as `category.productAssignmentType` , `category` . `visible` as `category.visible` , `category` . `active` as `category.active` , `category` . `cms_page_id` as `category.cmsPageId` , `category` . `cms_page_version_id` as `category.cmsPageVersionId` , `category` . `product_stream_id` as `category.productStreamId` , `category` . `custom_entity_type_id` as `category.customEntityTypeId` , `category` . `created_at` as `category.createdAt` , `category` . `updated_at` as `category.updatedAt` , `category.media` . `id` as `category.media.id` , `category.media` . `user_id` as `category.media.userId` , `category.media` . `media_folder_id` as `category.media.mediaFolderId` , `category.media` . `mime_type` as `category.media.mimeType` , `category.media` . `file_extension` as `category.media.fileExtension` , `category.media` . `uploaded_at` as `category.media.uploadedAt` , `category.media` . `file_name` as `category.media.fileName` , `category.media` . `file_size` as `category.media.fileSize` , `category.media` . `media_type` as `category.media.mediaTypeRaw` , `category.media` . `meta_data` as `category.media.metaData` , `category.media` . `config` as `category.media.config` , `category.media` . `path` as `category.media.path` , `category.media` . `private` as `category.media.private` , `category.media` . `thumbnails_ro` as `category.media.thumbnailsRo` , `category.media` . `file_hash` as `category.media.fileHash` , `category.media` . `created_at` as `category.media.createdAt` , `category.media` . `updated_at` as `category.media.updatedAt` , `category.media.translation.title` , `category.media.translation.title` as `category.media.title` , `category.media.translation.alt` , `category.media.translation.alt` as `category.media.alt` , `category.media.translation.customFields` , `category.media.translation.customFields` as `category.media.customFields` , `category.translation.name` , `category.translation.name` as `category.name` , `category.translation.breadcrumb` , `category.translation.breadcrumb` as `category.breadcrumb` , `category.translation.slotConfig` , `category.translation.slotConfig` as `category.slotConfig` , `category.translation.linkType` , `category.translation.linkType` as `category.linkType` , `category.translation.internalLink` , `category.translation.internalLink` as `category.internalLink` , `category.translation.externalLink` , `category.translation.externalLink` as `category.externalLink` , `category.translation.linkNewTab` , `category.translation.linkNewTab` as `category.linkNewTab` , `category.translation.description` , `category.translation.description` as `category.description` , `category.translation.metaTitle` , `category.translation.metaTitle` as `category.metaTitle` , `category.translation.metaDescription` , `category.translation.metaDescription` as `category.metaDescription` , `category.translation.keywords` , `category.translation.keywords` as `category.keywords` , `category.translation.customFields` , `category.translation.customFields` as `category.customFields` FROM `category` LEFT JOIN `media` `category.media` ON `category` . `media_id` = `category.media` . `id` LEFT JOIN (SELECT `category.translation` . `category_id` , `category.translation` . `category_version_id` , `category.translation` . `breadcrumb` as `category.translation.breadcrumb` , `category.translation` . `name` as `category.translation.name` , `category.translation` . `custom_fields` as `category.translation.customFields` , `category.translation` . `slot_config` as `category.translation.slotConfig` , `category.translation` . `link_type` as `category.translation.linkType` , `category.translation` . `internal_link` as `category.translation.internalLink` , `category.translation` . `external_link` as `category.translation.externalLink` , `category.translation` . `link_new_tab` as `category.translation.linkNewTab` , `category.translation` . `description` as `category.translation.description` , `category.translation` . `meta_title` as `category.translation.metaTitle` , `category.translation` . `meta_description` as `category.translation.metaDescription` , `category.translation` . `keywords` as `category.translation.keywords` FROM `category_translation` `category.translation` WHERE `category.translation` . `language_id` = 0x0230A828E7F14120974FAE38CDACDEDB ) `category.category_translation` ON `category.category_translation` . `category_id` = `category` . `id` AND `category.category_translation` . `category_version_id` = `category` . `version_id` LEFT JOIN (SELECT `category.media.translation` . `media_id` , `category.media.translation` . `alt` as `category.media.translation.alt` , `category.media.translation` . `title` as `category.media.translation.title` , `category.media.translation` . `custom_fields` as `category.media.translation.customFields` FROM `media_translation` `category.media.translation` WHERE `category.media.translation` . `language_id` = 0x0230A828E7F14120974FAE38CDACDEDB ) `category.media.media_translation` ON `category.media.media_translation` . `media_id` = `category.media` . `id` WHERE (`category` . `version_id` = 0x0FA91CE3E96A4BC2BE4BD9CE752C3425 ) AND (`category` . `id` IN (0xFAC3EA648FE24A2397BF167BCC48B7AC ));
Copy
98
0.76 ms
SELECT `language` . `id` FROM `language` LEFT JOIN `sales_channel_domain` `language.salesChannelDomains` ON `language` . `id` = `language.salesChannelDomains` . `language_id` LEFT JOIN `sales_channel_language` `language.salesChannels.mapping` ON `language` . `id` = `language.salesChannels.mapping` . `language_id` LEFT JOIN `sales_channel` `language.salesChannels` ON `language.salesChannels.mapping` . `sales_channel_id` = `language.salesChannels` . `id` WHERE (`language.salesChannelDomains` . `sales_channel_id` = ? AND `language.salesChannels` . `id` = ? ) GROUP BY `language` . `id` ORDER BY MIN (`language` . `name` ) ASC
Parameters :
[
b">{k'Ô\x1E O‡!¼GnÏMj "
b">{k'Ô\x1E O‡!¼GnÏMj "
]
SELECT `language` . `id` FROM `language` LEFT JOIN `sales_channel_domain` `language.salesChannelDomains` ON `language` . `id` = `language.salesChannelDomains` . `language_id` LEFT JOIN `sales_channel_language` `language.salesChannels.mapping` ON `language` . `id` = `language.salesChannels.mapping` . `language_id` LEFT JOIN `sales_channel` `language.salesChannels` ON `language.salesChannels.mapping` . `sales_channel_id` = `language.salesChannels` . `id` WHERE (`language.salesChannelDomains` . `sales_channel_id` = 0x3E7B6B27D41E4F87AD21BC476ECF4D6A AND `language.salesChannels` . `id` = 0x3E7B6B27D41E4F87AD21BC476ECF4D6A ) GROUP BY `language` . `id` ORDER BY MIN (`language` . `name` ) ASC ;
Copy
99
0.73 ms
SELECT `language` . `id` as `language.id` , `language` . `parent_id` as `language.parentId` , `language` . `locale_id` as `language.localeId` , `language` . `translation_code_id` as `language.translationCodeId` , `language` . `name` as `language.name` , `language` . `custom_fields` as `language.customFields` , `language` . `created_at` as `language.createdAt` , `language` . `updated_at` as `language.updatedAt` , `language.translationCode` . `id` as `language.translationCode.id` , `language.translationCode` . `code` as `language.translationCode.code` , `language.translationCode` . `created_at` as `language.translationCode.createdAt` , `language.translationCode` . `updated_at` as `language.translationCode.updatedAt` , `language.translationCode.translation.name` , `language.translationCode.translation.name` as `language.translationCode.name` , `language.translationCode.translation.territory` , `language.translationCode.translation.territory` as `language.translationCode.territory` , `language.translationCode.translation.customFields` , `language.translationCode.translation.customFields` as `language.translationCode.customFields` FROM `language` LEFT JOIN `locale` `language.translationCode` ON `language` . `translation_code_id` = `language.translationCode` . `id` LEFT JOIN (SELECT `language.translationCode.translation` . `locale_id` , `language.translationCode.translation` . `name` as `language.translationCode.translation.name` , `language.translationCode.translation` . `territory` as `language.translationCode.translation.territory` , `language.translationCode.translation` . `custom_fields` as `language.translationCode.translation.customFields` FROM `locale_translation` `language.translationCode.translation` WHERE `language.translationCode.translation` . `language_id` = ? ) `language.translationCode.locale_translation` ON `language.translationCode.locale_translation` . `locale_id` = `language.translationCode` . `id` WHERE `language` . `id` IN (? )
Parameters :
[
b"\x02 0¨(çñA —O®8ͬÞÛ "
b"\x02 0¨(çñA —O®8ͬÞÛ "
]
SELECT `language` . `id` as `language.id` , `language` . `parent_id` as `language.parentId` , `language` . `locale_id` as `language.localeId` , `language` . `translation_code_id` as `language.translationCodeId` , `language` . `name` as `language.name` , `language` . `custom_fields` as `language.customFields` , `language` . `created_at` as `language.createdAt` , `language` . `updated_at` as `language.updatedAt` , `language.translationCode` . `id` as `language.translationCode.id` , `language.translationCode` . `code` as `language.translationCode.code` , `language.translationCode` . `created_at` as `language.translationCode.createdAt` , `language.translationCode` . `updated_at` as `language.translationCode.updatedAt` , `language.translationCode.translation.name` , `language.translationCode.translation.name` as `language.translationCode.name` , `language.translationCode.translation.territory` , `language.translationCode.translation.territory` as `language.translationCode.territory` , `language.translationCode.translation.customFields` , `language.translationCode.translation.customFields` as `language.translationCode.customFields` FROM `language` LEFT JOIN `locale` `language.translationCode` ON `language` . `translation_code_id` = `language.translationCode` . `id` LEFT JOIN (SELECT `language.translationCode.translation` . `locale_id` , `language.translationCode.translation` . `name` as `language.translationCode.translation.name` , `language.translationCode.translation` . `territory` as `language.translationCode.translation.territory` , `language.translationCode.translation` . `custom_fields` as `language.translationCode.translation.customFields` FROM `locale_translation` `language.translationCode.translation` WHERE `language.translationCode.translation` . `language_id` = 0x0230A828E7F14120974FAE38CDACDEDB ) `language.translationCode.locale_translation` ON `language.translationCode.locale_translation` . `locale_id` = `language.translationCode` . `id` WHERE `language` . `id` IN (0x0230A828E7F14120974FAE38CDACDEDB );
Copy
100
0.51 ms
SELECT `currency` . `id` FROM `currency` LEFT JOIN `sales_channel_currency` `currency.salesChannels.mapping` ON `currency` . `id` = `currency.salesChannels.mapping` . `currency_id` LEFT JOIN `sales_channel` `currency.salesChannels` ON `currency.salesChannels.mapping` . `sales_channel_id` = `currency.salesChannels` . `id` WHERE (`currency.salesChannels` . `id` = ? ) GROUP BY `currency` . `id`
Parameters :
[
b">{k'Ô\x1E O‡!¼GnÏMj "
]
SELECT `currency` . `id` FROM `currency` LEFT JOIN `sales_channel_currency` `currency.salesChannels.mapping` ON `currency` . `id` = `currency.salesChannels.mapping` . `currency_id` LEFT JOIN `sales_channel` `currency.salesChannels` ON `currency.salesChannels.mapping` . `sales_channel_id` = `currency.salesChannels` . `id` WHERE (`currency.salesChannels` . `id` = 0x3E7B6B27D41E4F87AD21BC476ECF4D6A ) GROUP BY `currency` . `id` ;
Copy
101
0.65 ms
SELECT `currency` . `id` as `currency.id` , `currency` . `factor` as `currency.factor` , `currency` . `symbol` as `currency.symbol` , `currency` . `iso_code` as `currency.isoCode` , `currency` . `position` as `currency.position` , `currency` . `tax_free_from` as `currency.taxFreeFrom` , `currency` . `item_rounding` as `currency.itemRounding` , `currency` . `total_rounding` as `currency.totalRounding` , `currency` . `created_at` as `currency.createdAt` , `currency` . `updated_at` as `currency.updatedAt` , `currency.translation.shortName` , `currency.translation.shortName` as `currency.shortName` , `currency.translation.name` , `currency.translation.name` as `currency.name` , `currency.translation.customFields` , `currency.translation.customFields` as `currency.customFields` FROM `currency` LEFT JOIN (SELECT `currency.translation` . `currency_id` , `currency.translation` . `short_name` as `currency.translation.shortName` , `currency.translation` . `name` as `currency.translation.name` , `currency.translation` . `custom_fields` as `currency.translation.customFields` FROM `currency_translation` `currency.translation` WHERE `currency.translation` . `language_id` = ? ) `currency.currency_translation` ON `currency.currency_translation` . `currency_id` = `currency` . `id` WHERE `currency` . `id` IN (? )
Parameters :
[
b"\x02 0¨(çñA —O®8ͬÞÛ "
b"·ÒUK\f èGÍ‚ó¬›ÑÀßÊ "
]
SELECT `currency` . `id` as `currency.id` , `currency` . `factor` as `currency.factor` , `currency` . `symbol` as `currency.symbol` , `currency` . `iso_code` as `currency.isoCode` , `currency` . `position` as `currency.position` , `currency` . `tax_free_from` as `currency.taxFreeFrom` , `currency` . `item_rounding` as `currency.itemRounding` , `currency` . `total_rounding` as `currency.totalRounding` , `currency` . `created_at` as `currency.createdAt` , `currency` . `updated_at` as `currency.updatedAt` , `currency.translation.shortName` , `currency.translation.shortName` as `currency.shortName` , `currency.translation.name` , `currency.translation.name` as `currency.name` , `currency.translation.customFields` , `currency.translation.customFields` as `currency.customFields` FROM `currency` LEFT JOIN (SELECT `currency.translation` . `currency_id` , `currency.translation` . `short_name` as `currency.translation.shortName` , `currency.translation` . `name` as `currency.translation.name` , `currency.translation` . `custom_fields` as `currency.translation.customFields` FROM `currency_translation` `currency.translation` WHERE `currency.translation` . `language_id` = 0x0230A828E7F14120974FAE38CDACDEDB ) `currency.currency_translation` ON `currency.currency_translation` . `currency_id` = `currency` . `id` WHERE `currency` . `id` IN (0xB7D2554B0CE847CD82F3AC9BD1C0DFCA );
Copy
102
16.62 ms
SELECT seo_path_info , path_info , sales_channel_id FROM seo_url WHERE (seo_url . is_canonical = 1 ) AND (seo_url . path_info IN (? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? )) AND (seo_url . language_id = ? ) AND (seo_url . sales_channel_id = ? OR seo_url . sales_channel_id IS NULL ) AND (seo_url . is_deleted = 0 )
Parameters :
[
"/navigation/00000000000000000000000002290945 "
"/navigation/00000000000000000000000001930055 "
"/navigation/00000000000000000000000002290406 "
"/navigation/00000000000000000000000002252684 "
"/navigation/00000000000000000000000002252685 "
"/navigation/00000000000000000000000002290392 "
"/navigation/00000000000000000000000002290393 "
"/navigation/00000000000000000000000002290394 "
"/navigation/00000000000000000000000002290395 "
"/navigation/00000000000000000000000002290396 "
"/navigation/00000000000000000000000002290397 "
"/navigation/00000000000000000000000002290399 "
"/navigation/00000000000000000000000002290864 "
"/navigation/00000000000000000000000001930057 "
"/navigation/00000000000000000000000002189666 "
"/navigation/00000000000000000000000002290444 "
"/navigation/00000000000000000000000002290445 "
"/navigation/00000000000000000000000002290446 "
"/navigation/00000000000000000000000002290449 "
"/navigation/00000000000000000000000002290452 "
"/navigation/00000000000000000000000002290454 "
"/navigation/00000000000000000000000002290458 "
"/navigation/00000000000000000000000002290861 "
"/navigation/00000000000000000000000001953173 "
"/navigation/00000000000000000000000002221430 "
"/navigation/00000000000000000000000002228868 "
"/navigation/00000000000000000000000002269596 "
"/navigation/00000000000000000000000002290416 "
"/navigation/00000000000000000000000002290426 "
"/navigation/00000000000000000000000002234739 "
"/navigation/00000000000000000000000002290429 "
"/navigation/00000000000000000000000002290436 "
"/navigation/00000000000000000000000002290417 "
"/navigation/00000000000000000000000002290424 "
"/navigation/00000000000000000000000002290421 "
"/navigation/00000000000000000000000002290432 "
"/navigation/00000000000000000000000002290439 "
"/navigation/00000000000000000000000002290440 "
"/navigation/00000000000000000000000002333248 "
"/navigation/00000000000000000000000002333324 "
"/navigation/00000000000000000000000002228846 "
"/navigation/00000000000000000000000001959110 "
"/navigation/00000000000000000000000002146186 "
"/navigation/00000000000000000000000002222588 "
"/navigation/00000000000000000000000002228544 "
"/navigation/00000000000000000000000002228847 "
"/navigation/00000000000000000000000002228849 "
"/navigation/00000000000000000000000002290381 "
"/navigation/00000000000000000000000002290382 "
"/navigation/00000000000000000000000002290383 "
"/navigation/00000000000000000000000001960529 "
"/navigation/00000000000000000000000002221431 "
"/navigation/00000000000000000000000002222587 "
"/navigation/00000000000000000000000002228869 "
"/navigation/00000000000000000000000001975681 "
"/navigation/00000000000000000000000002228852 "
"/navigation/00000000000000000000000002228857 "
"/navigation/00000000000000000000000002228858 "
"/navigation/00000000000000000000000002228865 "
"/navigation/00000000000000000000000002290366 "
"/navigation/00000000000000000000000002290367 "
"/navigation/00000000000000000000000002146181 "
"/navigation/00000000000000000000000002167020 "
"/navigation/00000000000000000000000002229931 "
"/navigation/00000000000000000000000002278119 "
"/navigation/00000000000000000000000002290378 "
"/navigation/00000000000000000000000002326601 "
"/navigation/00000000000000000000000002326602 "
"/navigation/00000000000000000000000002326604 "
"/navigation/00000000000000000000000002284912 "
"/navigation/00000000000000000000000002228850 "
"/navigation/00000000000000000000000001953175 "
"/navigation/00000000000000000000000002290462 "
"/navigation/00000000000000000000000002290463 "
"/navigation/00000000000000000000000001930052 "
"/navigation/00000000000000000000000002221429 "
"/navigation/00000000000000000000000002290464 "
"/navigation/00000000000000000000000002290465 "
"/navigation/00000000000000000000000002290466 "
"/navigation/00000000000000000000000002290459 "
"/navigation/00000000000000000000000002290460 "
"/navigation/00000000000000000000000002290461 "
"/navigation/00000000000000000000000002228886 "
"/navigation/00000000000000000000000002146187 "
"/navigation/00000000000000000000000002290474 "
"/navigation/00000000000000000000000002290475 "
"/navigation/00000000000000000000000002290476 "
"/navigation/00000000000000000000000002290469 "
"/navigation/00000000000000000000000002290470 "
"/navigation/00000000000000000000000002290471 "
"/navigation/00000000000000000000000002290472 "
"/navigation/00000000000000000000000001959446 "
"/navigation/00000000000000000000000002228883 "
"/navigation/00000000000000000000000002254346 "
"/navigation/00000000000000000000000002290477 "
"/navigation/00000000000000000000000002290478 "
"/navigation/00000000000000000000000002290479 "
"/navigation/00000000000000000000000002290480 "
"/navigation/00000000000000000000000002290481 "
"/navigation/00000000000000000000000002290482 "
"/navigation/00000000000000000000000002290483 "
"/navigation/00000000000000000000000001965597 "
"/navigation/00000000000000000000000002146180 "
"/navigation/00000000000000000000000002228879 "
"/navigation/00000000000000000000000002228880 "
"/navigation/00000000000000000000000002228881 "
"/navigation/00000000000000000000000002228882 "
"/navigation/00000000000000000000000002290489 "
"/navigation/00000000000000000000000002290490 "
"/navigation/00000000000000000000000002327047 "
"/navigation/00000000000000000000000002146182 "
"/navigation/00000000000000000000000001969660 "
"/navigation/00000000000000000000000002218647 "
"/navigation/00000000000000000000000002218649 "
"/navigation/00000000000000000000000002289933 "
"/navigation/00000000000000000000000002289934 "
"/navigation/00000000000000000000000002289939 "
"/navigation/00000000000000000000000002146192 "
"/navigation/00000000000000000000000002149472 "
"/navigation/00000000000000000000000002289862 "
"/navigation/00000000000000000000000002289863 "
"/navigation/00000000000000000000000002149500 "
"/navigation/00000000000000000000000002289858 "
"/navigation/00000000000000000000000002289859 "
"/navigation/00000000000000000000000002289860 "
"/navigation/00000000000000000000000002218612 "
"/navigation/00000000000000000000000002218625 "
"/navigation/00000000000000000000000002273524 "
"/navigation/00000000000000000000000002273525 "
"/navigation/00000000000000000000000002273526 "
"/navigation/00000000000000000000000002273528 "
"/navigation/00000000000000000000000002284012 "
"/navigation/00000000000000000000000002289867 "
"/navigation/00000000000000000000000002289873 "
"/navigation/00000000000000000000000002218613 "
"/navigation/00000000000000000000000002289879 "
"/navigation/00000000000000000000000002289881 "
"/navigation/00000000000000000000000002289882 "
"/navigation/00000000000000000000000002289883 "
"/navigation/00000000000000000000000002289885 "
"/navigation/00000000000000000000000002289886 "
"/navigation/00000000000000000000000002289887 "
"/navigation/00000000000000000000000002289888 "
"/navigation/00000000000000000000000002289889 "
"/navigation/00000000000000000000000002290017 "
"/navigation/00000000000000000000000002218648 "
"/navigation/00000000000000000000000002289901 "
"/navigation/00000000000000000000000002289903 "
"/navigation/00000000000000000000000002289904 "
"/navigation/00000000000000000000000002289906 "
"/navigation/00000000000000000000000002289907 "
"/navigation/00000000000000000000000002228908 "
"/navigation/00000000000000000000000002218624 "
"/navigation/00000000000000000000000002218626 "
"/navigation/00000000000000000000000002289868 "
"/navigation/00000000000000000000000002289869 "
"/navigation/00000000000000000000000002289870 "
"/navigation/00000000000000000000000002289871 "
"/navigation/00000000000000000000000002289872 "
"/navigation/00000000000000000000000002289874 "
"/navigation/00000000000000000000000002289876 "
"/navigation/00000000000000000000000002289877 "
"/navigation/00000000000000000000000002228909 "
"/navigation/00000000000000000000000002277272 "
"/navigation/00000000000000000000000002289865 "
"/navigation/00000000000000000000000002148264 "
"/navigation/00000000000000000000000002255743 "
"/navigation/00000000000000000000000002290491 "
"/navigation/00000000000000000000000002290492 "
"/navigation/00000000000000000000000002290493 "
"/navigation/00000000000000000000000002290494 "
"/navigation/00000000000000000000000002290495 "
"/navigation/00000000000000000000000002290496 "
"/navigation/00000000000000000000000002290497 "
"/navigation/00000000000000000000000002290498 "
"/navigation/00000000000000000000000002290499 "
"/navigation/00000000000000000000000002290558 "
"/navigation/00000000000000000000000002189667 "
"/navigation/00000000000000000000000002228875 "
"/navigation/00000000000000000000000002228876 "
"/navigation/00000000000000000000000002228877 "
"/navigation/00000000000000000000000002228878 "
"/navigation/00000000000000000000000002290485 "
"/navigation/00000000000000000000000002290486 "
"/navigation/00000000000000000000000002290487 "
"/navigation/00000000000000000000000002228887 "
"/navigation/00000000000000000000000002068372 "
"/navigation/00000000000000000000000002146184 "
"/navigation/00000000000000000000000002228888 "
"/navigation/00000000000000000000000002230073 "
"/navigation/00000000000000000000000002290467 "
"/navigation/00000000000000000000000002290468 "
"/navigation/00000000000000000000000002290949 "
"/navigation/00000000000000000000000002290953 "
"/navigation/00000000000000000000000002286248 "
"/navigation/00000000000000000000000002299445 "
"/navigation/00000000000000000000000002286967 "
"/navigation/00000000000000000000000002286251 "
"/navigation/00000000000000000000000002287129 "
"/navigation/00000000000000000000000002286968 "
"/navigation/00000000000000000000000002287130 "
"/navigation/00000000000000000000000002334273 "
"/navigation/00000000000000000000000002334115 "
"/navigation/00000000000000000000000002286969 "
"/navigation/00000000000000000000000002286249 "
"/navigation/00000000000000000000000002286970 "
"/navigation/00000000000000000000000002286929 "
"/navigation/00000000000000000000000002286971 "
"/navigation/00000000000000000000000002286932 "
"/navigation/00000000000000000000000002286974 "
"/navigation/00000000000000000000000002286975 "
"/navigation/00000000000000000000000002287012 "
"/navigation/00000000000000000000000002287037 "
"/navigation/00000000000000000000000002287039 "
"/navigation/00000000000000000000000002287038 "
"/navigation/00000000000000000000000002287026 "
"/navigation/00000000000000000000000002287134 "
"/navigation/00000000000000000000000002286976 "
"/navigation/00000000000000000000000002286977 "
"/navigation/00000000000000000000000002287018 "
"/navigation/00000000000000000000000002286934 "
"/navigation/00000000000000000000000002286978 "
"/navigation/00000000000000000000000002286935 "
"/navigation/00000000000000000000000002286936 "
"/navigation/00000000000000000000000002286979 "
"/navigation/00000000000000000000000002286937 "
"/navigation/00000000000000000000000002287042 "
"/navigation/00000000000000000000000002286984 "
"/navigation/00000000000000000000000002287131 "
"/navigation/00000000000000000000000002287019 "
"/navigation/00000000000000000000000002298194 "
"/navigation/00000000000000000000000002286956 "
"/navigation/00000000000000000000000002333426 "
"/navigation/00000000000000000000000002287020 "
"/navigation/00000000000000000000000002286985 "
"/navigation/00000000000000000000000002286993 "
"/navigation/00000000000000000000000002286994 "
"/navigation/00000000000000000000000002286957 "
"/navigation/00000000000000000000000002286958 "
"/navigation/00000000000000000000000002287021 "
"/navigation/00000000000000000000000002287023 "
"/navigation/00000000000000000000000002286995 "
"/navigation/00000000000000000000000002286997 "
"/navigation/00000000000000000000000002287028 "
"/navigation/00000000000000000000000002286960 "
"/navigation/00000000000000000000000002286961 "
"/navigation/00000000000000000000000002286998 "
"/navigation/00000000000000000000000002287000 "
"/navigation/00000000000000000000000002287024 "
"/navigation/00000000000000000000000002287045 "
"/navigation/00000000000000000000000002286962 "
"/navigation/00000000000000000000000002286963 "
"/navigation/00000000000000000000000002287133 "
"/navigation/00000000000000000000000002287029 "
"/navigation/00000000000000000000000002287046 "
"/navigation/00000000000000000000000002286964 "
"/navigation/00000000000000000000000002296256 "
"/navigation/00000000000000000000000002287047 "
"/navigation/00000000000000000000000002287048 "
"/navigation/00000000000000000000000002287025 "
"/navigation/00000000000000000000000002287030 "
"/navigation/00000000000000000000000002333712 "
"/navigation/00000000000000000000000002287127 "
"/navigation/00000000000000000000000002287011 "
"/navigation/00000000000000000000000002286965 "
"/navigation/9ffd8c4072204212adf81a841c3d4e3d "
b"\x02 0¨(çñA —O®8ͬÞÛ "
b">{k'Ô\x1E O‡!¼GnÏMj "
]
SELECT
seo_path_info ,
path_info ,
sales_channel_id
FROM
seo_url
WHERE
(seo_url . is_canonical = 1 )
AND (
seo_url . path_info IN (
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
? ,
?
)
)
AND (seo_url . language_id = ? )
AND (
seo_url . sales_channel_id = ?
OR seo_url . sales_channel_id IS NULL
)
AND (seo_url . is_deleted = 0 )
Copy
SELECT seo_path_info , path_info , sales_channel_id FROM seo_url WHERE (seo_url . is_canonical = 1 ) AND (seo_url . path_info IN ('/navigation/00000000000000000000000002290945' , '/navigation/00000000000000000000000001930055' , '/navigation/00000000000000000000000002290406' , '/navigation/00000000000000000000000002252684' , '/navigation/00000000000000000000000002252685' , '/navigation/00000000000000000000000002290392' , '/navigation/00000000000000000000000002290393' , '/navigation/00000000000000000000000002290394' , '/navigation/00000000000000000000000002290395' , '/navigation/00000000000000000000000002290396' , '/navigation/00000000000000000000000002290397' , '/navigation/00000000000000000000000002290399' , '/navigation/00000000000000000000000002290864' , '/navigation/00000000000000000000000001930057' , '/navigation/00000000000000000000000002189666' , '/navigation/00000000000000000000000002290444' , '/navigation/00000000000000000000000002290445' , '/navigation/00000000000000000000000002290446' , '/navigation/00000000000000000000000002290449' , '/navigation/00000000000000000000000002290452' , '/navigation/00000000000000000000000002290454' , '/navigation/00000000000000000000000002290458' , '/navigation/00000000000000000000000002290861' , '/navigation/00000000000000000000000001953173' , '/navigation/00000000000000000000000002221430' , '/navigation/00000000000000000000000002228868' , '/navigation/00000000000000000000000002269596' , '/navigation/00000000000000000000000002290416' , '/navigation/00000000000000000000000002290426' , '/navigation/00000000000000000000000002234739' , '/navigation/00000000000000000000000002290429' , '/navigation/00000000000000000000000002290436' , '/navigation/00000000000000000000000002290417' , '/navigation/00000000000000000000000002290424' , '/navigation/00000000000000000000000002290421' , '/navigation/00000000000000000000000002290432' , '/navigation/00000000000000000000000002290439' , '/navigation/00000000000000000000000002290440' , '/navigation/00000000000000000000000002333248' , '/navigation/00000000000000000000000002333324' , '/navigation/00000000000000000000000002228846' , '/navigation/00000000000000000000000001959110' , '/navigation/00000000000000000000000002146186' , '/navigation/00000000000000000000000002222588' , '/navigation/00000000000000000000000002228544' , '/navigation/00000000000000000000000002228847' , '/navigation/00000000000000000000000002228849' , '/navigation/00000000000000000000000002290381' , '/navigation/00000000000000000000000002290382' , '/navigation/00000000000000000000000002290383' , '/navigation/00000000000000000000000001960529' , '/navigation/00000000000000000000000002221431' , '/navigation/00000000000000000000000002222587' , '/navigation/00000000000000000000000002228869' , '/navigation/00000000000000000000000001975681' , '/navigation/00000000000000000000000002228852' , '/navigation/00000000000000000000000002228857' , '/navigation/00000000000000000000000002228858' , '/navigation/00000000000000000000000002228865' , '/navigation/00000000000000000000000002290366' , '/navigation/00000000000000000000000002290367' , '/navigation/00000000000000000000000002146181' , '/navigation/00000000000000000000000002167020' , '/navigation/00000000000000000000000002229931' , '/navigation/00000000000000000000000002278119' , '/navigation/00000000000000000000000002290378' , '/navigation/00000000000000000000000002326601' , '/navigation/00000000000000000000000002326602' , '/navigation/00000000000000000000000002326604' , '/navigation/00000000000000000000000002284912' , '/navigation/00000000000000000000000002228850' , '/navigation/00000000000000000000000001953175' , '/navigation/00000000000000000000000002290462' , '/navigation/00000000000000000000000002290463' , '/navigation/00000000000000000000000001930052' , '/navigation/00000000000000000000000002221429' , '/navigation/00000000000000000000000002290464' , '/navigation/00000000000000000000000002290465' , '/navigation/00000000000000000000000002290466' , '/navigation/00000000000000000000000002290459' , '/navigation/00000000000000000000000002290460' , '/navigation/00000000000000000000000002290461' , '/navigation/00000000000000000000000002228886' , '/navigation/00000000000000000000000002146187' , '/navigation/00000000000000000000000002290474' , '/navigation/00000000000000000000000002290475' , '/navigation/00000000000000000000000002290476' , '/navigation/00000000000000000000000002290469' , '/navigation/00000000000000000000000002290470' , '/navigation/00000000000000000000000002290471' , '/navigation/00000000000000000000000002290472' , '/navigation/00000000000000000000000001959446' , '/navigation/00000000000000000000000002228883' , '/navigation/00000000000000000000000002254346' , '/navigation/00000000000000000000000002290477' , '/navigation/00000000000000000000000002290478' , '/navigation/00000000000000000000000002290479' , '/navigation/00000000000000000000000002290480' , '/navigation/00000000000000000000000002290481' , '/navigation/00000000000000000000000002290482' , '/navigation/00000000000000000000000002290483' , '/navigation/00000000000000000000000001965597' , '/navigation/00000000000000000000000002146180' , '/navigation/00000000000000000000000002228879' , '/navigation/00000000000000000000000002228880' , '/navigation/00000000000000000000000002228881' , '/navigation/00000000000000000000000002228882' , '/navigation/00000000000000000000000002290489' , '/navigation/00000000000000000000000002290490' , '/navigation/00000000000000000000000002327047' , '/navigation/00000000000000000000000002146182' , '/navigation/00000000000000000000000001969660' , '/navigation/00000000000000000000000002218647' , '/navigation/00000000000000000000000002218649' , '/navigation/00000000000000000000000002289933' , '/navigation/00000000000000000000000002289934' , '/navigation/00000000000000000000000002289939' , '/navigation/00000000000000000000000002146192' , '/navigation/00000000000000000000000002149472' , '/navigation/00000000000000000000000002289862' , '/navigation/00000000000000000000000002289863' , '/navigation/00000000000000000000000002149500' , '/navigation/00000000000000000000000002289858' , '/navigation/00000000000000000000000002289859' , '/navigation/00000000000000000000000002289860' , '/navigation/00000000000000000000000002218612' , '/navigation/00000000000000000000000002218625' , '/navigation/00000000000000000000000002273524' , '/navigation/00000000000000000000000002273525' , '/navigation/00000000000000000000000002273526' , '/navigation/00000000000000000000000002273528' , '/navigation/00000000000000000000000002284012' , '/navigation/00000000000000000000000002289867' , '/navigation/00000000000000000000000002289873' , '/navigation/00000000000000000000000002218613' , '/navigation/00000000000000000000000002289879' , '/navigation/00000000000000000000000002289881' , '/navigation/00000000000000000000000002289882' , '/navigation/00000000000000000000000002289883' , '/navigation/00000000000000000000000002289885' , '/navigation/00000000000000000000000002289886' , '/navigation/00000000000000000000000002289887' , '/navigation/00000000000000000000000002289888' , '/navigation/00000000000000000000000002289889' , '/navigation/00000000000000000000000002290017' , '/navigation/00000000000000000000000002218648' , '/navigation/00000000000000000000000002289901' , '/navigation/00000000000000000000000002289903' , '/navigation/00000000000000000000000002289904' , '/navigation/00000000000000000000000002289906' , '/navigation/00000000000000000000000002289907' , '/navigation/00000000000000000000000002228908' , '/navigation/00000000000000000000000002218624' , '/navigation/00000000000000000000000002218626' , '/navigation/00000000000000000000000002289868' , '/navigation/00000000000000000000000002289869' , '/navigation/00000000000000000000000002289870' , '/navigation/00000000000000000000000002289871' , '/navigation/00000000000000000000000002289872' , '/navigation/00000000000000000000000002289874' , '/navigation/00000000000000000000000002289876' , '/navigation/00000000000000000000000002289877' , '/navigation/00000000000000000000000002228909' , '/navigation/00000000000000000000000002277272' , '/navigation/00000000000000000000000002289865' , '/navigation/00000000000000000000000002148264' , '/navigation/00000000000000000000000002255743' , '/navigation/00000000000000000000000002290491' , '/navigation/00000000000000000000000002290492' , '/navigation/00000000000000000000000002290493' , '/navigation/00000000000000000000000002290494' , '/navigation/00000000000000000000000002290495' , '/navigation/00000000000000000000000002290496' , '/navigation/00000000000000000000000002290497' , '/navigation/00000000000000000000000002290498' , '/navigation/00000000000000000000000002290499' , '/navigation/00000000000000000000000002290558' , '/navigation/00000000000000000000000002189667' , '/navigation/00000000000000000000000002228875' , '/navigation/00000000000000000000000002228876' , '/navigation/00000000000000000000000002228877' , '/navigation/00000000000000000000000002228878' , '/navigation/00000000000000000000000002290485' , '/navigation/00000000000000000000000002290486' , '/navigation/00000000000000000000000002290487' , '/navigation/00000000000000000000000002228887' , '/navigation/00000000000000000000000002068372' , '/navigation/00000000000000000000000002146184' , '/navigation/00000000000000000000000002228888' , '/navigation/00000000000000000000000002230073' , '/navigation/00000000000000000000000002290467' , '/navigation/00000000000000000000000002290468' , '/navigation/00000000000000000000000002290949' , '/navigation/00000000000000000000000002290953' , '/navigation/00000000000000000000000002286248' , '/navigation/00000000000000000000000002299445' , '/navigation/00000000000000000000000002286967' , '/navigation/00000000000000000000000002286251' , '/navigation/00000000000000000000000002287129' , '/navigation/00000000000000000000000002286968' , '/navigation/00000000000000000000000002287130' , '/navigation/00000000000000000000000002334273' , '/navigation/00000000000000000000000002334115' , '/navigation/00000000000000000000000002286969' , '/navigation/00000000000000000000000002286249' , '/navigation/00000000000000000000000002286970' , '/navigation/00000000000000000000000002286929' , '/navigation/00000000000000000000000002286971' , '/navigation/00000000000000000000000002286932' , '/navigation/00000000000000000000000002286974' , '/navigation/00000000000000000000000002286975' , '/navigation/00000000000000000000000002287012' , '/navigation/00000000000000000000000002287037' , '/navigation/00000000000000000000000002287039' , '/navigation/00000000000000000000000002287038' , '/navigation/00000000000000000000000002287026' , '/navigation/00000000000000000000000002287134' , '/navigation/00000000000000000000000002286976' , '/navigation/00000000000000000000000002286977' , '/navigation/00000000000000000000000002287018' , '/navigation/00000000000000000000000002286934' , '/navigation/00000000000000000000000002286978' , '/navigation/00000000000000000000000002286935' , '/navigation/00000000000000000000000002286936' , '/navigation/00000000000000000000000002286979' , '/navigation/00000000000000000000000002286937' , '/navigation/00000000000000000000000002287042' , '/navigation/00000000000000000000000002286984' , '/navigation/00000000000000000000000002287131' , '/navigation/00000000000000000000000002287019' , '/navigation/00000000000000000000000002298194' , '/navigation/00000000000000000000000002286956' , '/navigation/00000000000000000000000002333426' , '/navigation/00000000000000000000000002287020' , '/navigation/00000000000000000000000002286985' , '/navigation/00000000000000000000000002286993' , '/navigation/00000000000000000000000002286994' , '/navigation/00000000000000000000000002286957' , '/navigation/00000000000000000000000002286958' , '/navigation/00000000000000000000000002287021' , '/navigation/00000000000000000000000002287023' , '/navigation/00000000000000000000000002286995' , '/navigation/00000000000000000000000002286997' , '/navigation/00000000000000000000000002287028' , '/navigation/00000000000000000000000002286960' , '/navigation/00000000000000000000000002286961' , '/navigation/00000000000000000000000002286998' , '/navigation/00000000000000000000000002287000' , '/navigation/00000000000000000000000002287024' , '/navigation/00000000000000000000000002287045' , '/navigation/00000000000000000000000002286962' , '/navigation/00000000000000000000000002286963' , '/navigation/00000000000000000000000002287133' , '/navigation/00000000000000000000000002287029' , '/navigation/00000000000000000000000002287046' , '/navigation/00000000000000000000000002286964' , '/navigation/00000000000000000000000002296256' , '/navigation/00000000000000000000000002287047' , '/navigation/00000000000000000000000002287048' , '/navigation/00000000000000000000000002287025' , '/navigation/00000000000000000000000002287030' , '/navigation/00000000000000000000000002333712' , '/navigation/00000000000000000000000002287127' , '/navigation/00000000000000000000000002287011' , '/navigation/00000000000000000000000002286965' , '/navigation/9ffd8c4072204212adf81a841c3d4e3d' )) AND (seo_url . language_id = 0x0230A828E7F14120974FAE38CDACDEDB ) AND (seo_url . sales_channel_id = 0x3E7B6B27D41E4F87AD21BC476ECF4D6A OR seo_url . sales_channel_id IS NULL ) AND (seo_url . is_deleted = 0 );
Copy
103
0.65 ms
SELECT `rule` . `id` as `rule.id` , `rule` . `name` as `rule.name` , `rule` . `priority` as `rule.priority` , `rule` . `description` as `rule.description` , `rule` . `payload` as `rule.payload` , `rule` . `invalid` as `rule.invalid` , `rule` . `areas` as `rule.areas` , `rule` . `custom_fields` as `rule.customFields` , `rule` . `module_types` as `rule.moduleTypes` , `rule` . `created_at` as `rule.createdAt` , `rule` . `updated_at` as `rule.updatedAt` FROM `rule` WHERE `rule` . `id` IN (? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? )
Parameters :
[
b"Ø\f zÔ\x13 `H\t ±{\x19\x1D ²5u5 "
b"\x1D pH#jÏJR°<\x03 eÅÏQ\ "
b"8X•p\x16 dMä®HÀP\v óÌÈ "
b"D«îåŽÚCU›¼ðöÿ)c\x00 "
b"sÿ]5Ú╩Bi¬Ç\e ÅÓböK "
b"—*{žNàOÇ E$ÁÁ{Wù "
b"ß7ìÀÇèGÅæ×\r t\r ]l\x1A "
b"éŒa'L9EhµùÓ¢‹D°Ù "
b"ìi~ÃAÙOËœ§ÌµŸ),< "
b"(Ê®u¥bO\r ˜Z½\x0E ³*¡` "
b"YÄCê\r II0 \x0E ÏZ\x03 ˜ð\x03 "
b"äNg‚ÆBG·–¸‘Ï%®8÷ "
]
SELECT `rule` . `id` as `rule.id` , `rule` . `name` as `rule.name` , `rule` . `priority` as `rule.priority` , `rule` . `description` as `rule.description` , `rule` . `payload` as `rule.payload` , `rule` . `invalid` as `rule.invalid` , `rule` . `areas` as `rule.areas` , `rule` . `custom_fields` as `rule.customFields` , `rule` . `module_types` as `rule.moduleTypes` , `rule` . `created_at` as `rule.createdAt` , `rule` . `updated_at` as `rule.updatedAt` FROM `rule` WHERE `rule` . `id` IN (0xD80C7AD413604809B17B191DB2357535 , 0x1D7048236ACF4A52B03C0365C5CF515C , 0x3858957016644DE4AE48C0500BF3CCC8 , 0x44ABEEE58EDA43559BBCF0F6FF296300 , 0x73985D35E9CA4269AA801B8FE062944B , 0x972A7B9E4EE04FC7A04524C1C17B57F9 , 0xE1378DB7808A478F919E0D740D5D6C1A , 0xE98C61274C394568B5F9D3A28B44B0D9 , 0xEC697EC341D94FCB9CA7CCB59F292C3C , 0x28CAAE75A5624F0D985ABD0EB32AA160 , 0x59C443EA0D494930A00ECF5A0398F003 , 0xE44E6782C64247B796B891CF25AE38F7 );
Copy
104
0.67 ms
SELECT id , path_info pathInfo , is_canonical isCanonical , sales_channel_id salesChannelId FROM seo_url WHERE (language_id = ? ) AND ((sales_channel_id = ? OR sales_channel_id IS NULL )) AND ((seo_path_info = ? OR seo_path_info = ? ))
Parameters :
[
b"\x02 0¨(çñA —O®8ͬÞÛ "
b">{k'Ô\x1E O‡!¼GnÏMj "
"footer "
"footer/ "
]
SELECT id , path_info pathInfo , is_canonical isCanonical , sales_channel_id salesChannelId FROM seo_url WHERE (language_id = 0x0230A828E7F14120974FAE38CDACDEDB ) AND ((sales_channel_id = 0x3E7B6B27D41E4F87AD21BC476ECF4D6A OR sales_channel_id IS NULL )) AND ((seo_path_info = 'footer' OR seo_path_info = 'footer/' ));
Copy
105
0.58 ms
SELECT path_info pathInfo , seo_path_info seoPathInfo FROM seo_url WHERE (language_id = ? ) AND (sales_channel_id = ? ) AND (path_info = ? ) AND (is_canonical = 1 ) LIMIT 1
Parameters :
[
b"\x02 0¨(çñA —O®8ͬÞÛ "
b">{k'Ô\x1E O‡!¼GnÏMj "
"/footer "
]
SELECT path_info pathInfo , seo_path_info seoPathInfo FROM seo_url WHERE (language_id = 0x0230A828E7F14120974FAE38CDACDEDB ) AND (sales_channel_id = 0x3E7B6B27D41E4F87AD21BC476ECF4D6A ) AND (path_info = '/footer' ) AND (is_canonical = 1 ) LIMIT 1 ;
Copy
106
0.25 ms
SELECT * FROM sales_channel_api_context WHERE (sales_channel_id = ? ) AND (token = ? ) LIMIT 1
Parameters :
[
b">{k'Ô\x1E O‡!¼GnÏMj "
"dhy7lVXuw8dWjgQ6QKQ7so6fqgg8AS3H "
]
SELECT * FROM sales_channel_api_context WHERE (sales_channel_id = 0x3E7B6B27D41E4F87AD21BC476ECF4D6A ) AND (token = 'dhy7lVXuw8dWjgQ6QKQ7so6fqgg8AS3H' ) LIMIT 1 ;
Copy
107
0.36 ms
SELECT `cart` . `payload` , `cart` . `rule_ids` , `cart` . `compressed` FROM cart WHERE `token` = ?
Parameters :
[
"dhy7lVXuw8dWjgQ6QKQ7so6fqgg8AS3H "
]
SELECT `cart` . `payload` , `cart` . `rule_ids` , `cart` . `compressed` FROM cart WHERE `token` = 'dhy7lVXuw8dWjgQ6QKQ7so6fqgg8AS3H' ;
Copy
108
0.52 ms
SELECT LOWER (HEX (`id` )), `path` , `level`
FROM `category`
WHERE `id` = ? OR `parent_id` = ? OR `id` = ?
Parameters :
[
b"p°GÙy0IŽ¥Lnq7&Œs "
b"p°GÙy0IŽ¥Lnq7&Œs "
b"p°GÙy0IŽ¥Lnq7&Œs "
]
SELECT LOWER (HEX (`id` )), `path` , `level`
FROM `category`
WHERE `id` = 0x70B047D97930498EA54C6E7137268C73 OR `parent_id` = 0x70B047D97930498EA54C6E7137268C73 OR `id` = 0x70B047D97930498EA54C6E7137268C73
;
Copy
109
3.65 ms
SELECT `category` . `id` as `category.id` , `category` . `version_id` as `category.versionId` , `category` . `parent_id` as `category.parentId` , `category` . `parent_version_id` as `category.parentVersionId` , `category` . `after_category_id` as `category.afterCategoryId` , `category` . `after_category_version_id` as `category.afterCategoryVersionId` , `category` . `media_id` as `category.mediaId` , `category` . `display_nested_products` as `category.displayNestedProducts` , `category` . `auto_increment` as `category.autoIncrement` , `category` . `level` as `category.level` , `category` . `path` as `category.path` , `category` . `child_count` as `category.childCount` , `category` . `type` as `category.type` , `category` . `product_assignment_type` as `category.productAssignmentType` , `category` . `visible` as `category.visible` , `category` . `active` as `category.active` , `category` . `cms_page_id` as `category.cmsPageId` , `category` . `cms_page_version_id` as `category.cmsPageVersionId` , `category` . `product_stream_id` as `category.productStreamId` , `category` . `custom_entity_type_id` as `category.customEntityTypeId` , `category` . `created_at` as `category.createdAt` , `category` . `updated_at` as `category.updatedAt` , `category.media` . `id` as `category.media.id` , `category.media` . `user_id` as `category.media.userId` , `category.media` . `media_folder_id` as `category.media.mediaFolderId` , `category.media` . `mime_type` as `category.media.mimeType` , `category.media` . `file_extension` as `category.media.fileExtension` , `category.media` . `uploaded_at` as `category.media.uploadedAt` , `category.media` . `file_name` as `category.media.fileName` , `category.media` . `file_size` as `category.media.fileSize` , `category.media` . `media_type` as `category.media.mediaTypeRaw` , `category.media` . `meta_data` as `category.media.metaData` , `category.media` . `config` as `category.media.config` , `category.media` . `path` as `category.media.path` , `category.media` . `private` as `category.media.private` , `category.media` . `thumbnails_ro` as `category.media.thumbnailsRo` , `category.media` . `file_hash` as `category.media.fileHash` , `category.media` . `created_at` as `category.media.createdAt` , `category.media` . `updated_at` as `category.media.updatedAt` , `category.media.translation.title` , `category.media.translation.title` as `category.media.title` , `category.media.translation.alt` , `category.media.translation.alt` as `category.media.alt` , `category.media.translation.customFields` , `category.media.translation.customFields` as `category.media.customFields` , `category.translation.name` , `category.translation.name` as `category.name` , `category.translation.breadcrumb` , `category.translation.breadcrumb` as `category.breadcrumb` , `category.translation.slotConfig` , `category.translation.slotConfig` as `category.slotConfig` , `category.translation.linkType` , `category.translation.linkType` as `category.linkType` , `category.translation.internalLink` , `category.translation.internalLink` as `category.internalLink` , `category.translation.externalLink` , `category.translation.externalLink` as `category.externalLink` , `category.translation.linkNewTab` , `category.translation.linkNewTab` as `category.linkNewTab` , `category.translation.description` , `category.translation.description` as `category.description` , `category.translation.metaTitle` , `category.translation.metaTitle` as `category.metaTitle` , `category.translation.metaDescription` , `category.translation.metaDescription` as `category.metaDescription` , `category.translation.keywords` , `category.translation.keywords` as `category.keywords` , `category.translation.customFields` , `category.translation.customFields` as `category.customFields` FROM `category` LEFT JOIN `media` `category.media` ON `category` . `media_id` = `category.media` . `id` LEFT JOIN (SELECT `category.translation` . `category_id` , `category.translation` . `category_version_id` , `category.translation` . `breadcrumb` as `category.translation.breadcrumb` , `category.translation` . `name` as `category.translation.name` , `category.translation` . `custom_fields` as `category.translation.customFields` , `category.translation` . `slot_config` as `category.translation.slotConfig` , `category.translation` . `link_type` as `category.translation.linkType` , `category.translation` . `internal_link` as `category.translation.internalLink` , `category.translation` . `external_link` as `category.translation.externalLink` , `category.translation` . `link_new_tab` as `category.translation.linkNewTab` , `category.translation` . `description` as `category.translation.description` , `category.translation` . `meta_title` as `category.translation.metaTitle` , `category.translation` . `meta_description` as `category.translation.metaDescription` , `category.translation` . `keywords` as `category.translation.keywords` FROM `category_translation` `category.translation` WHERE `category.translation` . `language_id` = ? ) `category.category_translation` ON `category.category_translation` . `category_id` = `category` . `id` AND `category.category_translation` . `category_version_id` = `category` . `version_id` LEFT JOIN (SELECT `category.media.translation` . `media_id` , `category.media.translation` . `alt` as `category.media.translation.alt` , `category.media.translation` . `title` as `category.media.translation.title` , `category.media.translation` . `custom_fields` as `category.media.translation.customFields` FROM `media_translation` `category.media.translation` WHERE `category.media.translation` . `language_id` = ? ) `category.media.media_translation` ON `category.media.media_translation` . `media_id` = `category.media` . `id` WHERE (`category` . `version_id` = ? ) AND ((`category` . `path` LIKE ? AND (`category` . `level` > ? AND `category` . `level` < = ? )))
Parameters :
[
b"\x02 0¨(çñA —O®8ͬÞÛ "
b"\x02 0¨(çñA —O®8ͬÞÛ "
b"\x0F ©\x1C ãéjK¾KÙÎu,4% "
"%|70b047d97930498ea54c6e7137268c73|% "
1
4
]
SELECT
`category` . `id` as `category.id` ,
`category` . `version_id` as `category.versionId` ,
`category` . `parent_id` as `category.parentId` ,
`category` . `parent_version_id` as `category.parentVersionId` ,
`category` . `after_category_id` as `category.afterCategoryId` ,
`category` . `after_category_version_id` as `category.afterCategoryVersionId` ,
`category` . `media_id` as `category.mediaId` ,
`category` . `display_nested_products` as `category.displayNestedProducts` ,
`category` . `auto_increment` as `category.autoIncrement` ,
`category` . `level` as `category.level` ,
`category` . `path` as `category.path` ,
`category` . `child_count` as `category.childCount` ,
`category` . `type` as `category.type` ,
`category` . `product_assignment_type` as `category.productAssignmentType` ,
`category` . `visible` as `category.visible` ,
`category` . `active` as `category.active` ,
`category` . `cms_page_id` as `category.cmsPageId` ,
`category` . `cms_page_version_id` as `category.cmsPageVersionId` ,
`category` . `product_stream_id` as `category.productStreamId` ,
`category` . `custom_entity_type_id` as `category.customEntityTypeId` ,
`category` . `created_at` as `category.createdAt` ,
`category` . `updated_at` as `category.updatedAt` ,
`category.media` . `id` as `category.media.id` ,
`category.media` . `user_id` as `category.media.userId` ,
`category.media` . `media_folder_id` as `category.media.mediaFolderId` ,
`category.media` . `mime_type` as `category.media.mimeType` ,
`category.media` . `file_extension` as `category.media.fileExtension` ,
`category.media` . `uploaded_at` as `category.media.uploadedAt` ,
`category.media` . `file_name` as `category.media.fileName` ,
`category.media` . `file_size` as `category.media.fileSize` ,
`category.media` . `media_type` as `category.media.mediaTypeRaw` ,
`category.media` . `meta_data` as `category.media.metaData` ,
`category.media` . `config` as `category.media.config` ,
`category.media` . `path` as `category.media.path` ,
`category.media` . `private` as `category.media.private` ,
`category.media` . `thumbnails_ro` as `category.media.thumbnailsRo` ,
`category.media` . `file_hash` as `category.media.fileHash` ,
`category.media` . `created_at` as `category.media.createdAt` ,
`category.media` . `updated_at` as `category.media.updatedAt` ,
`category.media.translation.title` ,
`category.media.translation.title` as `category.media.title` ,
`category.media.translation.alt` ,
`category.media.translation.alt` as `category.media.alt` ,
`category.media.translation.customFields` ,
`category.media.translation.customFields` as `category.media.customFields` ,
`category.translation.name` ,
`category.translation.name` as `category.name` ,
`category.translation.breadcrumb` ,
`category.translation.breadcrumb` as `category.breadcrumb` ,
`category.translation.slotConfig` ,
`category.translation.slotConfig` as `category.slotConfig` ,
`category.translation.linkType` ,
`category.translation.linkType` as `category.linkType` ,
`category.translation.internalLink` ,
`category.translation.internalLink` as `category.internalLink` ,
`category.translation.externalLink` ,
`category.translation.externalLink` as `category.externalLink` ,
`category.translation.linkNewTab` ,
`category.translation.linkNewTab` as `category.linkNewTab` ,
`category.translation.description` ,
`category.translation.description` as `category.description` ,
`category.translation.metaTitle` ,
`category.translation.metaTitle` as `category.metaTitle` ,
`category.translation.metaDescription` ,
`category.translation.metaDescription` as `category.metaDescription` ,
`category.translation.keywords` ,
`category.translation.keywords` as `category.keywords` ,
`category.translation.customFields` ,
`category.translation.customFields` as `category.customFields`
FROM
`category`
LEFT JOIN `media` `category.media` ON `category` . `media_id` = `category.media` . `id`
LEFT JOIN (
SELECT
`category.translation` . `category_id` ,
`category.translation` . `category_version_id` ,
`category.translation` . `breadcrumb` as `category.translation.breadcrumb` ,
`category.translation` . `name` as `category.translation.name` ,
`category.translation` . `custom_fields` as `category.translation.customFields` ,
`category.translation` . `slot_config` as `category.translation.slotConfig` ,
`category.translation` . `link_type` as `category.translation.linkType` ,
`category.translation` . `internal_link` as `category.translation.internalLink` ,
`category.translation` . `external_link` as `category.translation.externalLink` ,
`category.translation` . `link_new_tab` as `category.translation.linkNewTab` ,
`category.translation` . `description` as `category.translation.description` ,
`category.translation` . `meta_title` as `category.translation.metaTitle` ,
`category.translation` . `meta_description` as `category.translation.metaDescription` ,
`category.translation` . `keywords` as `category.translation.keywords`
FROM
`category_translation` `category.translation`
WHERE
`category.translation` . `language_id` = ?
) `category.category_translation` ON `category.category_translation` . `category_id` = `category` . `id`
AND `category.category_translation` . `category_version_id` = `category` . `version_id`
LEFT JOIN (
SELECT
`category.media.translation` . `media_id` ,
`category.media.translation` . `alt` as `category.media.translation.alt` ,
`category.media.translation` . `title` as `category.media.translation.title` ,
`category.media.translation` . `custom_fields` as `category.media.translation.customFields`
FROM
`media_translation` `category.media.translation`
WHERE
`category.media.translation` . `language_id` = ?
) `category.media.media_translation` ON `category.media.media_translation` . `media_id` = `category.media` . `id`
WHERE
(`category` . `version_id` = ? )
AND (
(
`category` . `path` LIKE ?
AND (
`category` . `level` > ?
AND `category` . `level` < = ?
)
)
)
Copy
SELECT `category` . `id` as `category.id` , `category` . `version_id` as `category.versionId` , `category` . `parent_id` as `category.parentId` , `category` . `parent_version_id` as `category.parentVersionId` , `category` . `after_category_id` as `category.afterCategoryId` , `category` . `after_category_version_id` as `category.afterCategoryVersionId` , `category` . `media_id` as `category.mediaId` , `category` . `display_nested_products` as `category.displayNestedProducts` , `category` . `auto_increment` as `category.autoIncrement` , `category` . `level` as `category.level` , `category` . `path` as `category.path` , `category` . `child_count` as `category.childCount` , `category` . `type` as `category.type` , `category` . `product_assignment_type` as `category.productAssignmentType` , `category` . `visible` as `category.visible` , `category` . `active` as `category.active` , `category` . `cms_page_id` as `category.cmsPageId` , `category` . `cms_page_version_id` as `category.cmsPageVersionId` , `category` . `product_stream_id` as `category.productStreamId` , `category` . `custom_entity_type_id` as `category.customEntityTypeId` , `category` . `created_at` as `category.createdAt` , `category` . `updated_at` as `category.updatedAt` , `category.media` . `id` as `category.media.id` , `category.media` . `user_id` as `category.media.userId` , `category.media` . `media_folder_id` as `category.media.mediaFolderId` , `category.media` . `mime_type` as `category.media.mimeType` , `category.media` . `file_extension` as `category.media.fileExtension` , `category.media` . `uploaded_at` as `category.media.uploadedAt` , `category.media` . `file_name` as `category.media.fileName` , `category.media` . `file_size` as `category.media.fileSize` , `category.media` . `media_type` as `category.media.mediaTypeRaw` , `category.media` . `meta_data` as `category.media.metaData` , `category.media` . `config` as `category.media.config` , `category.media` . `path` as `category.media.path` , `category.media` . `private` as `category.media.private` , `category.media` . `thumbnails_ro` as `category.media.thumbnailsRo` , `category.media` . `file_hash` as `category.media.fileHash` , `category.media` . `created_at` as `category.media.createdAt` , `category.media` . `updated_at` as `category.media.updatedAt` , `category.media.translation.title` , `category.media.translation.title` as `category.media.title` , `category.media.translation.alt` , `category.media.translation.alt` as `category.media.alt` , `category.media.translation.customFields` , `category.media.translation.customFields` as `category.media.customFields` , `category.translation.name` , `category.translation.name` as `category.name` , `category.translation.breadcrumb` , `category.translation.breadcrumb` as `category.breadcrumb` , `category.translation.slotConfig` , `category.translation.slotConfig` as `category.slotConfig` , `category.translation.linkType` , `category.translation.linkType` as `category.linkType` , `category.translation.internalLink` , `category.translation.internalLink` as `category.internalLink` , `category.translation.externalLink` , `category.translation.externalLink` as `category.externalLink` , `category.translation.linkNewTab` , `category.translation.linkNewTab` as `category.linkNewTab` , `category.translation.description` , `category.translation.description` as `category.description` , `category.translation.metaTitle` , `category.translation.metaTitle` as `category.metaTitle` , `category.translation.metaDescription` , `category.translation.metaDescription` as `category.metaDescription` , `category.translation.keywords` , `category.translation.keywords` as `category.keywords` , `category.translation.customFields` , `category.translation.customFields` as `category.customFields` FROM `category` LEFT JOIN `media` `category.media` ON `category` . `media_id` = `category.media` . `id` LEFT JOIN (SELECT `category.translation` . `category_id` , `category.translation` . `category_version_id` , `category.translation` . `breadcrumb` as `category.translation.breadcrumb` , `category.translation` . `name` as `category.translation.name` , `category.translation` . `custom_fields` as `category.translation.customFields` , `category.translation` . `slot_config` as `category.translation.slotConfig` , `category.translation` . `link_type` as `category.translation.linkType` , `category.translation` . `internal_link` as `category.translation.internalLink` , `category.translation` . `external_link` as `category.translation.externalLink` , `category.translation` . `link_new_tab` as `category.translation.linkNewTab` , `category.translation` . `description` as `category.translation.description` , `category.translation` . `meta_title` as `category.translation.metaTitle` , `category.translation` . `meta_description` as `category.translation.metaDescription` , `category.translation` . `keywords` as `category.translation.keywords` FROM `category_translation` `category.translation` WHERE `category.translation` . `language_id` = 0x0230A828E7F14120974FAE38CDACDEDB ) `category.category_translation` ON `category.category_translation` . `category_id` = `category` . `id` AND `category.category_translation` . `category_version_id` = `category` . `version_id` LEFT JOIN (SELECT `category.media.translation` . `media_id` , `category.media.translation` . `alt` as `category.media.translation.alt` , `category.media.translation` . `title` as `category.media.translation.title` , `category.media.translation` . `custom_fields` as `category.media.translation.customFields` FROM `media_translation` `category.media.translation` WHERE `category.media.translation` . `language_id` = 0x0230A828E7F14120974FAE38CDACDEDB ) `category.media.media_translation` ON `category.media.media_translation` . `media_id` = `category.media` . `id` WHERE (`category` . `version_id` = 0x0FA91CE3E96A4BC2BE4BD9CE752C3425 ) AND ((`category` . `path` LIKE '%|70b047d97930498ea54c6e7137268c73|%' AND (`category` . `level` > 1 AND `category` . `level` < = 4 )));
Copy
110
3.13 ms
SELECT LOWER (HEX (`category` . `parent_id` )) as `category-ids.key` , COUNT (`category` . `id` ) as `category-ids.count` , COUNT (DISTINCT `category` . `id` ) as `visible-children-count` FROM `category` WHERE (`category` . `version_id` = ? ) AND ((`category` . `path` LIKE ? AND `category` . `level` = ? AND `category` . `active` = ? AND `category` . `visible` = ? )) GROUP BY `category` . `parent_id`
Parameters :
[
b"\x0F ©\x1C ãéjK¾KÙÎu,4% "
"%|70b047d97930498ea54c6e7137268c73|% "
4
true
true
]
SELECT LOWER (HEX (`category` . `parent_id` )) as `category-ids.key` , COUNT (`category` . `id` ) as `category-ids.count` , COUNT (DISTINCT `category` . `id` ) as `visible-children-count` FROM `category` WHERE (`category` . `version_id` = 0x0FA91CE3E96A4BC2BE4BD9CE752C3425 ) AND ((`category` . `path` LIKE '%|70b047d97930498ea54c6e7137268c73|%' AND `category` . `level` = 4 AND `category` . `active` = 1 AND `category` . `visible` = 1 )) GROUP BY `category` . `parent_id` ;
Copy
111
1.45 ms
SELECT `category` . `id` as `category.id` , `category` . `version_id` as `category.versionId` , `category` . `parent_id` as `category.parentId` , `category` . `parent_version_id` as `category.parentVersionId` , `category` . `after_category_id` as `category.afterCategoryId` , `category` . `after_category_version_id` as `category.afterCategoryVersionId` , `category` . `media_id` as `category.mediaId` , `category` . `display_nested_products` as `category.displayNestedProducts` , `category` . `auto_increment` as `category.autoIncrement` , `category` . `level` as `category.level` , `category` . `path` as `category.path` , `category` . `child_count` as `category.childCount` , `category` . `type` as `category.type` , `category` . `product_assignment_type` as `category.productAssignmentType` , `category` . `visible` as `category.visible` , `category` . `active` as `category.active` , `category` . `cms_page_id` as `category.cmsPageId` , `category` . `cms_page_version_id` as `category.cmsPageVersionId` , `category` . `product_stream_id` as `category.productStreamId` , `category` . `custom_entity_type_id` as `category.customEntityTypeId` , `category` . `created_at` as `category.createdAt` , `category` . `updated_at` as `category.updatedAt` , `category.media` . `id` as `category.media.id` , `category.media` . `user_id` as `category.media.userId` , `category.media` . `media_folder_id` as `category.media.mediaFolderId` , `category.media` . `mime_type` as `category.media.mimeType` , `category.media` . `file_extension` as `category.media.fileExtension` , `category.media` . `uploaded_at` as `category.media.uploadedAt` , `category.media` . `file_name` as `category.media.fileName` , `category.media` . `file_size` as `category.media.fileSize` , `category.media` . `media_type` as `category.media.mediaTypeRaw` , `category.media` . `meta_data` as `category.media.metaData` , `category.media` . `config` as `category.media.config` , `category.media` . `path` as `category.media.path` , `category.media` . `private` as `category.media.private` , `category.media` . `thumbnails_ro` as `category.media.thumbnailsRo` , `category.media` . `file_hash` as `category.media.fileHash` , `category.media` . `created_at` as `category.media.createdAt` , `category.media` . `updated_at` as `category.media.updatedAt` , `category.media.translation.title` , `category.media.translation.title` as `category.media.title` , `category.media.translation.alt` , `category.media.translation.alt` as `category.media.alt` , `category.media.translation.customFields` , `category.media.translation.customFields` as `category.media.customFields` , `category.translation.name` , `category.translation.name` as `category.name` , `category.translation.breadcrumb` , `category.translation.breadcrumb` as `category.breadcrumb` , `category.translation.slotConfig` , `category.translation.slotConfig` as `category.slotConfig` , `category.translation.linkType` , `category.translation.linkType` as `category.linkType` , `category.translation.internalLink` , `category.translation.internalLink` as `category.internalLink` , `category.translation.externalLink` , `category.translation.externalLink` as `category.externalLink` , `category.translation.linkNewTab` , `category.translation.linkNewTab` as `category.linkNewTab` , `category.translation.description` , `category.translation.description` as `category.description` , `category.translation.metaTitle` , `category.translation.metaTitle` as `category.metaTitle` , `category.translation.metaDescription` , `category.translation.metaDescription` as `category.metaDescription` , `category.translation.keywords` , `category.translation.keywords` as `category.keywords` , `category.translation.customFields` , `category.translation.customFields` as `category.customFields` FROM `category` LEFT JOIN `media` `category.media` ON `category` . `media_id` = `category.media` . `id` LEFT JOIN (SELECT `category.translation` . `category_id` , `category.translation` . `category_version_id` , `category.translation` . `breadcrumb` as `category.translation.breadcrumb` , `category.translation` . `name` as `category.translation.name` , `category.translation` . `custom_fields` as `category.translation.customFields` , `category.translation` . `slot_config` as `category.translation.slotConfig` , `category.translation` . `link_type` as `category.translation.linkType` , `category.translation` . `internal_link` as `category.translation.internalLink` , `category.translation` . `external_link` as `category.translation.externalLink` , `category.translation` . `link_new_tab` as `category.translation.linkNewTab` , `category.translation` . `description` as `category.translation.description` , `category.translation` . `meta_title` as `category.translation.metaTitle` , `category.translation` . `meta_description` as `category.translation.metaDescription` , `category.translation` . `keywords` as `category.translation.keywords` FROM `category_translation` `category.translation` WHERE `category.translation` . `language_id` = ? ) `category.category_translation` ON `category.category_translation` . `category_id` = `category` . `id` AND `category.category_translation` . `category_version_id` = `category` . `version_id` LEFT JOIN (SELECT `category.media.translation` . `media_id` , `category.media.translation` . `alt` as `category.media.translation.alt` , `category.media.translation` . `title` as `category.media.translation.title` , `category.media.translation` . `custom_fields` as `category.media.translation.customFields` FROM `media_translation` `category.media.translation` WHERE `category.media.translation` . `language_id` = ? ) `category.media.media_translation` ON `category.media.media_translation` . `media_id` = `category.media` . `id` WHERE (`category` . `version_id` = ? ) AND (`category` . `id` IN (? ))
Parameters :
[
b"\x02 0¨(çñA —O®8ͬÞÛ "
b"\x02 0¨(çñA —O®8ͬÞÛ "
b"\x0F ©\x1C ãéjK¾KÙÎu,4% "
b"p°GÙy0IŽ¥Lnq7&Œs "
]
SELECT
`category` . `id` as `category.id` ,
`category` . `version_id` as `category.versionId` ,
`category` . `parent_id` as `category.parentId` ,
`category` . `parent_version_id` as `category.parentVersionId` ,
`category` . `after_category_id` as `category.afterCategoryId` ,
`category` . `after_category_version_id` as `category.afterCategoryVersionId` ,
`category` . `media_id` as `category.mediaId` ,
`category` . `display_nested_products` as `category.displayNestedProducts` ,
`category` . `auto_increment` as `category.autoIncrement` ,
`category` . `level` as `category.level` ,
`category` . `path` as `category.path` ,
`category` . `child_count` as `category.childCount` ,
`category` . `type` as `category.type` ,
`category` . `product_assignment_type` as `category.productAssignmentType` ,
`category` . `visible` as `category.visible` ,
`category` . `active` as `category.active` ,
`category` . `cms_page_id` as `category.cmsPageId` ,
`category` . `cms_page_version_id` as `category.cmsPageVersionId` ,
`category` . `product_stream_id` as `category.productStreamId` ,
`category` . `custom_entity_type_id` as `category.customEntityTypeId` ,
`category` . `created_at` as `category.createdAt` ,
`category` . `updated_at` as `category.updatedAt` ,
`category.media` . `id` as `category.media.id` ,
`category.media` . `user_id` as `category.media.userId` ,
`category.media` . `media_folder_id` as `category.media.mediaFolderId` ,
`category.media` . `mime_type` as `category.media.mimeType` ,
`category.media` . `file_extension` as `category.media.fileExtension` ,
`category.media` . `uploaded_at` as `category.media.uploadedAt` ,
`category.media` . `file_name` as `category.media.fileName` ,
`category.media` . `file_size` as `category.media.fileSize` ,
`category.media` . `media_type` as `category.media.mediaTypeRaw` ,
`category.media` . `meta_data` as `category.media.metaData` ,
`category.media` . `config` as `category.media.config` ,
`category.media` . `path` as `category.media.path` ,
`category.media` . `private` as `category.media.private` ,
`category.media` . `thumbnails_ro` as `category.media.thumbnailsRo` ,
`category.media` . `file_hash` as `category.media.fileHash` ,
`category.media` . `created_at` as `category.media.createdAt` ,
`category.media` . `updated_at` as `category.media.updatedAt` ,
`category.media.translation.title` ,
`category.media.translation.title` as `category.media.title` ,
`category.media.translation.alt` ,
`category.media.translation.alt` as `category.media.alt` ,
`category.media.translation.customFields` ,
`category.media.translation.customFields` as `category.media.customFields` ,
`category.translation.name` ,
`category.translation.name` as `category.name` ,
`category.translation.breadcrumb` ,
`category.translation.breadcrumb` as `category.breadcrumb` ,
`category.translation.slotConfig` ,
`category.translation.slotConfig` as `category.slotConfig` ,
`category.translation.linkType` ,
`category.translation.linkType` as `category.linkType` ,
`category.translation.internalLink` ,
`category.translation.internalLink` as `category.internalLink` ,
`category.translation.externalLink` ,
`category.translation.externalLink` as `category.externalLink` ,
`category.translation.linkNewTab` ,
`category.translation.linkNewTab` as `category.linkNewTab` ,
`category.translation.description` ,
`category.translation.description` as `category.description` ,
`category.translation.metaTitle` ,
`category.translation.metaTitle` as `category.metaTitle` ,
`category.translation.metaDescription` ,
`category.translation.metaDescription` as `category.metaDescription` ,
`category.translation.keywords` ,
`category.translation.keywords` as `category.keywords` ,
`category.translation.customFields` ,
`category.translation.customFields` as `category.customFields`
FROM
`category`
LEFT JOIN `media` `category.media` ON `category` . `media_id` = `category.media` . `id`
LEFT JOIN (
SELECT
`category.translation` . `category_id` ,
`category.translation` . `category_version_id` ,
`category.translation` . `breadcrumb` as `category.translation.breadcrumb` ,
`category.translation` . `name` as `category.translation.name` ,
`category.translation` . `custom_fields` as `category.translation.customFields` ,
`category.translation` . `slot_config` as `category.translation.slotConfig` ,
`category.translation` . `link_type` as `category.translation.linkType` ,
`category.translation` . `internal_link` as `category.translation.internalLink` ,
`category.translation` . `external_link` as `category.translation.externalLink` ,
`category.translation` . `link_new_tab` as `category.translation.linkNewTab` ,
`category.translation` . `description` as `category.translation.description` ,
`category.translation` . `meta_title` as `category.translation.metaTitle` ,
`category.translation` . `meta_description` as `category.translation.metaDescription` ,
`category.translation` . `keywords` as `category.translation.keywords`
FROM
`category_translation` `category.translation`
WHERE
`category.translation` . `language_id` = ?
) `category.category_translation` ON `category.category_translation` . `category_id` = `category` . `id`
AND `category.category_translation` . `category_version_id` = `category` . `version_id`
LEFT JOIN (
SELECT
`category.media.translation` . `media_id` ,
`category.media.translation` . `alt` as `category.media.translation.alt` ,
`category.media.translation` . `title` as `category.media.translation.title` ,
`category.media.translation` . `custom_fields` as `category.media.translation.customFields`
FROM
`media_translation` `category.media.translation`
WHERE
`category.media.translation` . `language_id` = ?
) `category.media.media_translation` ON `category.media.media_translation` . `media_id` = `category.media` . `id`
WHERE
(`category` . `version_id` = ? )
AND (
`category` . `id` IN (? )
)
Copy
SELECT `category` . `id` as `category.id` , `category` . `version_id` as `category.versionId` , `category` . `parent_id` as `category.parentId` , `category` . `parent_version_id` as `category.parentVersionId` , `category` . `after_category_id` as `category.afterCategoryId` , `category` . `after_category_version_id` as `category.afterCategoryVersionId` , `category` . `media_id` as `category.mediaId` , `category` . `display_nested_products` as `category.displayNestedProducts` , `category` . `auto_increment` as `category.autoIncrement` , `category` . `level` as `category.level` , `category` . `path` as `category.path` , `category` . `child_count` as `category.childCount` , `category` . `type` as `category.type` , `category` . `product_assignment_type` as `category.productAssignmentType` , `category` . `visible` as `category.visible` , `category` . `active` as `category.active` , `category` . `cms_page_id` as `category.cmsPageId` , `category` . `cms_page_version_id` as `category.cmsPageVersionId` , `category` . `product_stream_id` as `category.productStreamId` , `category` . `custom_entity_type_id` as `category.customEntityTypeId` , `category` . `created_at` as `category.createdAt` , `category` . `updated_at` as `category.updatedAt` , `category.media` . `id` as `category.media.id` , `category.media` . `user_id` as `category.media.userId` , `category.media` . `media_folder_id` as `category.media.mediaFolderId` , `category.media` . `mime_type` as `category.media.mimeType` , `category.media` . `file_extension` as `category.media.fileExtension` , `category.media` . `uploaded_at` as `category.media.uploadedAt` , `category.media` . `file_name` as `category.media.fileName` , `category.media` . `file_size` as `category.media.fileSize` , `category.media` . `media_type` as `category.media.mediaTypeRaw` , `category.media` . `meta_data` as `category.media.metaData` , `category.media` . `config` as `category.media.config` , `category.media` . `path` as `category.media.path` , `category.media` . `private` as `category.media.private` , `category.media` . `thumbnails_ro` as `category.media.thumbnailsRo` , `category.media` . `file_hash` as `category.media.fileHash` , `category.media` . `created_at` as `category.media.createdAt` , `category.media` . `updated_at` as `category.media.updatedAt` , `category.media.translation.title` , `category.media.translation.title` as `category.media.title` , `category.media.translation.alt` , `category.media.translation.alt` as `category.media.alt` , `category.media.translation.customFields` , `category.media.translation.customFields` as `category.media.customFields` , `category.translation.name` , `category.translation.name` as `category.name` , `category.translation.breadcrumb` , `category.translation.breadcrumb` as `category.breadcrumb` , `category.translation.slotConfig` , `category.translation.slotConfig` as `category.slotConfig` , `category.translation.linkType` , `category.translation.linkType` as `category.linkType` , `category.translation.internalLink` , `category.translation.internalLink` as `category.internalLink` , `category.translation.externalLink` , `category.translation.externalLink` as `category.externalLink` , `category.translation.linkNewTab` , `category.translation.linkNewTab` as `category.linkNewTab` , `category.translation.description` , `category.translation.description` as `category.description` , `category.translation.metaTitle` , `category.translation.metaTitle` as `category.metaTitle` , `category.translation.metaDescription` , `category.translation.metaDescription` as `category.metaDescription` , `category.translation.keywords` , `category.translation.keywords` as `category.keywords` , `category.translation.customFields` , `category.translation.customFields` as `category.customFields` FROM `category` LEFT JOIN `media` `category.media` ON `category` . `media_id` = `category.media` . `id` LEFT JOIN (SELECT `category.translation` . `category_id` , `category.translation` . `category_version_id` , `category.translation` . `breadcrumb` as `category.translation.breadcrumb` , `category.translation` . `name` as `category.translation.name` , `category.translation` . `custom_fields` as `category.translation.customFields` , `category.translation` . `slot_config` as `category.translation.slotConfig` , `category.translation` . `link_type` as `category.translation.linkType` , `category.translation` . `internal_link` as `category.translation.internalLink` , `category.translation` . `external_link` as `category.translation.externalLink` , `category.translation` . `link_new_tab` as `category.translation.linkNewTab` , `category.translation` . `description` as `category.translation.description` , `category.translation` . `meta_title` as `category.translation.metaTitle` , `category.translation` . `meta_description` as `category.translation.metaDescription` , `category.translation` . `keywords` as `category.translation.keywords` FROM `category_translation` `category.translation` WHERE `category.translation` . `language_id` = 0x0230A828E7F14120974FAE38CDACDEDB ) `category.category_translation` ON `category.category_translation` . `category_id` = `category` . `id` AND `category.category_translation` . `category_version_id` = `category` . `version_id` LEFT JOIN (SELECT `category.media.translation` . `media_id` , `category.media.translation` . `alt` as `category.media.translation.alt` , `category.media.translation` . `title` as `category.media.translation.title` , `category.media.translation` . `custom_fields` as `category.media.translation.customFields` FROM `media_translation` `category.media.translation` WHERE `category.media.translation` . `language_id` = 0x0230A828E7F14120974FAE38CDACDEDB ) `category.media.media_translation` ON `category.media.media_translation` . `media_id` = `category.media` . `id` WHERE (`category` . `version_id` = 0x0FA91CE3E96A4BC2BE4BD9CE752C3425 ) AND (`category` . `id` IN (0x70B047D97930498EA54C6E7137268C73 ));
Copy
112
0.47 ms
SELECT LOWER (HEX (`id` )), `path` , `level`
FROM `category`
WHERE `id` = ? OR `parent_id` = ? OR `id` = ?
Parameters :
[
b"\t ü\x1C ╚\x1A Ö@\t ░A\r eqIë, "
b"\t ü\x1C ╚\x1A Ö@\t ░A\r eqIë, "
b"\t ü\x1C ╚\x1A Ö@\t ░A\r eqIë, "
]
SELECT LOWER (HEX (`id` )), `path` , `level`
FROM `category`
WHERE `id` = 0x09811CC81A994009B0410D657149892C OR `parent_id` = 0x09811CC81A994009B0410D657149892C OR `id` = 0x09811CC81A994009B0410D657149892C
;
Copy
113
3.63 ms
SELECT `category` . `id` as `category.id` , `category` . `version_id` as `category.versionId` , `category` . `parent_id` as `category.parentId` , `category` . `parent_version_id` as `category.parentVersionId` , `category` . `after_category_id` as `category.afterCategoryId` , `category` . `after_category_version_id` as `category.afterCategoryVersionId` , `category` . `media_id` as `category.mediaId` , `category` . `display_nested_products` as `category.displayNestedProducts` , `category` . `auto_increment` as `category.autoIncrement` , `category` . `level` as `category.level` , `category` . `path` as `category.path` , `category` . `child_count` as `category.childCount` , `category` . `type` as `category.type` , `category` . `product_assignment_type` as `category.productAssignmentType` , `category` . `visible` as `category.visible` , `category` . `active` as `category.active` , `category` . `cms_page_id` as `category.cmsPageId` , `category` . `cms_page_version_id` as `category.cmsPageVersionId` , `category` . `product_stream_id` as `category.productStreamId` , `category` . `custom_entity_type_id` as `category.customEntityTypeId` , `category` . `created_at` as `category.createdAt` , `category` . `updated_at` as `category.updatedAt` , `category.media` . `id` as `category.media.id` , `category.media` . `user_id` as `category.media.userId` , `category.media` . `media_folder_id` as `category.media.mediaFolderId` , `category.media` . `mime_type` as `category.media.mimeType` , `category.media` . `file_extension` as `category.media.fileExtension` , `category.media` . `uploaded_at` as `category.media.uploadedAt` , `category.media` . `file_name` as `category.media.fileName` , `category.media` . `file_size` as `category.media.fileSize` , `category.media` . `media_type` as `category.media.mediaTypeRaw` , `category.media` . `meta_data` as `category.media.metaData` , `category.media` . `config` as `category.media.config` , `category.media` . `path` as `category.media.path` , `category.media` . `private` as `category.media.private` , `category.media` . `thumbnails_ro` as `category.media.thumbnailsRo` , `category.media` . `file_hash` as `category.media.fileHash` , `category.media` . `created_at` as `category.media.createdAt` , `category.media` . `updated_at` as `category.media.updatedAt` , `category.media.translation.title` , `category.media.translation.title` as `category.media.title` , `category.media.translation.alt` , `category.media.translation.alt` as `category.media.alt` , `category.media.translation.customFields` , `category.media.translation.customFields` as `category.media.customFields` , `category.translation.name` , `category.translation.name` as `category.name` , `category.translation.breadcrumb` , `category.translation.breadcrumb` as `category.breadcrumb` , `category.translation.slotConfig` , `category.translation.slotConfig` as `category.slotConfig` , `category.translation.linkType` , `category.translation.linkType` as `category.linkType` , `category.translation.internalLink` , `category.translation.internalLink` as `category.internalLink` , `category.translation.externalLink` , `category.translation.externalLink` as `category.externalLink` , `category.translation.linkNewTab` , `category.translation.linkNewTab` as `category.linkNewTab` , `category.translation.description` , `category.translation.description` as `category.description` , `category.translation.metaTitle` , `category.translation.metaTitle` as `category.metaTitle` , `category.translation.metaDescription` , `category.translation.metaDescription` as `category.metaDescription` , `category.translation.keywords` , `category.translation.keywords` as `category.keywords` , `category.translation.customFields` , `category.translation.customFields` as `category.customFields` FROM `category` LEFT JOIN `media` `category.media` ON `category` . `media_id` = `category.media` . `id` LEFT JOIN (SELECT `category.translation` . `category_id` , `category.translation` . `category_version_id` , `category.translation` . `breadcrumb` as `category.translation.breadcrumb` , `category.translation` . `name` as `category.translation.name` , `category.translation` . `custom_fields` as `category.translation.customFields` , `category.translation` . `slot_config` as `category.translation.slotConfig` , `category.translation` . `link_type` as `category.translation.linkType` , `category.translation` . `internal_link` as `category.translation.internalLink` , `category.translation` . `external_link` as `category.translation.externalLink` , `category.translation` . `link_new_tab` as `category.translation.linkNewTab` , `category.translation` . `description` as `category.translation.description` , `category.translation` . `meta_title` as `category.translation.metaTitle` , `category.translation` . `meta_description` as `category.translation.metaDescription` , `category.translation` . `keywords` as `category.translation.keywords` FROM `category_translation` `category.translation` WHERE `category.translation` . `language_id` = ? ) `category.category_translation` ON `category.category_translation` . `category_id` = `category` . `id` AND `category.category_translation` . `category_version_id` = `category` . `version_id` LEFT JOIN (SELECT `category.media.translation` . `media_id` , `category.media.translation` . `alt` as `category.media.translation.alt` , `category.media.translation` . `title` as `category.media.translation.title` , `category.media.translation` . `custom_fields` as `category.media.translation.customFields` FROM `media_translation` `category.media.translation` WHERE `category.media.translation` . `language_id` = ? ) `category.media.media_translation` ON `category.media.media_translation` . `media_id` = `category.media` . `id` WHERE (`category` . `version_id` = ? ) AND ((`category` . `path` LIKE ? AND (`category` . `level` > ? AND `category` . `level` < = ? )))
Parameters :
[
b"\x02 0¨(çñA —O®8ͬÞÛ "
b"\x02 0¨(çñA —O®8ͬÞÛ "
b"\x0F ©\x1C ãéjK¾KÙÎu,4% "
"%|09811cc81a994009b0410d657149892c|% "
2
4
]
SELECT
`category` . `id` as `category.id` ,
`category` . `version_id` as `category.versionId` ,
`category` . `parent_id` as `category.parentId` ,
`category` . `parent_version_id` as `category.parentVersionId` ,
`category` . `after_category_id` as `category.afterCategoryId` ,
`category` . `after_category_version_id` as `category.afterCategoryVersionId` ,
`category` . `media_id` as `category.mediaId` ,
`category` . `display_nested_products` as `category.displayNestedProducts` ,
`category` . `auto_increment` as `category.autoIncrement` ,
`category` . `level` as `category.level` ,
`category` . `path` as `category.path` ,
`category` . `child_count` as `category.childCount` ,
`category` . `type` as `category.type` ,
`category` . `product_assignment_type` as `category.productAssignmentType` ,
`category` . `visible` as `category.visible` ,
`category` . `active` as `category.active` ,
`category` . `cms_page_id` as `category.cmsPageId` ,
`category` . `cms_page_version_id` as `category.cmsPageVersionId` ,
`category` . `product_stream_id` as `category.productStreamId` ,
`category` . `custom_entity_type_id` as `category.customEntityTypeId` ,
`category` . `created_at` as `category.createdAt` ,
`category` . `updated_at` as `category.updatedAt` ,
`category.media` . `id` as `category.media.id` ,
`category.media` . `user_id` as `category.media.userId` ,
`category.media` . `media_folder_id` as `category.media.mediaFolderId` ,
`category.media` . `mime_type` as `category.media.mimeType` ,
`category.media` . `file_extension` as `category.media.fileExtension` ,
`category.media` . `uploaded_at` as `category.media.uploadedAt` ,
`category.media` . `file_name` as `category.media.fileName` ,
`category.media` . `file_size` as `category.media.fileSize` ,
`category.media` . `media_type` as `category.media.mediaTypeRaw` ,
`category.media` . `meta_data` as `category.media.metaData` ,
`category.media` . `config` as `category.media.config` ,
`category.media` . `path` as `category.media.path` ,
`category.media` . `private` as `category.media.private` ,
`category.media` . `thumbnails_ro` as `category.media.thumbnailsRo` ,
`category.media` . `file_hash` as `category.media.fileHash` ,
`category.media` . `created_at` as `category.media.createdAt` ,
`category.media` . `updated_at` as `category.media.updatedAt` ,
`category.media.translation.title` ,
`category.media.translation.title` as `category.media.title` ,
`category.media.translation.alt` ,
`category.media.translation.alt` as `category.media.alt` ,
`category.media.translation.customFields` ,
`category.media.translation.customFields` as `category.media.customFields` ,
`category.translation.name` ,
`category.translation.name` as `category.name` ,
`category.translation.breadcrumb` ,
`category.translation.breadcrumb` as `category.breadcrumb` ,
`category.translation.slotConfig` ,
`category.translation.slotConfig` as `category.slotConfig` ,
`category.translation.linkType` ,
`category.translation.linkType` as `category.linkType` ,
`category.translation.internalLink` ,
`category.translation.internalLink` as `category.internalLink` ,
`category.translation.externalLink` ,
`category.translation.externalLink` as `category.externalLink` ,
`category.translation.linkNewTab` ,
`category.translation.linkNewTab` as `category.linkNewTab` ,
`category.translation.description` ,
`category.translation.description` as `category.description` ,
`category.translation.metaTitle` ,
`category.translation.metaTitle` as `category.metaTitle` ,
`category.translation.metaDescription` ,
`category.translation.metaDescription` as `category.metaDescription` ,
`category.translation.keywords` ,
`category.translation.keywords` as `category.keywords` ,
`category.translation.customFields` ,
`category.translation.customFields` as `category.customFields`
FROM
`category`
LEFT JOIN `media` `category.media` ON `category` . `media_id` = `category.media` . `id`
LEFT JOIN (
SELECT
`category.translation` . `category_id` ,
`category.translation` . `category_version_id` ,
`category.translation` . `breadcrumb` as `category.translation.breadcrumb` ,
`category.translation` . `name` as `category.translation.name` ,
`category.translation` . `custom_fields` as `category.translation.customFields` ,
`category.translation` . `slot_config` as `category.translation.slotConfig` ,
`category.translation` . `link_type` as `category.translation.linkType` ,
`category.translation` . `internal_link` as `category.translation.internalLink` ,
`category.translation` . `external_link` as `category.translation.externalLink` ,
`category.translation` . `link_new_tab` as `category.translation.linkNewTab` ,
`category.translation` . `description` as `category.translation.description` ,
`category.translation` . `meta_title` as `category.translation.metaTitle` ,
`category.translation` . `meta_description` as `category.translation.metaDescription` ,
`category.translation` . `keywords` as `category.translation.keywords`
FROM
`category_translation` `category.translation`
WHERE
`category.translation` . `language_id` = ?
) `category.category_translation` ON `category.category_translation` . `category_id` = `category` . `id`
AND `category.category_translation` . `category_version_id` = `category` . `version_id`
LEFT JOIN (
SELECT
`category.media.translation` . `media_id` ,
`category.media.translation` . `alt` as `category.media.translation.alt` ,
`category.media.translation` . `title` as `category.media.translation.title` ,
`category.media.translation` . `custom_fields` as `category.media.translation.customFields`
FROM
`media_translation` `category.media.translation`
WHERE
`category.media.translation` . `language_id` = ?
) `category.media.media_translation` ON `category.media.media_translation` . `media_id` = `category.media` . `id`
WHERE
(`category` . `version_id` = ? )
AND (
(
`category` . `path` LIKE ?
AND (
`category` . `level` > ?
AND `category` . `level` < = ?
)
)
)
Copy
SELECT `category` . `id` as `category.id` , `category` . `version_id` as `category.versionId` , `category` . `parent_id` as `category.parentId` , `category` . `parent_version_id` as `category.parentVersionId` , `category` . `after_category_id` as `category.afterCategoryId` , `category` . `after_category_version_id` as `category.afterCategoryVersionId` , `category` . `media_id` as `category.mediaId` , `category` . `display_nested_products` as `category.displayNestedProducts` , `category` . `auto_increment` as `category.autoIncrement` , `category` . `level` as `category.level` , `category` . `path` as `category.path` , `category` . `child_count` as `category.childCount` , `category` . `type` as `category.type` , `category` . `product_assignment_type` as `category.productAssignmentType` , `category` . `visible` as `category.visible` , `category` . `active` as `category.active` , `category` . `cms_page_id` as `category.cmsPageId` , `category` . `cms_page_version_id` as `category.cmsPageVersionId` , `category` . `product_stream_id` as `category.productStreamId` , `category` . `custom_entity_type_id` as `category.customEntityTypeId` , `category` . `created_at` as `category.createdAt` , `category` . `updated_at` as `category.updatedAt` , `category.media` . `id` as `category.media.id` , `category.media` . `user_id` as `category.media.userId` , `category.media` . `media_folder_id` as `category.media.mediaFolderId` , `category.media` . `mime_type` as `category.media.mimeType` , `category.media` . `file_extension` as `category.media.fileExtension` , `category.media` . `uploaded_at` as `category.media.uploadedAt` , `category.media` . `file_name` as `category.media.fileName` , `category.media` . `file_size` as `category.media.fileSize` , `category.media` . `media_type` as `category.media.mediaTypeRaw` , `category.media` . `meta_data` as `category.media.metaData` , `category.media` . `config` as `category.media.config` , `category.media` . `path` as `category.media.path` , `category.media` . `private` as `category.media.private` , `category.media` . `thumbnails_ro` as `category.media.thumbnailsRo` , `category.media` . `file_hash` as `category.media.fileHash` , `category.media` . `created_at` as `category.media.createdAt` , `category.media` . `updated_at` as `category.media.updatedAt` , `category.media.translation.title` , `category.media.translation.title` as `category.media.title` , `category.media.translation.alt` , `category.media.translation.alt` as `category.media.alt` , `category.media.translation.customFields` , `category.media.translation.customFields` as `category.media.customFields` , `category.translation.name` , `category.translation.name` as `category.name` , `category.translation.breadcrumb` , `category.translation.breadcrumb` as `category.breadcrumb` , `category.translation.slotConfig` , `category.translation.slotConfig` as `category.slotConfig` , `category.translation.linkType` , `category.translation.linkType` as `category.linkType` , `category.translation.internalLink` , `category.translation.internalLink` as `category.internalLink` , `category.translation.externalLink` , `category.translation.externalLink` as `category.externalLink` , `category.translation.linkNewTab` , `category.translation.linkNewTab` as `category.linkNewTab` , `category.translation.description` , `category.translation.description` as `category.description` , `category.translation.metaTitle` , `category.translation.metaTitle` as `category.metaTitle` , `category.translation.metaDescription` , `category.translation.metaDescription` as `category.metaDescription` , `category.translation.keywords` , `category.translation.keywords` as `category.keywords` , `category.translation.customFields` , `category.translation.customFields` as `category.customFields` FROM `category` LEFT JOIN `media` `category.media` ON `category` . `media_id` = `category.media` . `id` LEFT JOIN (SELECT `category.translation` . `category_id` , `category.translation` . `category_version_id` , `category.translation` . `breadcrumb` as `category.translation.breadcrumb` , `category.translation` . `name` as `category.translation.name` , `category.translation` . `custom_fields` as `category.translation.customFields` , `category.translation` . `slot_config` as `category.translation.slotConfig` , `category.translation` . `link_type` as `category.translation.linkType` , `category.translation` . `internal_link` as `category.translation.internalLink` , `category.translation` . `external_link` as `category.translation.externalLink` , `category.translation` . `link_new_tab` as `category.translation.linkNewTab` , `category.translation` . `description` as `category.translation.description` , `category.translation` . `meta_title` as `category.translation.metaTitle` , `category.translation` . `meta_description` as `category.translation.metaDescription` , `category.translation` . `keywords` as `category.translation.keywords` FROM `category_translation` `category.translation` WHERE `category.translation` . `language_id` = 0x0230A828E7F14120974FAE38CDACDEDB ) `category.category_translation` ON `category.category_translation` . `category_id` = `category` . `id` AND `category.category_translation` . `category_version_id` = `category` . `version_id` LEFT JOIN (SELECT `category.media.translation` . `media_id` , `category.media.translation` . `alt` as `category.media.translation.alt` , `category.media.translation` . `title` as `category.media.translation.title` , `category.media.translation` . `custom_fields` as `category.media.translation.customFields` FROM `media_translation` `category.media.translation` WHERE `category.media.translation` . `language_id` = 0x0230A828E7F14120974FAE38CDACDEDB ) `category.media.media_translation` ON `category.media.media_translation` . `media_id` = `category.media` . `id` WHERE (`category` . `version_id` = 0x0FA91CE3E96A4BC2BE4BD9CE752C3425 ) AND ((`category` . `path` LIKE '%|09811cc81a994009b0410d657149892c|%' AND (`category` . `level` > 2 AND `category` . `level` < = 4 )));
Copy
114
3.19 ms
SELECT LOWER (HEX (`category` . `parent_id` )) as `category-ids.key` , COUNT (`category` . `id` ) as `category-ids.count` , COUNT (DISTINCT `category` . `id` ) as `visible-children-count` FROM `category` WHERE (`category` . `version_id` = ? ) AND ((`category` . `path` LIKE ? AND `category` . `level` = ? AND `category` . `active` = ? AND `category` . `visible` = ? )) GROUP BY `category` . `parent_id`
Parameters :
[
b"\x0F ©\x1C ãéjK¾KÙÎu,4% "
"%|09811cc81a994009b0410d657149892c|% "
4
true
true
]
SELECT LOWER (HEX (`category` . `parent_id` )) as `category-ids.key` , COUNT (`category` . `id` ) as `category-ids.count` , COUNT (DISTINCT `category` . `id` ) as `visible-children-count` FROM `category` WHERE (`category` . `version_id` = 0x0FA91CE3E96A4BC2BE4BD9CE752C3425 ) AND ((`category` . `path` LIKE '%|09811cc81a994009b0410d657149892c|%' AND `category` . `level` = 4 AND `category` . `active` = 1 AND `category` . `visible` = 1 )) GROUP BY `category` . `parent_id` ;
Copy
115
1.45 ms
SELECT `category` . `id` as `category.id` , `category` . `version_id` as `category.versionId` , `category` . `parent_id` as `category.parentId` , `category` . `parent_version_id` as `category.parentVersionId` , `category` . `after_category_id` as `category.afterCategoryId` , `category` . `after_category_version_id` as `category.afterCategoryVersionId` , `category` . `media_id` as `category.mediaId` , `category` . `display_nested_products` as `category.displayNestedProducts` , `category` . `auto_increment` as `category.autoIncrement` , `category` . `level` as `category.level` , `category` . `path` as `category.path` , `category` . `child_count` as `category.childCount` , `category` . `type` as `category.type` , `category` . `product_assignment_type` as `category.productAssignmentType` , `category` . `visible` as `category.visible` , `category` . `active` as `category.active` , `category` . `cms_page_id` as `category.cmsPageId` , `category` . `cms_page_version_id` as `category.cmsPageVersionId` , `category` . `product_stream_id` as `category.productStreamId` , `category` . `custom_entity_type_id` as `category.customEntityTypeId` , `category` . `created_at` as `category.createdAt` , `category` . `updated_at` as `category.updatedAt` , `category.media` . `id` as `category.media.id` , `category.media` . `user_id` as `category.media.userId` , `category.media` . `media_folder_id` as `category.media.mediaFolderId` , `category.media` . `mime_type` as `category.media.mimeType` , `category.media` . `file_extension` as `category.media.fileExtension` , `category.media` . `uploaded_at` as `category.media.uploadedAt` , `category.media` . `file_name` as `category.media.fileName` , `category.media` . `file_size` as `category.media.fileSize` , `category.media` . `media_type` as `category.media.mediaTypeRaw` , `category.media` . `meta_data` as `category.media.metaData` , `category.media` . `config` as `category.media.config` , `category.media` . `path` as `category.media.path` , `category.media` . `private` as `category.media.private` , `category.media` . `thumbnails_ro` as `category.media.thumbnailsRo` , `category.media` . `file_hash` as `category.media.fileHash` , `category.media` . `created_at` as `category.media.createdAt` , `category.media` . `updated_at` as `category.media.updatedAt` , `category.media.translation.title` , `category.media.translation.title` as `category.media.title` , `category.media.translation.alt` , `category.media.translation.alt` as `category.media.alt` , `category.media.translation.customFields` , `category.media.translation.customFields` as `category.media.customFields` , `category.translation.name` , `category.translation.name` as `category.name` , `category.translation.breadcrumb` , `category.translation.breadcrumb` as `category.breadcrumb` , `category.translation.slotConfig` , `category.translation.slotConfig` as `category.slotConfig` , `category.translation.linkType` , `category.translation.linkType` as `category.linkType` , `category.translation.internalLink` , `category.translation.internalLink` as `category.internalLink` , `category.translation.externalLink` , `category.translation.externalLink` as `category.externalLink` , `category.translation.linkNewTab` , `category.translation.linkNewTab` as `category.linkNewTab` , `category.translation.description` , `category.translation.description` as `category.description` , `category.translation.metaTitle` , `category.translation.metaTitle` as `category.metaTitle` , `category.translation.metaDescription` , `category.translation.metaDescription` as `category.metaDescription` , `category.translation.keywords` , `category.translation.keywords` as `category.keywords` , `category.translation.customFields` , `category.translation.customFields` as `category.customFields` FROM `category` LEFT JOIN `media` `category.media` ON `category` . `media_id` = `category.media` . `id` LEFT JOIN (SELECT `category.translation` . `category_id` , `category.translation` . `category_version_id` , `category.translation` . `breadcrumb` as `category.translation.breadcrumb` , `category.translation` . `name` as `category.translation.name` , `category.translation` . `custom_fields` as `category.translation.customFields` , `category.translation` . `slot_config` as `category.translation.slotConfig` , `category.translation` . `link_type` as `category.translation.linkType` , `category.translation` . `internal_link` as `category.translation.internalLink` , `category.translation` . `external_link` as `category.translation.externalLink` , `category.translation` . `link_new_tab` as `category.translation.linkNewTab` , `category.translation` . `description` as `category.translation.description` , `category.translation` . `meta_title` as `category.translation.metaTitle` , `category.translation` . `meta_description` as `category.translation.metaDescription` , `category.translation` . `keywords` as `category.translation.keywords` FROM `category_translation` `category.translation` WHERE `category.translation` . `language_id` = ? ) `category.category_translation` ON `category.category_translation` . `category_id` = `category` . `id` AND `category.category_translation` . `category_version_id` = `category` . `version_id` LEFT JOIN (SELECT `category.media.translation` . `media_id` , `category.media.translation` . `alt` as `category.media.translation.alt` , `category.media.translation` . `title` as `category.media.translation.title` , `category.media.translation` . `custom_fields` as `category.media.translation.customFields` FROM `media_translation` `category.media.translation` WHERE `category.media.translation` . `language_id` = ? ) `category.media.media_translation` ON `category.media.media_translation` . `media_id` = `category.media` . `id` WHERE (`category` . `version_id` = ? ) AND (`category` . `id` IN (? , ? ))
Parameters :
[
b"\x02 0¨(çñA —O®8ͬÞÛ "
b"\x02 0¨(çñA —O®8ͬÞÛ "
b"\x0F ©\x1C ãéjK¾KÙÎu,4% "
b"p°GÙy0IŽ¥Lnq7&Œs "
b"\t ü\x1C ╚\x1A Ö@\t ░A\r eqIë, "
]
SELECT
`category` . `id` as `category.id` ,
`category` . `version_id` as `category.versionId` ,
`category` . `parent_id` as `category.parentId` ,
`category` . `parent_version_id` as `category.parentVersionId` ,
`category` . `after_category_id` as `category.afterCategoryId` ,
`category` . `after_category_version_id` as `category.afterCategoryVersionId` ,
`category` . `media_id` as `category.mediaId` ,
`category` . `display_nested_products` as `category.displayNestedProducts` ,
`category` . `auto_increment` as `category.autoIncrement` ,
`category` . `level` as `category.level` ,
`category` . `path` as `category.path` ,
`category` . `child_count` as `category.childCount` ,
`category` . `type` as `category.type` ,
`category` . `product_assignment_type` as `category.productAssignmentType` ,
`category` . `visible` as `category.visible` ,
`category` . `active` as `category.active` ,
`category` . `cms_page_id` as `category.cmsPageId` ,
`category` . `cms_page_version_id` as `category.cmsPageVersionId` ,
`category` . `product_stream_id` as `category.productStreamId` ,
`category` . `custom_entity_type_id` as `category.customEntityTypeId` ,
`category` . `created_at` as `category.createdAt` ,
`category` . `updated_at` as `category.updatedAt` ,
`category.media` . `id` as `category.media.id` ,
`category.media` . `user_id` as `category.media.userId` ,
`category.media` . `media_folder_id` as `category.media.mediaFolderId` ,
`category.media` . `mime_type` as `category.media.mimeType` ,
`category.media` . `file_extension` as `category.media.fileExtension` ,
`category.media` . `uploaded_at` as `category.media.uploadedAt` ,
`category.media` . `file_name` as `category.media.fileName` ,
`category.media` . `file_size` as `category.media.fileSize` ,
`category.media` . `media_type` as `category.media.mediaTypeRaw` ,
`category.media` . `meta_data` as `category.media.metaData` ,
`category.media` . `config` as `category.media.config` ,
`category.media` . `path` as `category.media.path` ,
`category.media` . `private` as `category.media.private` ,
`category.media` . `thumbnails_ro` as `category.media.thumbnailsRo` ,
`category.media` . `file_hash` as `category.media.fileHash` ,
`category.media` . `created_at` as `category.media.createdAt` ,
`category.media` . `updated_at` as `category.media.updatedAt` ,
`category.media.translation.title` ,
`category.media.translation.title` as `category.media.title` ,
`category.media.translation.alt` ,
`category.media.translation.alt` as `category.media.alt` ,
`category.media.translation.customFields` ,
`category.media.translation.customFields` as `category.media.customFields` ,
`category.translation.name` ,
`category.translation.name` as `category.name` ,
`category.translation.breadcrumb` ,
`category.translation.breadcrumb` as `category.breadcrumb` ,
`category.translation.slotConfig` ,
`category.translation.slotConfig` as `category.slotConfig` ,
`category.translation.linkType` ,
`category.translation.linkType` as `category.linkType` ,
`category.translation.internalLink` ,
`category.translation.internalLink` as `category.internalLink` ,
`category.translation.externalLink` ,
`category.translation.externalLink` as `category.externalLink` ,
`category.translation.linkNewTab` ,
`category.translation.linkNewTab` as `category.linkNewTab` ,
`category.translation.description` ,
`category.translation.description` as `category.description` ,
`category.translation.metaTitle` ,
`category.translation.metaTitle` as `category.metaTitle` ,
`category.translation.metaDescription` ,
`category.translation.metaDescription` as `category.metaDescription` ,
`category.translation.keywords` ,
`category.translation.keywords` as `category.keywords` ,
`category.translation.customFields` ,
`category.translation.customFields` as `category.customFields`
FROM
`category`
LEFT JOIN `media` `category.media` ON `category` . `media_id` = `category.media` . `id`
LEFT JOIN (
SELECT
`category.translation` . `category_id` ,
`category.translation` . `category_version_id` ,
`category.translation` . `breadcrumb` as `category.translation.breadcrumb` ,
`category.translation` . `name` as `category.translation.name` ,
`category.translation` . `custom_fields` as `category.translation.customFields` ,
`category.translation` . `slot_config` as `category.translation.slotConfig` ,
`category.translation` . `link_type` as `category.translation.linkType` ,
`category.translation` . `internal_link` as `category.translation.internalLink` ,
`category.translation` . `external_link` as `category.translation.externalLink` ,
`category.translation` . `link_new_tab` as `category.translation.linkNewTab` ,
`category.translation` . `description` as `category.translation.description` ,
`category.translation` . `meta_title` as `category.translation.metaTitle` ,
`category.translation` . `meta_description` as `category.translation.metaDescription` ,
`category.translation` . `keywords` as `category.translation.keywords`
FROM
`category_translation` `category.translation`
WHERE
`category.translation` . `language_id` = ?
) `category.category_translation` ON `category.category_translation` . `category_id` = `category` . `id`
AND `category.category_translation` . `category_version_id` = `category` . `version_id`
LEFT JOIN (
SELECT
`category.media.translation` . `media_id` ,
`category.media.translation` . `alt` as `category.media.translation.alt` ,
`category.media.translation` . `title` as `category.media.translation.title` ,
`category.media.translation` . `custom_fields` as `category.media.translation.customFields`
FROM
`media_translation` `category.media.translation`
WHERE
`category.media.translation` . `language_id` = ?
) `category.media.media_translation` ON `category.media.media_translation` . `media_id` = `category.media` . `id`
WHERE
(`category` . `version_id` = ? )
AND (
`category` . `id` IN (? , ? )
)
Copy
SELECT `category` . `id` as `category.id` , `category` . `version_id` as `category.versionId` , `category` . `parent_id` as `category.parentId` , `category` . `parent_version_id` as `category.parentVersionId` , `category` . `after_category_id` as `category.afterCategoryId` , `category` . `after_category_version_id` as `category.afterCategoryVersionId` , `category` . `media_id` as `category.mediaId` , `category` . `display_nested_products` as `category.displayNestedProducts` , `category` . `auto_increment` as `category.autoIncrement` , `category` . `level` as `category.level` , `category` . `path` as `category.path` , `category` . `child_count` as `category.childCount` , `category` . `type` as `category.type` , `category` . `product_assignment_type` as `category.productAssignmentType` , `category` . `visible` as `category.visible` , `category` . `active` as `category.active` , `category` . `cms_page_id` as `category.cmsPageId` , `category` . `cms_page_version_id` as `category.cmsPageVersionId` , `category` . `product_stream_id` as `category.productStreamId` , `category` . `custom_entity_type_id` as `category.customEntityTypeId` , `category` . `created_at` as `category.createdAt` , `category` . `updated_at` as `category.updatedAt` , `category.media` . `id` as `category.media.id` , `category.media` . `user_id` as `category.media.userId` , `category.media` . `media_folder_id` as `category.media.mediaFolderId` , `category.media` . `mime_type` as `category.media.mimeType` , `category.media` . `file_extension` as `category.media.fileExtension` , `category.media` . `uploaded_at` as `category.media.uploadedAt` , `category.media` . `file_name` as `category.media.fileName` , `category.media` . `file_size` as `category.media.fileSize` , `category.media` . `media_type` as `category.media.mediaTypeRaw` , `category.media` . `meta_data` as `category.media.metaData` , `category.media` . `config` as `category.media.config` , `category.media` . `path` as `category.media.path` , `category.media` . `private` as `category.media.private` , `category.media` . `thumbnails_ro` as `category.media.thumbnailsRo` , `category.media` . `file_hash` as `category.media.fileHash` , `category.media` . `created_at` as `category.media.createdAt` , `category.media` . `updated_at` as `category.media.updatedAt` , `category.media.translation.title` , `category.media.translation.title` as `category.media.title` , `category.media.translation.alt` , `category.media.translation.alt` as `category.media.alt` , `category.media.translation.customFields` , `category.media.translation.customFields` as `category.media.customFields` , `category.translation.name` , `category.translation.name` as `category.name` , `category.translation.breadcrumb` , `category.translation.breadcrumb` as `category.breadcrumb` , `category.translation.slotConfig` , `category.translation.slotConfig` as `category.slotConfig` , `category.translation.linkType` , `category.translation.linkType` as `category.linkType` , `category.translation.internalLink` , `category.translation.internalLink` as `category.internalLink` , `category.translation.externalLink` , `category.translation.externalLink` as `category.externalLink` , `category.translation.linkNewTab` , `category.translation.linkNewTab` as `category.linkNewTab` , `category.translation.description` , `category.translation.description` as `category.description` , `category.translation.metaTitle` , `category.translation.metaTitle` as `category.metaTitle` , `category.translation.metaDescription` , `category.translation.metaDescription` as `category.metaDescription` , `category.translation.keywords` , `category.translation.keywords` as `category.keywords` , `category.translation.customFields` , `category.translation.customFields` as `category.customFields` FROM `category` LEFT JOIN `media` `category.media` ON `category` . `media_id` = `category.media` . `id` LEFT JOIN (SELECT `category.translation` . `category_id` , `category.translation` . `category_version_id` , `category.translation` . `breadcrumb` as `category.translation.breadcrumb` , `category.translation` . `name` as `category.translation.name` , `category.translation` . `custom_fields` as `category.translation.customFields` , `category.translation` . `slot_config` as `category.translation.slotConfig` , `category.translation` . `link_type` as `category.translation.linkType` , `category.translation` . `internal_link` as `category.translation.internalLink` , `category.translation` . `external_link` as `category.translation.externalLink` , `category.translation` . `link_new_tab` as `category.translation.linkNewTab` , `category.translation` . `description` as `category.translation.description` , `category.translation` . `meta_title` as `category.translation.metaTitle` , `category.translation` . `meta_description` as `category.translation.metaDescription` , `category.translation` . `keywords` as `category.translation.keywords` FROM `category_translation` `category.translation` WHERE `category.translation` . `language_id` = 0x0230A828E7F14120974FAE38CDACDEDB ) `category.category_translation` ON `category.category_translation` . `category_id` = `category` . `id` AND `category.category_translation` . `category_version_id` = `category` . `version_id` LEFT JOIN (SELECT `category.media.translation` . `media_id` , `category.media.translation` . `alt` as `category.media.translation.alt` , `category.media.translation` . `title` as `category.media.translation.title` , `category.media.translation` . `custom_fields` as `category.media.translation.customFields` FROM `media_translation` `category.media.translation` WHERE `category.media.translation` . `language_id` = 0x0230A828E7F14120974FAE38CDACDEDB ) `category.media.media_translation` ON `category.media.media_translation` . `media_id` = `category.media` . `id` WHERE (`category` . `version_id` = 0x0FA91CE3E96A4BC2BE4BD9CE752C3425 ) AND (`category` . `id` IN (0x70B047D97930498EA54C6E7137268C73 , 0x09811CC81A994009B0410D657149892C ));
Copy
116
0.72 ms
SELECT `payment_method` . `id` FROM `payment_method` LEFT JOIN `sales_channel_payment_method` `payment_method.salesChannels.mapping` ON `payment_method` . `id` = `payment_method.salesChannels.mapping` . `payment_method_id` LEFT JOIN `sales_channel` `payment_method.salesChannels` ON `payment_method.salesChannels.mapping` . `sales_channel_id` = `payment_method.salesChannels` . `id` WHERE (`payment_method` . `active` = ? AND `payment_method.salesChannels` . `id` = ? ) GROUP BY `payment_method` . `id` ORDER BY MIN (`payment_method` . `position` ) ASC
Parameters :
[
true
b">{k'Ô\x1E O‡!¼GnÏMj "
]
SELECT `payment_method` . `id` FROM `payment_method` LEFT JOIN `sales_channel_payment_method` `payment_method.salesChannels.mapping` ON `payment_method` . `id` = `payment_method.salesChannels.mapping` . `payment_method_id` LEFT JOIN `sales_channel` `payment_method.salesChannels` ON `payment_method.salesChannels.mapping` . `sales_channel_id` = `payment_method.salesChannels` . `id` WHERE (`payment_method` . `active` = 1 AND `payment_method.salesChannels` . `id` = 0x3E7B6B27D41E4F87AD21BC476ECF4D6A ) GROUP BY `payment_method` . `id` ORDER BY MIN (`payment_method` . `position` ) ASC ;
Copy
117
1.35 ms
SELECT `payment_method` . `id` as `payment_method.id` , `payment_method` . `plugin_id` as `payment_method.pluginId` , `payment_method` . `handler_identifier` as `payment_method.handlerIdentifier` , `payment_method` . `position` as `payment_method.position` , `payment_method` . `active` as `payment_method.active` , `payment_method` . `after_order_enabled` as `payment_method.afterOrderEnabled` , `payment_method` . `availability_rule_id` as `payment_method.availabilityRuleId` , `payment_method` . `media_id` as `payment_method.mediaId` , `payment_method` . `technical_name` as `payment_method.technicalName` , `payment_method` . `created_at` as `payment_method.createdAt` , `payment_method` . `updated_at` as `payment_method.updatedAt` , `payment_method.media` . `id` as `payment_method.media.id` , `payment_method.media` . `user_id` as `payment_method.media.userId` , `payment_method.media` . `media_folder_id` as `payment_method.media.mediaFolderId` , `payment_method.media` . `mime_type` as `payment_method.media.mimeType` , `payment_method.media` . `file_extension` as `payment_method.media.fileExtension` , `payment_method.media` . `uploaded_at` as `payment_method.media.uploadedAt` , `payment_method.media` . `file_name` as `payment_method.media.fileName` , `payment_method.media` . `file_size` as `payment_method.media.fileSize` , `payment_method.media` . `media_type` as `payment_method.media.mediaTypeRaw` , `payment_method.media` . `meta_data` as `payment_method.media.metaData` , `payment_method.media` . `config` as `payment_method.media.config` , `payment_method.media` . `path` as `payment_method.media.path` , `payment_method.media` . `private` as `payment_method.media.private` , `payment_method.media` . `thumbnails_ro` as `payment_method.media.thumbnailsRo` , `payment_method.media` . `file_hash` as `payment_method.media.fileHash` , `payment_method.media` . `created_at` as `payment_method.media.createdAt` , `payment_method.media` . `updated_at` as `payment_method.media.updatedAt` , `payment_method.media.translation.title` , `payment_method.media.translation.title` as `payment_method.media.title` , `payment_method.media.translation.alt` , `payment_method.media.translation.alt` as `payment_method.media.alt` , `payment_method.media.translation.customFields` , `payment_method.media.translation.customFields` as `payment_method.media.customFields` , `payment_method.translation.name` , `payment_method.translation.name` as `payment_method.name` , `payment_method.translation.distinguishableName` , `payment_method.translation.distinguishableName` as `payment_method.distinguishableName` , `payment_method.translation.description` , `payment_method.translation.description` as `payment_method.description` , `payment_method.translation.customFields` , `payment_method.translation.customFields` as `payment_method.customFields` FROM `payment_method` LEFT JOIN `media` `payment_method.media` ON `payment_method` . `media_id` = `payment_method.media` . `id` LEFT JOIN (SELECT `payment_method.translation` . `payment_method_id` , `payment_method.translation` . `name` as `payment_method.translation.name` , `payment_method.translation` . `distinguishable_name` as `payment_method.translation.distinguishableName` , `payment_method.translation` . `description` as `payment_method.translation.description` , `payment_method.translation` . `custom_fields` as `payment_method.translation.customFields` FROM `payment_method_translation` `payment_method.translation` WHERE `payment_method.translation` . `language_id` = ? ) `payment_method.payment_method_translation` ON `payment_method.payment_method_translation` . `payment_method_id` = `payment_method` . `id` LEFT JOIN (SELECT `payment_method.media.translation` . `media_id` , `payment_method.media.translation` . `alt` as `payment_method.media.translation.alt` , `payment_method.media.translation` . `title` as `payment_method.media.translation.title` , `payment_method.media.translation` . `custom_fields` as `payment_method.media.translation.customFields` FROM `media_translation` `payment_method.media.translation` WHERE `payment_method.media.translation` . `language_id` = ? ) `payment_method.media.media_translation` ON `payment_method.media.media_translation` . `media_id` = `payment_method.media` . `id` WHERE `payment_method` . `id` IN (? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? )
Parameters :
[
b"\x02 0¨(çñA —O®8ͬÞÛ "
b"\x02 0¨(çñA —O®8ͬÞÛ "
b".ÀkcÁIáÌO«-\x06 w└Éb "
b"Vjÿª@SB\x16 ¿╠¾}O\e ü! "
b"Î\x04 eDO›Op‘\x02\x0F þWÆJÙ "
b" ;S¦ãÓH6±PÌnêöÙ} "
b"ñï6SŒYMÅ€µž( j\x12 — "
b"íà[q›!AC¤Ë\x1C\x02\x16 ¸RÞ "
b"L¦B\x04 k@$„D룋¸õè "
b"ÒEÞ‡\x07 è_\x05 >€j¿ü»6 "
b"ŸJǾó9D‡°«’˜Ñ.±½ "
b"¸©Å╔└\x10 G\x02 ®ofM½■&V "
b"2¹S\x19 „¼E·‡C.\x14 ùÓæø "
]
SELECT
`payment_method` . `id` as `payment_method.id` ,
`payment_method` . `plugin_id` as `payment_method.pluginId` ,
`payment_method` . `handler_identifier` as `payment_method.handlerIdentifier` ,
`payment_method` . `position` as `payment_method.position` ,
`payment_method` . `active` as `payment_method.active` ,
`payment_method` . `after_order_enabled` as `payment_method.afterOrderEnabled` ,
`payment_method` . `availability_rule_id` as `payment_method.availabilityRuleId` ,
`payment_method` . `media_id` as `payment_method.mediaId` ,
`payment_method` . `technical_name` as `payment_method.technicalName` ,
`payment_method` . `created_at` as `payment_method.createdAt` ,
`payment_method` . `updated_at` as `payment_method.updatedAt` ,
`payment_method.media` . `id` as `payment_method.media.id` ,
`payment_method.media` . `user_id` as `payment_method.media.userId` ,
`payment_method.media` . `media_folder_id` as `payment_method.media.mediaFolderId` ,
`payment_method.media` . `mime_type` as `payment_method.media.mimeType` ,
`payment_method.media` . `file_extension` as `payment_method.media.fileExtension` ,
`payment_method.media` . `uploaded_at` as `payment_method.media.uploadedAt` ,
`payment_method.media` . `file_name` as `payment_method.media.fileName` ,
`payment_method.media` . `file_size` as `payment_method.media.fileSize` ,
`payment_method.media` . `media_type` as `payment_method.media.mediaTypeRaw` ,
`payment_method.media` . `meta_data` as `payment_method.media.metaData` ,
`payment_method.media` . `config` as `payment_method.media.config` ,
`payment_method.media` . `path` as `payment_method.media.path` ,
`payment_method.media` . `private` as `payment_method.media.private` ,
`payment_method.media` . `thumbnails_ro` as `payment_method.media.thumbnailsRo` ,
`payment_method.media` . `file_hash` as `payment_method.media.fileHash` ,
`payment_method.media` . `created_at` as `payment_method.media.createdAt` ,
`payment_method.media` . `updated_at` as `payment_method.media.updatedAt` ,
`payment_method.media.translation.title` ,
`payment_method.media.translation.title` as `payment_method.media.title` ,
`payment_method.media.translation.alt` ,
`payment_method.media.translation.alt` as `payment_method.media.alt` ,
`payment_method.media.translation.customFields` ,
`payment_method.media.translation.customFields` as `payment_method.media.customFields` ,
`payment_method.translation.name` ,
`payment_method.translation.name` as `payment_method.name` ,
`payment_method.translation.distinguishableName` ,
`payment_method.translation.distinguishableName` as `payment_method.distinguishableName` ,
`payment_method.translation.description` ,
`payment_method.translation.description` as `payment_method.description` ,
`payment_method.translation.customFields` ,
`payment_method.translation.customFields` as `payment_method.customFields`
FROM
`payment_method`
LEFT JOIN `media` `payment_method.media` ON `payment_method` . `media_id` = `payment_method.media` . `id`
LEFT JOIN (
SELECT
`payment_method.translation` . `payment_method_id` ,
`payment_method.translation` . `name` as `payment_method.translation.name` ,
`payment_method.translation` . `distinguishable_name` as `payment_method.translation.distinguishableName` ,
`payment_method.translation` . `description` as `payment_method.translation.description` ,
`payment_method.translation` . `custom_fields` as `payment_method.translation.customFields`
FROM
`payment_method_translation` `payment_method.translation`
WHERE
`payment_method.translation` . `language_id` = ?
) `payment_method.payment_method_translation` ON `payment_method.payment_method_translation` . `payment_method_id` = `payment_method` . `id`
LEFT JOIN (
SELECT
`payment_method.media.translation` . `media_id` ,
`payment_method.media.translation` . `alt` as `payment_method.media.translation.alt` ,
`payment_method.media.translation` . `title` as `payment_method.media.translation.title` ,
`payment_method.media.translation` . `custom_fields` as `payment_method.media.translation.customFields`
FROM
`media_translation` `payment_method.media.translation`
WHERE
`payment_method.media.translation` . `language_id` = ?
) `payment_method.media.media_translation` ON `payment_method.media.media_translation` . `media_id` = `payment_method.media` . `id`
WHERE
`payment_method` . `id` IN (? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? )
Copy
SELECT `payment_method` . `id` as `payment_method.id` , `payment_method` . `plugin_id` as `payment_method.pluginId` , `payment_method` . `handler_identifier` as `payment_method.handlerIdentifier` , `payment_method` . `position` as `payment_method.position` , `payment_method` . `active` as `payment_method.active` , `payment_method` . `after_order_enabled` as `payment_method.afterOrderEnabled` , `payment_method` . `availability_rule_id` as `payment_method.availabilityRuleId` , `payment_method` . `media_id` as `payment_method.mediaId` , `payment_method` . `technical_name` as `payment_method.technicalName` , `payment_method` . `created_at` as `payment_method.createdAt` , `payment_method` . `updated_at` as `payment_method.updatedAt` , `payment_method.media` . `id` as `payment_method.media.id` , `payment_method.media` . `user_id` as `payment_method.media.userId` , `payment_method.media` . `media_folder_id` as `payment_method.media.mediaFolderId` , `payment_method.media` . `mime_type` as `payment_method.media.mimeType` , `payment_method.media` . `file_extension` as `payment_method.media.fileExtension` , `payment_method.media` . `uploaded_at` as `payment_method.media.uploadedAt` , `payment_method.media` . `file_name` as `payment_method.media.fileName` , `payment_method.media` . `file_size` as `payment_method.media.fileSize` , `payment_method.media` . `media_type` as `payment_method.media.mediaTypeRaw` , `payment_method.media` . `meta_data` as `payment_method.media.metaData` , `payment_method.media` . `config` as `payment_method.media.config` , `payment_method.media` . `path` as `payment_method.media.path` , `payment_method.media` . `private` as `payment_method.media.private` , `payment_method.media` . `thumbnails_ro` as `payment_method.media.thumbnailsRo` , `payment_method.media` . `file_hash` as `payment_method.media.fileHash` , `payment_method.media` . `created_at` as `payment_method.media.createdAt` , `payment_method.media` . `updated_at` as `payment_method.media.updatedAt` , `payment_method.media.translation.title` , `payment_method.media.translation.title` as `payment_method.media.title` , `payment_method.media.translation.alt` , `payment_method.media.translation.alt` as `payment_method.media.alt` , `payment_method.media.translation.customFields` , `payment_method.media.translation.customFields` as `payment_method.media.customFields` , `payment_method.translation.name` , `payment_method.translation.name` as `payment_method.name` , `payment_method.translation.distinguishableName` , `payment_method.translation.distinguishableName` as `payment_method.distinguishableName` , `payment_method.translation.description` , `payment_method.translation.description` as `payment_method.description` , `payment_method.translation.customFields` , `payment_method.translation.customFields` as `payment_method.customFields` FROM `payment_method` LEFT JOIN `media` `payment_method.media` ON `payment_method` . `media_id` = `payment_method.media` . `id` LEFT JOIN (SELECT `payment_method.translation` . `payment_method_id` , `payment_method.translation` . `name` as `payment_method.translation.name` , `payment_method.translation` . `distinguishable_name` as `payment_method.translation.distinguishableName` , `payment_method.translation` . `description` as `payment_method.translation.description` , `payment_method.translation` . `custom_fields` as `payment_method.translation.customFields` FROM `payment_method_translation` `payment_method.translation` WHERE `payment_method.translation` . `language_id` = 0x0230A828E7F14120974FAE38CDACDEDB ) `payment_method.payment_method_translation` ON `payment_method.payment_method_translation` . `payment_method_id` = `payment_method` . `id` LEFT JOIN (SELECT `payment_method.media.translation` . `media_id` , `payment_method.media.translation` . `alt` as `payment_method.media.translation.alt` , `payment_method.media.translation` . `title` as `payment_method.media.translation.title` , `payment_method.media.translation` . `custom_fields` as `payment_method.media.translation.customFields` FROM `media_translation` `payment_method.media.translation` WHERE `payment_method.media.translation` . `language_id` = 0x0230A828E7F14120974FAE38CDACDEDB ) `payment_method.media.media_translation` ON `payment_method.media.media_translation` . `media_id` = `payment_method.media` . `id` WHERE `payment_method` . `id` IN (0x2EB76B63B549A0DE4FAE2D0677C09062 , 0x566A98A640534216A8CCF37D4F1B8121 , 0xCE0465444F9B4F7091020FFE57C64AD9 , 0xA03B53A6E3D34836B150CC6EEAF6D97D , 0xF1EF36538C594DC580B59E28206A1297 , 0xEDE05B719B214143A4CB1C0216B852DE , 0xAD4CA642046B40248444EBA38BB8F5E8 , 0xD245C39E8707E85F053E806ABFFCBB36 , 0x9F4AC7BEF3394487B0AB9298D12EB1BD , 0xF7B88FC9C0104702A96F664DABFE2656 , 0x32B9531984BC45B787432E14F9D3E6F8 );
Copy
118
0.88 ms
SELECT `shipping_method` . `id` FROM `shipping_method` LEFT JOIN `sales_channel_shipping_method` `shipping_method.salesChannels.mapping` ON `shipping_method` . `id` = `shipping_method.salesChannels.mapping` . `shipping_method_id` LEFT JOIN (SELECT `shipping_method.translation` . `shipping_method_id` , `shipping_method.translation` . `name` as `shipping_method.translation.name` FROM `shipping_method_translation` `shipping_method.translation` WHERE `shipping_method.translation` . `language_id` = ? ) `shipping_method.shipping_method_translation` ON `shipping_method.shipping_method_translation` . `shipping_method_id` = `shipping_method` . `id` LEFT JOIN `sales_channel` `shipping_method.salesChannels` ON `shipping_method.salesChannels.mapping` . `sales_channel_id` = `shipping_method.salesChannels` . `id` WHERE (`shipping_method` . `active` = ? AND `shipping_method.salesChannels` . `id` = ? ) GROUP BY `shipping_method` . `id` ORDER BY MIN (`shipping_method` . `position` ) ASC , MIN (COALESCE (`shipping_method.translation.name` )) ASC
Parameters :
[
b"\x02 0¨(çñA —O®8ͬÞÛ "
true
b">{k'Ô\x1E O‡!¼GnÏMj "
]
SELECT `shipping_method` . `id` FROM `shipping_method` LEFT JOIN `sales_channel_shipping_method` `shipping_method.salesChannels.mapping` ON `shipping_method` . `id` = `shipping_method.salesChannels.mapping` . `shipping_method_id` LEFT JOIN (SELECT `shipping_method.translation` . `shipping_method_id` , `shipping_method.translation` . `name` as `shipping_method.translation.name` FROM `shipping_method_translation` `shipping_method.translation` WHERE `shipping_method.translation` . `language_id` = 0x0230A828E7F14120974FAE38CDACDEDB ) `shipping_method.shipping_method_translation` ON `shipping_method.shipping_method_translation` . `shipping_method_id` = `shipping_method` . `id` LEFT JOIN `sales_channel` `shipping_method.salesChannels` ON `shipping_method.salesChannels.mapping` . `sales_channel_id` = `shipping_method.salesChannels` . `id` WHERE (`shipping_method` . `active` = 1 AND `shipping_method.salesChannels` . `id` = 0x3E7B6B27D41E4F87AD21BC476ECF4D6A ) GROUP BY `shipping_method` . `id` ORDER BY MIN (`shipping_method` . `position` ) ASC , MIN (COALESCE (`shipping_method.translation.name` )) ASC ;
Copy
119
1.09 ms
SELECT `shipping_method` . `id` as `shipping_method.id` , `shipping_method` . `technical_name` as `shipping_method.technicalName` , `shipping_method` . `active` as `shipping_method.active` , `shipping_method` . `position` as `shipping_method.position` , `shipping_method` . `availability_rule_id` as `shipping_method.availabilityRuleId` , `shipping_method` . `media_id` as `shipping_method.mediaId` , `shipping_method` . `delivery_time_id` as `shipping_method.deliveryTimeId` , `shipping_method` . `tax_type` as `shipping_method.taxType` , `shipping_method` . `tax_id` as `shipping_method.taxId` , `shipping_method` . `created_at` as `shipping_method.createdAt` , `shipping_method` . `updated_at` as `shipping_method.updatedAt` , `shipping_method.media` . `id` as `shipping_method.media.id` , `shipping_method.media` . `user_id` as `shipping_method.media.userId` , `shipping_method.media` . `media_folder_id` as `shipping_method.media.mediaFolderId` , `shipping_method.media` . `mime_type` as `shipping_method.media.mimeType` , `shipping_method.media` . `file_extension` as `shipping_method.media.fileExtension` , `shipping_method.media` . `uploaded_at` as `shipping_method.media.uploadedAt` , `shipping_method.media` . `file_name` as `shipping_method.media.fileName` , `shipping_method.media` . `file_size` as `shipping_method.media.fileSize` , `shipping_method.media` . `media_type` as `shipping_method.media.mediaTypeRaw` , `shipping_method.media` . `meta_data` as `shipping_method.media.metaData` , `shipping_method.media` . `config` as `shipping_method.media.config` , `shipping_method.media` . `path` as `shipping_method.media.path` , `shipping_method.media` . `private` as `shipping_method.media.private` , `shipping_method.media` . `thumbnails_ro` as `shipping_method.media.thumbnailsRo` , `shipping_method.media` . `file_hash` as `shipping_method.media.fileHash` , `shipping_method.media` . `created_at` as `shipping_method.media.createdAt` , `shipping_method.media` . `updated_at` as `shipping_method.media.updatedAt` , `shipping_method.media.translation.title` , `shipping_method.media.translation.title` as `shipping_method.media.title` , `shipping_method.media.translation.alt` , `shipping_method.media.translation.alt` as `shipping_method.media.alt` , `shipping_method.media.translation.customFields` , `shipping_method.media.translation.customFields` as `shipping_method.media.customFields` , `shipping_method.translation.name` , `shipping_method.translation.name` as `shipping_method.name` , `shipping_method.translation.description` , `shipping_method.translation.description` as `shipping_method.description` , `shipping_method.translation.trackingUrl` , `shipping_method.translation.trackingUrl` as `shipping_method.trackingUrl` , `shipping_method.translation.customFields` , `shipping_method.translation.customFields` as `shipping_method.customFields` FROM `shipping_method` LEFT JOIN `media` `shipping_method.media` ON `shipping_method` . `media_id` = `shipping_method.media` . `id` LEFT JOIN (SELECT `shipping_method.translation` . `shipping_method_id` , `shipping_method.translation` . `name` as `shipping_method.translation.name` , `shipping_method.translation` . `custom_fields` as `shipping_method.translation.customFields` , `shipping_method.translation` . `description` as `shipping_method.translation.description` , `shipping_method.translation` . `tracking_url` as `shipping_method.translation.trackingUrl` FROM `shipping_method_translation` `shipping_method.translation` WHERE `shipping_method.translation` . `language_id` = ? ) `shipping_method.shipping_method_translation` ON `shipping_method.shipping_method_translation` . `shipping_method_id` = `shipping_method` . `id` LEFT JOIN (SELECT `shipping_method.media.translation` . `media_id` , `shipping_method.media.translation` . `alt` as `shipping_method.media.translation.alt` , `shipping_method.media.translation` . `title` as `shipping_method.media.translation.title` , `shipping_method.media.translation` . `custom_fields` as `shipping_method.media.translation.customFields` FROM `media_translation` `shipping_method.media.translation` WHERE `shipping_method.media.translation` . `language_id` = ? ) `shipping_method.media.media_translation` ON `shipping_method.media.media_translation` . `media_id` = `shipping_method.media` . `id` WHERE `shipping_method` . `id` IN (? , ? )
Parameters :
[
b"\x02 0¨(çñA —O®8ͬÞÛ "
b"\x02 0¨(çñA —O®8ͬÞÛ "
b"ü╬ðiäfKçƒ×\x00 ╔¼¼└J "
b"""
4\x15 ìG¾EJ¹£\n
~╬\x7F ¯4┴
"""
]
SELECT
`shipping_method` . `id` as `shipping_method.id` ,
`shipping_method` . `technical_name` as `shipping_method.technicalName` ,
`shipping_method` . `active` as `shipping_method.active` ,
`shipping_method` . `position` as `shipping_method.position` ,
`shipping_method` . `availability_rule_id` as `shipping_method.availabilityRuleId` ,
`shipping_method` . `media_id` as `shipping_method.mediaId` ,
`shipping_method` . `delivery_time_id` as `shipping_method.deliveryTimeId` ,
`shipping_method` . `tax_type` as `shipping_method.taxType` ,
`shipping_method` . `tax_id` as `shipping_method.taxId` ,
`shipping_method` . `created_at` as `shipping_method.createdAt` ,
`shipping_method` . `updated_at` as `shipping_method.updatedAt` ,
`shipping_method.media` . `id` as `shipping_method.media.id` ,
`shipping_method.media` . `user_id` as `shipping_method.media.userId` ,
`shipping_method.media` . `media_folder_id` as `shipping_method.media.mediaFolderId` ,
`shipping_method.media` . `mime_type` as `shipping_method.media.mimeType` ,
`shipping_method.media` . `file_extension` as `shipping_method.media.fileExtension` ,
`shipping_method.media` . `uploaded_at` as `shipping_method.media.uploadedAt` ,
`shipping_method.media` . `file_name` as `shipping_method.media.fileName` ,
`shipping_method.media` . `file_size` as `shipping_method.media.fileSize` ,
`shipping_method.media` . `media_type` as `shipping_method.media.mediaTypeRaw` ,
`shipping_method.media` . `meta_data` as `shipping_method.media.metaData` ,
`shipping_method.media` . `config` as `shipping_method.media.config` ,
`shipping_method.media` . `path` as `shipping_method.media.path` ,
`shipping_method.media` . `private` as `shipping_method.media.private` ,
`shipping_method.media` . `thumbnails_ro` as `shipping_method.media.thumbnailsRo` ,
`shipping_method.media` . `file_hash` as `shipping_method.media.fileHash` ,
`shipping_method.media` . `created_at` as `shipping_method.media.createdAt` ,
`shipping_method.media` . `updated_at` as `shipping_method.media.updatedAt` ,
`shipping_method.media.translation.title` ,
`shipping_method.media.translation.title` as `shipping_method.media.title` ,
`shipping_method.media.translation.alt` ,
`shipping_method.media.translation.alt` as `shipping_method.media.alt` ,
`shipping_method.media.translation.customFields` ,
`shipping_method.media.translation.customFields` as `shipping_method.media.customFields` ,
`shipping_method.translation.name` ,
`shipping_method.translation.name` as `shipping_method.name` ,
`shipping_method.translation.description` ,
`shipping_method.translation.description` as `shipping_method.description` ,
`shipping_method.translation.trackingUrl` ,
`shipping_method.translation.trackingUrl` as `shipping_method.trackingUrl` ,
`shipping_method.translation.customFields` ,
`shipping_method.translation.customFields` as `shipping_method.customFields`
FROM
`shipping_method`
LEFT JOIN `media` `shipping_method.media` ON `shipping_method` . `media_id` = `shipping_method.media` . `id`
LEFT JOIN (
SELECT
`shipping_method.translation` . `shipping_method_id` ,
`shipping_method.translation` . `name` as `shipping_method.translation.name` ,
`shipping_method.translation` . `custom_fields` as `shipping_method.translation.customFields` ,
`shipping_method.translation` . `description` as `shipping_method.translation.description` ,
`shipping_method.translation` . `tracking_url` as `shipping_method.translation.trackingUrl`
FROM
`shipping_method_translation` `shipping_method.translation`
WHERE
`shipping_method.translation` . `language_id` = ?
) `shipping_method.shipping_method_translation` ON `shipping_method.shipping_method_translation` . `shipping_method_id` = `shipping_method` . `id`
LEFT JOIN (
SELECT
`shipping_method.media.translation` . `media_id` ,
`shipping_method.media.translation` . `alt` as `shipping_method.media.translation.alt` ,
`shipping_method.media.translation` . `title` as `shipping_method.media.translation.title` ,
`shipping_method.media.translation` . `custom_fields` as `shipping_method.media.translation.customFields`
FROM
`media_translation` `shipping_method.media.translation`
WHERE
`shipping_method.media.translation` . `language_id` = ?
) `shipping_method.media.media_translation` ON `shipping_method.media.media_translation` . `media_id` = `shipping_method.media` . `id`
WHERE
`shipping_method` . `id` IN (? , ? )
Copy
SELECT `shipping_method` . `id` as `shipping_method.id` , `shipping_method` . `technical_name` as `shipping_method.technicalName` , `shipping_method` . `active` as `shipping_method.active` , `shipping_method` . `position` as `shipping_method.position` , `shipping_method` . `availability_rule_id` as `shipping_method.availabilityRuleId` , `shipping_method` . `media_id` as `shipping_method.mediaId` , `shipping_method` . `delivery_time_id` as `shipping_method.deliveryTimeId` , `shipping_method` . `tax_type` as `shipping_method.taxType` , `shipping_method` . `tax_id` as `shipping_method.taxId` , `shipping_method` . `created_at` as `shipping_method.createdAt` , `shipping_method` . `updated_at` as `shipping_method.updatedAt` , `shipping_method.media` . `id` as `shipping_method.media.id` , `shipping_method.media` . `user_id` as `shipping_method.media.userId` , `shipping_method.media` . `media_folder_id` as `shipping_method.media.mediaFolderId` , `shipping_method.media` . `mime_type` as `shipping_method.media.mimeType` , `shipping_method.media` . `file_extension` as `shipping_method.media.fileExtension` , `shipping_method.media` . `uploaded_at` as `shipping_method.media.uploadedAt` , `shipping_method.media` . `file_name` as `shipping_method.media.fileName` , `shipping_method.media` . `file_size` as `shipping_method.media.fileSize` , `shipping_method.media` . `media_type` as `shipping_method.media.mediaTypeRaw` , `shipping_method.media` . `meta_data` as `shipping_method.media.metaData` , `shipping_method.media` . `config` as `shipping_method.media.config` , `shipping_method.media` . `path` as `shipping_method.media.path` , `shipping_method.media` . `private` as `shipping_method.media.private` , `shipping_method.media` . `thumbnails_ro` as `shipping_method.media.thumbnailsRo` , `shipping_method.media` . `file_hash` as `shipping_method.media.fileHash` , `shipping_method.media` . `created_at` as `shipping_method.media.createdAt` , `shipping_method.media` . `updated_at` as `shipping_method.media.updatedAt` , `shipping_method.media.translation.title` , `shipping_method.media.translation.title` as `shipping_method.media.title` , `shipping_method.media.translation.alt` , `shipping_method.media.translation.alt` as `shipping_method.media.alt` , `shipping_method.media.translation.customFields` , `shipping_method.media.translation.customFields` as `shipping_method.media.customFields` , `shipping_method.translation.name` , `shipping_method.translation.name` as `shipping_method.name` , `shipping_method.translation.description` , `shipping_method.translation.description` as `shipping_method.description` , `shipping_method.translation.trackingUrl` , `shipping_method.translation.trackingUrl` as `shipping_method.trackingUrl` , `shipping_method.translation.customFields` , `shipping_method.translation.customFields` as `shipping_method.customFields` FROM `shipping_method` LEFT JOIN `media` `shipping_method.media` ON `shipping_method` . `media_id` = `shipping_method.media` . `id` LEFT JOIN (SELECT `shipping_method.translation` . `shipping_method_id` , `shipping_method.translation` . `name` as `shipping_method.translation.name` , `shipping_method.translation` . `custom_fields` as `shipping_method.translation.customFields` , `shipping_method.translation` . `description` as `shipping_method.translation.description` , `shipping_method.translation` . `tracking_url` as `shipping_method.translation.trackingUrl` FROM `shipping_method_translation` `shipping_method.translation` WHERE `shipping_method.translation` . `language_id` = 0x0230A828E7F14120974FAE38CDACDEDB ) `shipping_method.shipping_method_translation` ON `shipping_method.shipping_method_translation` . `shipping_method_id` = `shipping_method` . `id` LEFT JOIN (SELECT `shipping_method.media.translation` . `media_id` , `shipping_method.media.translation` . `alt` as `shipping_method.media.translation.alt` , `shipping_method.media.translation` . `title` as `shipping_method.media.translation.title` , `shipping_method.media.translation` . `custom_fields` as `shipping_method.media.translation.customFields` FROM `media_translation` `shipping_method.media.translation` WHERE `shipping_method.media.translation` . `language_id` = 0x0230A828E7F14120974FAE38CDACDEDB ) `shipping_method.media.media_translation` ON `shipping_method.media.media_translation` . `media_id` = `shipping_method.media` . `id` WHERE `shipping_method` . `id` IN (0x81CED06984664B879F9E00C9ACACC04A , 0x34158D47F3454AFB9C0A7ECE7FEE34C1 );
Copy
120
0.89 ms
SELECT seo_path_info , path_info , sales_channel_id FROM seo_url WHERE (seo_url . is_canonical = 1 ) AND (seo_url . path_info IN (? , ? , ? , ? , ? , ? , ? )) AND (seo_url . language_id = ? ) AND (seo_url . sales_channel_id = ? OR seo_url . sales_channel_id IS NULL ) AND (seo_url . is_deleted = 0 )
Parameters :
[
"/navigation/a649acda6c984d1db396639339d03cdc "
"/navigation/cf242ff39e4746ecb866fafc61411513 "
"/navigation/d90390e10716461e9ecf8c3428e3e410 "
"/navigation/ee15d770989b4bcca6f8c442c69c0d78 "
"/navigation/2278ab912c204a1285274b3c1c933a47 "
"/navigation/e72642e9b2844d67926247e7357f2d7b "
"/navigation/d373b333ac5643e394dd4d29ffa2a30f "
b"\x02 0¨(çñA —O®8ͬÞÛ "
b">{k'Ô\x1E O‡!¼GnÏMj "
]
SELECT seo_path_info , path_info , sales_channel_id FROM seo_url WHERE (seo_url . is_canonical = 1 ) AND (seo_url . path_info IN ('/navigation/a649acda6c984d1db396639339d03cdc' , '/navigation/cf242ff39e4746ecb866fafc61411513' , '/navigation/d90390e10716461e9ecf8c3428e3e410' , '/navigation/ee15d770989b4bcca6f8c442c69c0d78' , '/navigation/2278ab912c204a1285274b3c1c933a47' , '/navigation/e72642e9b2844d67926247e7357f2d7b' , '/navigation/d373b333ac5643e394dd4d29ffa2a30f' )) AND (seo_url . language_id = 0x0230A828E7F14120974FAE38CDACDEDB ) AND (seo_url . sales_channel_id = 0x3E7B6B27D41E4F87AD21BC476ECF4D6A OR seo_url . sales_channel_id IS NULL ) AND (seo_url . is_deleted = 0 );
Copy
121
0.52 ms
SELECT `rule` . `id` as `rule.id` , `rule` . `name` as `rule.name` , `rule` . `priority` as `rule.priority` , `rule` . `description` as `rule.description` , `rule` . `payload` as `rule.payload` , `rule` . `invalid` as `rule.invalid` , `rule` . `areas` as `rule.areas` , `rule` . `custom_fields` as `rule.customFields` , `rule` . `module_types` as `rule.moduleTypes` , `rule` . `created_at` as `rule.createdAt` , `rule` . `updated_at` as `rule.updatedAt` FROM `rule` WHERE `rule` . `id` IN (? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? )
Parameters :
[
b"Ø\f zÔ\x13 `H\t ±{\x19\x1D ²5u5 "
b"\x1D pH#jÏJR°<\x03 eÅÏQ\ "
b"8X•p\x16 dMä®HÀP\v óÌÈ "
b"D«îåŽÚCU›¼ðöÿ)c\x00 "
b"sÿ]5Ú╩Bi¬Ç\e ÅÓböK "
b"—*{žNàOÇ E$ÁÁ{Wù "
b"ß7ìÀÇèGÅæ×\r t\r ]l\x1A "
b"éŒa'L9EhµùÓ¢‹D°Ù "
b"ìi~ÃAÙOËœ§ÌµŸ),< "
b"(Ê®u¥bO\r ˜Z½\x0E ³*¡` "
b"YÄCê\r II0 \x0E ÏZ\x03 ˜ð\x03 "
b"äNg‚ÆBG·–¸‘Ï%®8÷ "
]
SELECT `rule` . `id` as `rule.id` , `rule` . `name` as `rule.name` , `rule` . `priority` as `rule.priority` , `rule` . `description` as `rule.description` , `rule` . `payload` as `rule.payload` , `rule` . `invalid` as `rule.invalid` , `rule` . `areas` as `rule.areas` , `rule` . `custom_fields` as `rule.customFields` , `rule` . `module_types` as `rule.moduleTypes` , `rule` . `created_at` as `rule.createdAt` , `rule` . `updated_at` as `rule.updatedAt` FROM `rule` WHERE `rule` . `id` IN (0xD80C7AD413604809B17B191DB2357535 , 0x1D7048236ACF4A52B03C0365C5CF515C , 0x3858957016644DE4AE48C0500BF3CCC8 , 0x44ABEEE58EDA43559BBCF0F6FF296300 , 0x73985D35E9CA4269AA801B8FE062944B , 0x972A7B9E4EE04FC7A04524C1C17B57F9 , 0xE1378DB7808A478F919E0D740D5D6C1A , 0xE98C61274C394568B5F9D3A28B44B0D9 , 0xEC697EC341D94FCB9CA7CCB59F292C3C , 0x28CAAE75A5624F0D985ABD0EB32AA160 , 0x59C443EA0D494930A00ECF5A0398F003 , 0xE44E6782C64247B796B891CF25AE38F7 );
Copy