diff --git a/theme_boec/__init__.py b/theme_boec/__init__.py new file mode 100644 index 000000000..a0cffd4b6 --- /dev/null +++ b/theme_boec/__init__.py @@ -0,0 +1,24 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2022-TODAY Cybrosys Technologies() +# Author: Cybrosys Techno Solutions() +# +# You can modify it under the terms of the GNU LESSER +# GENERAL PUBLIC LICENSE (LGPL v3), Version 3. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details. +# +# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE +# (LGPL v3) along with this program. +# If not, see . +# +############################################################################# + +from . import models +from . import controllers diff --git a/theme_boec/__manifest__.py b/theme_boec/__manifest__.py new file mode 100644 index 000000000..cc1b51f53 --- /dev/null +++ b/theme_boec/__manifest__.py @@ -0,0 +1,89 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2022-TODAY Cybrosys Technologies() +# Author: Cybrosys Techno Solutions() +# +# You can modify it under the terms of the GNU LESSER +# GENERAL PUBLIC LICENSE (LGPL v3), Version 3. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details. +# +# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE +# (LGPL v3) along with this program. +# If not, see . +# +############################################################################# +{ + 'name': 'Theme Boec', + 'description': 'Theme Boec is an attractive and modern eCommerce Website theme', + 'summary': 'Theme Boec is a new kind of Theme. ' + 'The theme is a very user-friendly and is suitable for your eCommerce website with blog.', + 'category': 'Theme/eCommerce', + 'version': '16.0.1.0.0', + 'author': 'Cybrosys Techno Solutions', + 'company': 'Cybrosys Techno Solutions', + 'maintainer': 'Cybrosys Techno Solutions', + 'website': "https://www.cybrosys.com", + 'depends': ['website_blog', 'website_sale_wishlist', 'website_sale', + 'website_sale_comparison', 'website'], + 'data': [ + 'data/boec_config.xml', + 'data/boec_config_data.xml', + 'data/brand_filter.xml', + 'data/brand_inherit.xml', + 'data/hot_deals_button.xml', + 'security/ir.model.access.csv', + 'views/about.xml', + 'views/blog.xml', + 'views/blog_preview.xml', + 'views/cart.xml', + 'views/contact_us.xml', + 'views/footer.xml', + 'views/header.xml', + 'views/layouts.xml', + 'views/pages_top.xml', + 'views/product_view.xml', + 'views/shop.xml', + 'views/sidebar_shop.xml', + 'views/snippets/banner.xml', + 'views/snippets/blog_latest.xml', + 'views/snippets/deal_week.xml', + 'views/snippets/demo_product.xml', + 'views/snippets/insta_feed.xml', + 'views/snippets/product_tab.xml', + 'views/snippets/product_tab_demo.xml', + ], + 'assets': { + 'web.assets_frontend': [ + ('replace', 'website_sale/static/src/js/website_sale_utils.js', + 'theme_boec/static/src/js/sale_utils.js'), + "/theme_boec/static/src/css/style.css", + "/theme_boec/static/src/css/style.css.map", + "/theme_boec/static/src/css/style.scss", + "/theme_boec/static/src/css/owl_carousel_min.css", + "/theme_boec/static/src/css/owl_theme_default_min.css", + "/theme_boec/static/src/js/owl.carousel.js", + "/theme_boec/static/src/js/owl.carousel.min.js", + "/theme_boec/static/src/js/jquery.countdown.min.js", + "/theme_boec/static/src/js/deal_week.js", + "/theme_boec/static/src/js/product_tab.js", + "/theme_boec/static/src/js/custom.js", + "https://fonts.googleapis.com/css2?family=Karla:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,500&family=Montserrat&display=swap" + + ], + }, + 'images': [ + 'static/description/banner.png', + 'static/description/theme_screenshot.png', + ], + 'license': 'LGPL-3', + 'installable': True, + 'application': False, + 'auto_install': False, +} diff --git a/theme_boec/controllers/__init__.py b/theme_boec/controllers/__init__.py new file mode 100644 index 000000000..a2d5e556f --- /dev/null +++ b/theme_boec/controllers/__init__.py @@ -0,0 +1,26 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2022-TODAY Cybrosys Technologies() +# Author: Cybrosys Techno Solutions() +# +# You can modify it under the terms of the GNU LESSER +# GENERAL PUBLIC LICENSE (LGPL v3), Version 3. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details. +# +# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE +# (LGPL v3) along with this program. +# If not, see . +# +############################################################################# + +from . import brand_filter_controller +from . import deal_week +from . import price_filter +from . import product_tab diff --git a/theme_boec/controllers/brand_filter_controller.py b/theme_boec/controllers/brand_filter_controller.py new file mode 100644 index 000000000..3bee19f86 --- /dev/null +++ b/theme_boec/controllers/brand_filter_controller.py @@ -0,0 +1,242 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2022-TODAY Cybrosys Technologies() +# Author: Cybrosys Techno Solutions() +# +# You can modify it under the terms of the GNU LESSER +# GENERAL PUBLIC LICENSE (LGPL v3), Version 3. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details. +# +# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE +# (LGPL v3) along with this program. +# If not, see . +# +############################################################################# + + +from odoo.addons.website_sale.controllers.main import TableCompute, WebsiteSale + +from datetime import datetime +from werkzeug.exceptions import Forbidden, NotFound +from odoo import fields, http, SUPERUSER_ID, tools, _ +from odoo.http import request +from odoo.addons.http_routing.models.ir_http import slug +from odoo.addons.website.controllers.main import QueryURL +from odoo.tools import lazy +from odoo.addons.website.models.ir_http import sitemap_qs2dom + + +class ProductBrand(WebsiteSale): + + def sitemap_shop(env, rule, qs): + if not qs or qs.lower() in '/shop': + yield {'loc': '/shop'} + + Category = env['product.public.category'] + dom = sitemap_qs2dom(qs, '/shop/category', Category._rec_name) + dom += env['website'].get_current_website().website_domain() + for cat in Category.search(dom): + loc = '/shop/category/%s' % slug(cat) + if not qs or qs.lower() in loc: + yield {'loc': loc} + + @http.route([ + '/shop', + '/shop/page/', + '/shop/category/', + '/shop/category//page/', + '/shop/brand/' + ], type='http', auth="public", website=True, sitemap=sitemap_shop) + def shop(self, brand=None, page=0, category=None, search='', min_price=0.0, max_price=0.0, ppg=False, **post): + add_qty = int(post.get('add_qty', 1)) + try: + min_price = float(min_price) + except ValueError: + min_price = 0 + try: + max_price = float(max_price) + except ValueError: + max_price = 0 + + Category = request.env['product.public.category'] + if category: + category = Category.search([('id', '=', int(category))], limit=1) + if not category or not category.can_access_from_current_website(): + raise NotFound() + else: + category = Category + + website = request.env['website'].get_current_website() + if ppg: + try: + ppg = int(ppg) + post['ppg'] = ppg + except ValueError: + ppg = False + if not ppg: + ppg = website.shop_ppg or 20 + + ppr = website.shop_ppr or 4 + + attrib_list = request.httprequest.args.getlist('attrib') + attrib_values = [[int(x) for x in v.split("-")] for v in attrib_list if v] + attributes_ids = {v[0] for v in attrib_values} + attrib_set = {v[1] for v in attrib_values} + + if not brand: + keep = QueryURL('/shop', + **self._shop_get_query_url_kwargs(category and int(category), search, min_price, max_price, + **post)) + else: + keep = QueryURL('shop/brand') + + now = datetime.timestamp(datetime.now()) + pricelist = request.env['product.pricelist'].browse(request.session.get('website_sale_current_pl')) + if not pricelist or request.session.get('website_sale_pricelist_time', + 0) < now - 60 * 60: # test: 1 hour in session + pricelist = website.get_current_pricelist() + request.session['website_sale_pricelist_time'] = now + request.session['website_sale_current_pl'] = pricelist.id + + request.update_context(pricelist=pricelist.id, partner=request.env.user.partner_id) + + filter_by_price_enabled = website.is_view_active('website_sale.filter_products_price') + if filter_by_price_enabled: + company_currency = website.company_id.currency_id + conversion_rate = request.env['res.currency']._get_conversion_rate( + company_currency, pricelist.currency_id, request.website.company_id, fields.Date.today()) + else: + conversion_rate = 1 + + url = "/shop" + if search: + post["search"] = search + if attrib_list: + post['attrib'] = attrib_list + + options = self._get_search_options( + category=category, + attrib_values=attrib_values, + pricelist=pricelist, + min_price=min_price, + max_price=max_price, + conversion_rate=conversion_rate, + **post + ) + fuzzy_search_term, product_count, search_product = self._shop_lookup_products(attrib_set, options, post, search, + website) + + filter_by_price_enabled = website.is_view_active('website_sale.filter_products_price') + if filter_by_price_enabled: + # TODO Find an alternative way to obtain the domain through the search metadata. + Product = request.env['product.template'].with_context(bin_size=True) + domain = self._get_search_domain(search, category, attrib_values) + + # This is ~4 times more efficient than a search for the cheapest and most expensive products + from_clause, where_clause, where_params = Product._where_calc(domain).get_sql() + query = f""" + SELECT COALESCE(MIN(list_price), 0) * {conversion_rate}, COALESCE(MAX(list_price), 0) * {conversion_rate} + FROM {from_clause} + WHERE {where_clause} + """ + request.env.cr.execute(query, where_params) + available_min_price, available_max_price = request.env.cr.fetchone() + + if min_price or max_price: + # The if/else condition in the min_price / max_price value assignment + # tackles the case where we switch to a list of products with different + # available min / max prices than the ones set in the previous page. + # In order to have logical results and not yield empty product lists, the + # price filter is set to their respective available prices when the specified + # min exceeds the max, and / or the specified max is lower than the available min. + if min_price: + min_price = min_price if min_price <= available_max_price else available_min_price + post['min_price'] = min_price + if max_price: + max_price = max_price if max_price >= available_min_price else available_max_price + post['max_price'] = max_price + + website_domain = website.website_domain() + categs_domain = [('parent_id', '=', False)] + website_domain + if search: + search_categories = Category.search( + [('product_tmpl_ids', 'in', search_product.ids)] + website_domain + ).parents_and_self + categs_domain.append(('id', 'in', search_categories.ids)) + else: + search_categories = Category + categs = lazy(lambda: Category.search(categs_domain)) + + if category: + url = "/shop/category/%s" % slug(category) + + pager = website.pager(url=url, total=product_count, page=page, step=ppg, scope=7, url_args=post) + offset = pager['offset'] + if not brand: + products = search_product[offset:offset + ppg] + else: + products = request.env['product.template'].sudo().search([('brand_id', '=', brand.id), + ('website_published', '=', True)], + order="id desc", + offset=pager['offset']) + + ProductAttribute = request.env['product.attribute'] + if products: + # get all products without limit + attributes = lazy(lambda: ProductAttribute.search([ + ('product_tmpl_ids', 'in', search_product.ids), + ('visibility', '=', 'visible'), + ])) + else: + attributes = lazy(lambda: ProductAttribute.browse(attributes_ids)) + + layout_mode = request.session.get('website_sale_shop_layout_mode') + if not layout_mode: + if website.viewref('website_sale.products_list_view').active: + layout_mode = 'list' + else: + layout_mode = 'grid' + request.session['website_sale_shop_layout_mode'] = layout_mode + + products_prices = lazy(lambda: products._get_sales_prices(pricelist)) + + values = { + 'search': fuzzy_search_term or search, + 'original_search': fuzzy_search_term and search, + 'order': post.get('order', ''), + 'category': category, + 'attrib_values': attrib_values, + 'attrib_set': attrib_set, + 'pager': pager, + 'pricelist': pricelist, + 'add_qty': add_qty, + 'products': products, + 'search_count': product_count, # common for all searchbox + 'bins': lazy(lambda: TableCompute().process(products, ppg, ppr)), + 'ppg': ppg, + 'ppr': ppr, + 'categories': categs, + 'attributes': attributes, + 'keep': keep, + 'search_categories_ids': search_categories.ids, + 'layout_mode': layout_mode, + 'products_prices': products_prices, + 'get_product_prices': lambda product: lazy(lambda: products_prices[product.id]), + 'float_round': tools.float_round, + } + if filter_by_price_enabled: + values['min_price'] = min_price or available_min_price + values['max_price'] = max_price or available_max_price + values['available_min_price'] = tools.float_round(available_min_price, 2) + values['available_max_price'] = tools.float_round(available_max_price, 2) + if category: + values['main_object'] = category + values.update(self._get_additional_shop_values(values)) + return request.render("website_sale.products", values) diff --git a/theme_boec/controllers/deal_week.py b/theme_boec/controllers/deal_week.py new file mode 100644 index 000000000..e2da31c63 --- /dev/null +++ b/theme_boec/controllers/deal_week.py @@ -0,0 +1,41 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2022-TODAY Cybrosys Technologies() +# Author: Cybrosys Techno Solutions() +# +# You can modify it under the terms of the GNU LESSER +# GENERAL PUBLIC LICENSE (LGPL v3), Version 3. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details. +# +# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE +# (LGPL v3) along with this program. +# If not, see . +# +############################################################################# + +from odoo import http +from odoo.http import request + + +class DealWeek(http.Controller): + + @http.route('/get_product', auth='public', type='json', website=True) + def get_products(self, **kwargs): + boec_configuration = request.env.ref('theme_boec.boec_config_data') + product_id = boec_configuration.deal_week_product_id + values = {'product_id': product_id} + response = http.Response(template='theme_boec.deal_week', qcontext=values) + return response.render() + + @http.route('/get_countdown', auth='public', type='json', website=True) + def get_countdown(self, **kwargs): + boec_configuration = request.env.ref('theme_boec.boec_config_data') + end_date = boec_configuration.date_end + return end_date diff --git a/theme_boec/controllers/price_filter.py b/theme_boec/controllers/price_filter.py new file mode 100644 index 000000000..f1e0442a2 --- /dev/null +++ b/theme_boec/controllers/price_filter.py @@ -0,0 +1,151 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2022-TODAY Cybrosys Technologies() +# Author: Cybrosys Techno Solutions() +# +# You can modify it under the terms of the GNU LESSER +# GENERAL PUBLIC LICENSE (LGPL v3), Version 3. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details. +# +# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE +# (LGPL v3) along with this program. +# If not, see . +# +############################################################################# + +# from werkzeug.exceptions import NotFound +# from odoo.addons.http_routing.models.ir_http import slug +# from odoo.addons.website.controllers.main import QueryURL +# from odoo.addons.website_sale.controllers.main import TableCompute, WebsiteSale +# from odoo import http +# from odoo.http import request +# +# +# class PriceFilter(WebsiteSale): +# +# @http.route() +# def shop(self, page=0, category=None, search='', ppg=False, **post): +# """Override WebsiteSale shop for Price Filter""" +# maximum = minimum = 0 +# add_qty = int(post.get('add_qty', 1)) +# Category = request.env['product.public.category'] +# if category: +# category = Category.search([('id', '=', int(category))], limit=1) +# if not category or not category.can_access_from_current_website(): +# raise NotFound() +# else: +# category = Category +# +# if ppg: +# try: +# ppg = int(ppg) +# post['ppg'] = ppg +# except ValueError: +# ppg = False +# if not ppg: +# ppg = request.env['website'].get_current_website().shop_ppg or 20 +# +# ppr = request.env['website'].get_current_website().shop_ppr or 4 +# +# product_ids = request.env['product.template'].search(['&', ('sale_ok', '=', True), ('active', '=', True)]) +# +# if product_ids and product_ids.ids: +# request.cr.execute( +# 'select min(list_price),max(list_price) from product_template where id in %s', +# (tuple(product_ids.ids),)) +# list_prices = request.cr.fetchall() +# +# minimum = list_prices[0][0] +# maximum = list_prices[0][1] +# +# attrib_list = request.httprequest.args.getlist('attrib') +# attrib_values = [[int(x) for x in v.split("-")] for v in attrib_list if v] +# attributes_ids = {v[0] for v in attrib_values} +# attrib_set = {v[1] for v in attrib_values} +# +# domain = self._get_search_domain(search, category, attrib_values) +# +# if post.get('minimum') and post.get('maximum'): +# domain = domain + [('list_price', '>=', float(post.get('minimum'))), +# ('list_price', '<=', float(post.get('maximum')))] +# +# keep = QueryURL('/shop', category=category and int(category), search=search, attrib=attrib_list, +# order=post.get('order'), minimum=post.get('minimum'), maximum=post.get('maximum')) +# +# pricelist_context, pricelist = self._get_pricelist_context() +# +# request.context = dict(request.context, pricelist=pricelist.id, partner=request.env.user.partner_id) +# +# url = "/shop" +# if search: +# post["search"] = search +# if attrib_list: +# post['attrib'] = attrib_list +# +# Product = request.env['product.template'].with_context(bin_size=True) +# +# search_product = Product.search(domain, order=self._get_search_order(post)) +# website_domain = request.website.website_domain() +# categs_domain = [('parent_id', '=', False)] + website_domain +# if search: +# search_categories = Category.search( +# [('product_tmpl_ids', 'in', search_product.ids)] + website_domain).parents_and_self +# categs_domain.append(('id', 'in', search_categories.ids)) +# else: +# search_categories = Category +# categs = Category.search(categs_domain) +# +# if category: +# url = "/shop/category/%s" % slug(category) +# +# product_count = len(search_product) +# pager = request.website.pager(url=url, total=product_count, page=page, step=ppg, scope=7, url_args=post) +# offset = pager['offset'] +# products = search_product[offset: offset + ppg] +# +# ProductAttribute = request.env['product.attribute'] +# if products: +# # get all products without limit +# attributes = ProductAttribute.search([('product_tmpl_ids', 'in', search_product.ids)]) +# else: +# attributes = ProductAttribute.browse(attributes_ids) +# +# layout_mode = request.session.get('website_sale_shop_layout_mode') +# if not layout_mode: +# if request.website.viewref('website_sale.products_list_view').active: +# layout_mode = 'list' +# else: +# layout_mode = 'grid' +# +# values = { +# 'search': search, +# 'category': category, +# 'attrib_values': attrib_values, +# 'attrib_set': attrib_set, +# 'pager': pager, +# 'pricelist': pricelist, +# 'add_qty': add_qty, +# 'products': products, +# 'search_count': product_count, # common for all searchbox +# 'bins': TableCompute().process(products, ppg, ppr), +# 'ppg': ppg, +# 'ppr': ppr, +# 'categories': categs, +# 'attributes': attributes, +# 'keep': keep, +# 'search_categories_ids': search_categories.ids, +# 'layout_mode': layout_mode, +# 'minimum': minimum, +# 'maximum': maximum, +# +# } +# if category: +# values['main_object'] = category +# return request.render("website_sale.products", values) diff --git a/theme_boec/controllers/product_tab.py b/theme_boec/controllers/product_tab.py new file mode 100644 index 000000000..950bdf5f0 --- /dev/null +++ b/theme_boec/controllers/product_tab.py @@ -0,0 +1,42 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2022-TODAY Cybrosys Technologies() +# Author: Cybrosys Techno Solutions() +# +# You can modify it under the terms of the GNU LESSER +# GENERAL PUBLIC LICENSE (LGPL v3), Version 3. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details. +# +# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE +# (LGPL v3) along with this program. +# If not, see . +# +############################################################################# + +from odoo import http +from odoo.http import request + + +class WebsiteProduct(http.Controller): + + @http.route('/get_product_tab', auth="public", type='json', website=True) + def get_product_tab(self): + + new_arrivals = request.env['product.template'].sudo().search([('website_published', '=', True)], + order='create_date desc', limit=12) + hot_deals = request.env['product.template'].sudo().search([('website_published', '=', True), + ('hot_deals', '=', True)], limit=12) + + values = { + 'new_arrivals': new_arrivals, + 'hot_deals': hot_deals + } + response = http.Response(template='theme_boec.product_tab', qcontext=values) + return response.render() diff --git a/theme_boec/data/boec_config.xml b/theme_boec/data/boec_config.xml new file mode 100644 index 000000000..947581d26 --- /dev/null +++ b/theme_boec/data/boec_config.xml @@ -0,0 +1,25 @@ + + + + + Boec Config + ir.actions.act_window + boec.config + tree,form + + + boec.config.tree + boec.config + + + + + + + + + + \ No newline at end of file diff --git a/theme_boec/data/boec_config_data.xml b/theme_boec/data/boec_config_data.xml new file mode 100644 index 000000000..138ce9ac1 --- /dev/null +++ b/theme_boec/data/boec_config_data.xml @@ -0,0 +1,9 @@ + + + + + Boec Config + + + + \ No newline at end of file diff --git a/theme_boec/data/brand_filter.xml b/theme_boec/data/brand_filter.xml new file mode 100644 index 000000000..bc2a04196 --- /dev/null +++ b/theme_boec/data/brand_filter.xml @@ -0,0 +1,48 @@ + + + + + + Product Brand + product.brand + + + + + + + + + Product Brand + product.brand + +
+ + + + + + + + + +
+
+
+ + + Product Brand + ir.actions.act_window + product.brand + tree,form + +

Create a new record!

+
+
+ + +
+
\ No newline at end of file diff --git a/theme_boec/data/brand_inherit.xml b/theme_boec/data/brand_inherit.xml new file mode 100644 index 000000000..de9b02b65 --- /dev/null +++ b/theme_boec/data/brand_inherit.xml @@ -0,0 +1,15 @@ + + + + + Brand view + product.template + + + + + + + + + \ No newline at end of file diff --git a/theme_boec/data/hot_deals_button.xml b/theme_boec/data/hot_deals_button.xml new file mode 100644 index 000000000..01ad40fd8 --- /dev/null +++ b/theme_boec/data/hot_deals_button.xml @@ -0,0 +1,15 @@ + + + + + Hot Deals + product.template + + + + + + + + + \ No newline at end of file diff --git a/theme_boec/models/__init__.py b/theme_boec/models/__init__.py new file mode 100644 index 000000000..0136de36c --- /dev/null +++ b/theme_boec/models/__init__.py @@ -0,0 +1,24 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2022-TODAY Cybrosys Technologies() +# Author: Cybrosys Techno Solutions() +# +# You can modify it under the terms of the GNU LESSER +# GENERAL PUBLIC LICENSE (LGPL v3), Version 3. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details. +# +# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE +# (LGPL v3) along with this program. +# If not, see . +# +############################################################################# + +from . import theme_boec +from . import brand_filter_model diff --git a/theme_boec/models/brand_filter_model.py b/theme_boec/models/brand_filter_model.py new file mode 100644 index 000000000..d21de6bef --- /dev/null +++ b/theme_boec/models/brand_filter_model.py @@ -0,0 +1,48 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2022-TODAY Cybrosys Technologies() +# Author: Cybrosys Techno Solutions() +# +# You can modify it under the terms of the GNU LESSER +# GENERAL PUBLIC LICENSE (LGPL v3), Version 3. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details. +# +# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE +# (LGPL v3) along with this program. +# If not, see . +# +############################################################################# + +from odoo import models, fields + + +class ProductBrand(models.Model): + _name = 'product.brand' + _description = "Product Brand" + _rec_name = 'brand_name' + brand_name = fields.Char(required=True) + sequence_no = fields.Integer(string="Sequence no") + parent_id = fields.Many2one('product.brand', string='Parent Brand', + index=True) + + +class DiscountPrizeTag(models.Model): + _inherit = 'product.template' + + brand_id = fields.Many2one('product.brand', string="Product Brand") + + +class Website(models.Model): + _inherit = "website" + + def get_brands(self): + brand = self.env['product.brand'].search([]) + print('brand', brand) + return brand diff --git a/theme_boec/models/theme_boec.py b/theme_boec/models/theme_boec.py new file mode 100644 index 000000000..e975f1b29 --- /dev/null +++ b/theme_boec/models/theme_boec.py @@ -0,0 +1,73 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2022-TODAY Cybrosys Technologies() +# Author: Cybrosys Techno Solutions() +# +# You can modify it under the terms of the GNU LESSER +# GENERAL PUBLIC LICENSE (LGPL v3), Version 3. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details. +# +# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE +# (LGPL v3) along with this program. +# If not, see . +# +############################################################################# + +from odoo import models, fields + + +class BoecConfig(models.Model): + _name = 'boec.config' + + name = fields.Char('Name') + deal_week_product_id = fields.Many2one('product.product', domain=[('is_published', '=', True)], + string='Deal of the Week Product') + date_end = fields.Datetime(string='Counter End Date') + # max_price = fields.Integer(string="Maximum Price", default=10000) + + +class ThemeBoec(models.AbstractModel): + _inherit = 'theme.utils' + + def _theme_boec_post_copy(self, mod): + + self.enable_view('theme_boec.boec_header') + # + self.disable_view('website_sale.products_add_to_cart') + self.disable_view('website_sale_comparison.add_to_compare') + self.disable_view('website_sale.product_buy_now') + self.disable_view('website_sale_wishlist.add_to_wishlist') + self.disable_view('website_sale.add_grid_or_list_option') + # self.disable_view('website_sale.products_images_full') + self.disable_view('website_sale.products_list_view') + self.disable_view('website_sale.alternative_products') + self.disable_view('website_sale.product_buy_now') + self.disable_view('website_sale.product_comment') + self.disable_view('website_sale.product_picture_magnify_both') + self.disable_view('website_sale.product_variants') + self.disable_view('website_sale_comparison.product_attributes_body') + self.disable_view('website_sale.ecom_show_extra_fields') + self.disable_view('website_sale.product_custom_text') + self.disable_view('website_sale_wishlist.product_add_to_wishlist') + self.disable_view('website_blog.opt_posts_loop_show_author') + self.disable_view('website_blog.opt_posts_loop_show_stats') + self.disable_view('website_blog.opt_posts_loop_show_stats') + self.disable_view('website_blog.opt_blog_list_view') + self.disable_view('website_blog.opt_blog_cards_design') + self.disable_view('website_blog.opt_blog_cover_post') + self.disable_view('website_blog.opt_blog_cover_post_fullwidth_design') + self.disable_view('website_blog.opt_blog_post_breadcrumb') + self.disable_view('website_blog.opt_blog_post_sidebar') + + +class ProductInherited(models.Model): + _inherit = "product.template" + + hot_deals = fields.Boolean(string="Hot Sale") diff --git a/theme_boec/security/ir.model.access.csv b/theme_boec/security/ir.model.access.csv new file mode 100644 index 000000000..4e7b62235 --- /dev/null +++ b/theme_boec/security/ir.model.access.csv @@ -0,0 +1,3 @@ +id,name,model_id/id,group_id/id,perm_read,perm_write,perm_create,perm_unlink +access_product_brand_manager,product.brand,model_product_brand,base.group_user,1,1,1,1 +access_theme_boec,boec.config,model_boec_config,base.group_user,1,1,1,1 diff --git a/theme_boec/static/description/banner.png b/theme_boec/static/description/banner.png new file mode 100644 index 000000000..15d97c9d6 Binary files /dev/null and b/theme_boec/static/description/banner.png differ diff --git a/theme_boec/static/description/icon.png b/theme_boec/static/description/icon.png new file mode 100644 index 000000000..93d66261b Binary files /dev/null and b/theme_boec/static/description/icon.png differ diff --git a/theme_boec/static/description/images/1.jpg b/theme_boec/static/description/images/1.jpg new file mode 100644 index 000000000..86337bc07 Binary files /dev/null and b/theme_boec/static/description/images/1.jpg differ diff --git a/theme_boec/static/description/images/2.jpg b/theme_boec/static/description/images/2.jpg new file mode 100644 index 000000000..075316292 Binary files /dev/null and b/theme_boec/static/description/images/2.jpg differ diff --git a/theme_boec/static/description/images/3.jpg b/theme_boec/static/description/images/3.jpg new file mode 100644 index 000000000..63200b457 Binary files /dev/null and b/theme_boec/static/description/images/3.jpg differ diff --git a/theme_boec/static/description/images/4.jpg b/theme_boec/static/description/images/4.jpg new file mode 100644 index 000000000..9637b66ea Binary files /dev/null and b/theme_boec/static/description/images/4.jpg differ diff --git a/theme_boec/static/description/images/5.jpg b/theme_boec/static/description/images/5.jpg new file mode 100644 index 000000000..68aba8e85 Binary files /dev/null and b/theme_boec/static/description/images/5.jpg differ diff --git a/theme_boec/static/description/images/6.jpg b/theme_boec/static/description/images/6.jpg new file mode 100644 index 000000000..90cb876d3 Binary files /dev/null and b/theme_boec/static/description/images/6.jpg differ diff --git a/theme_boec/static/description/images/Cybrosys.png b/theme_boec/static/description/images/Cybrosys.png new file mode 100644 index 000000000..d76b5bafb Binary files /dev/null and b/theme_boec/static/description/images/Cybrosys.png differ diff --git a/theme_boec/static/description/images/boec_deal.png b/theme_boec/static/description/images/boec_deal.png new file mode 100644 index 000000000..652dff478 Binary files /dev/null and b/theme_boec/static/description/images/boec_deal.png differ diff --git a/theme_boec/static/description/images/boec_hot_sales.png b/theme_boec/static/description/images/boec_hot_sales.png new file mode 100644 index 000000000..a0ef75180 Binary files /dev/null and b/theme_boec/static/description/images/boec_hot_sales.png differ diff --git a/theme_boec/static/description/images/cybro-logo-oca-no-text.png b/theme_boec/static/description/images/cybro-logo-oca-no-text.png new file mode 100644 index 000000000..180d15dd6 Binary files /dev/null and b/theme_boec/static/description/images/cybro-logo-oca-no-text.png differ diff --git a/theme_boec/static/description/images/cybro-logo-oca.png b/theme_boec/static/description/images/cybro-logo-oca.png new file mode 100644 index 000000000..90e4c9cb9 Binary files /dev/null and b/theme_boec/static/description/images/cybro-logo-oca.png differ diff --git a/theme_boec/static/description/images/demo-1.jpg b/theme_boec/static/description/images/demo-1.jpg new file mode 100644 index 000000000..cd37b8110 Binary files /dev/null and b/theme_boec/static/description/images/demo-1.jpg differ diff --git a/theme_boec/static/description/images/demo-2.jpg b/theme_boec/static/description/images/demo-2.jpg new file mode 100644 index 000000000..d2bcde9ec Binary files /dev/null and b/theme_boec/static/description/images/demo-2.jpg differ diff --git a/theme_boec/static/description/images/demo-3.jpg b/theme_boec/static/description/images/demo-3.jpg new file mode 100644 index 000000000..e7ceda1ad Binary files /dev/null and b/theme_boec/static/description/images/demo-3.jpg differ diff --git a/theme_boec/static/description/images/demo-4.jpg b/theme_boec/static/description/images/demo-4.jpg new file mode 100644 index 000000000..937840370 Binary files /dev/null and b/theme_boec/static/description/images/demo-4.jpg differ diff --git a/theme_boec/static/description/images/demo-5.jpg b/theme_boec/static/description/images/demo-5.jpg new file mode 100644 index 000000000..d86e0e76c Binary files /dev/null and b/theme_boec/static/description/images/demo-5.jpg differ diff --git a/theme_boec/static/description/images/hero.png b/theme_boec/static/description/images/hero.png new file mode 100644 index 000000000..e7610e6e9 Binary files /dev/null and b/theme_boec/static/description/images/hero.png differ diff --git a/theme_boec/static/description/images/laptop-screenshots.jpg b/theme_boec/static/description/images/laptop-screenshots.jpg new file mode 100644 index 000000000..15e2af19b Binary files /dev/null and b/theme_boec/static/description/images/laptop-screenshots.jpg differ diff --git a/theme_boec/static/description/images/new_arrivals.jpg b/theme_boec/static/description/images/new_arrivals.jpg new file mode 100644 index 000000000..b0ff79222 Binary files /dev/null and b/theme_boec/static/description/images/new_arrivals.jpg differ diff --git a/theme_boec/static/description/images/phone-screenshots.jpg b/theme_boec/static/description/images/phone-screenshots.jpg new file mode 100644 index 000000000..3979435d9 Binary files /dev/null and b/theme_boec/static/description/images/phone-screenshots.jpg differ diff --git a/theme_boec/static/description/index.html b/theme_boec/static/description/index.html new file mode 100644 index 000000000..4800a9ba9 --- /dev/null +++ b/theme_boec/static/description/index.html @@ -0,0 +1,360 @@ +
+ +
+
+
+ Cybrosys Logo +
+
+
+
+
+ Theme Screenshot +
+
+

Theme Boec

+

+ Theme Boec is a new kind of Theme. The theme is a very user-friendly and is suitable for your + eCommerce website with blog. + It is the most powerful, easy to use theme. Many custom designed snippets facilitates to add + better + user experience. + Contains Hot sales, New arrival and Deal of the week with Counter snippets that are configured + from + the backend. + It have instagram feed snippet and deal of the week snippet with counter. + It is a fully Responsive Theme with a premium design and attractive front-end theme. + it contains price filter and brand filter options by default and it easily configure from + backend. + This theme is a perfect choice for your online store you are looking for. This theme is fully + customized + the eCommerce website, shop view, custom categories view, product view, contact us page, cart, + blog, + blog preview...etc. +

+
+
+ + + + +
+
+

Desktop View

+

+ It is easy to customize and use. Just drag and drop the building blocks to make attractive + webpages. +

+
+
+ Theme Screenshot +
+
+
+
+ Theme Screenshot +
+
+

Mobile View

+

+ User friendly and modern looking theme makes your page more Stylish And Beautiful. +

+
+
+ + + +
+ +
+
+
+ Theme Screenshot +
+
+

Home Page

+

+ It is easy to customize and use. Just drag and drop the building blocks to make + attractive + webpages.Customizable building blocks in home page design helps you to edit them as per + needs.

+
+
+
+ + + +
+
+
+ Theme Screenshot +
+
+

Shop Page

+

+ The shop display you products in a stylish way. It displaying 3 products in a row and it + will attract your customers. + Also the Category side are customized in collapsible style. Display high quality images + for + your products +

+
+
+
+ +
+ + + + +
+
+ Theme Screenshot +
+
+

Overview

+

+ It is an attractive and modern eCommerce Website theme. It make your eCommerce website is + attractive. + Just drag & drop the building blocks you need to easily build your layout. + Theme Boec is a perfect choice for your online store you are looking for. +

+
+
+ + + + +
+
+

Hot Sales and New Arrivals

+

+ Hot sales and New arrivals are the snippets that are configured from the backend. You can easily add products + to the Hot sales. New arrivals are automatically taken the newly arrived products. +

+
+
+ Theme Screenshot +
+
+ + + + +
+
+ +
+
+

Deal of the Week

+

+ Deal of the week snippet have Counter for giving a premium look the deal of the week product and its counter + are easily configurable from the backend. +

+
+
+ + + +
+ +
+
+
+ Theme Screenshot +
+
+

Cart

+

+ The cart display your products in a stylish way. it will display the all needed details + of + the product +

+
+
+
+ + + + + +
+
+
+ Theme Screenshot +
+
+

Blog Preview

+

+ Theme Boec have a fully customized blog preview with big cover image of the blog with + share + buttons. +

+
+
+
+ + + + +
+
+
+ Theme Screenshot +
+
+

Product Preview

+

+ It have a fully customized Product preview with full details of the product with an + attractive design. +

+
+
+
+ +
+ + + + + + + + + + + + + + + + + + +
+
+
+

Demo Pages

+
+
+
+ +
+
+
+ +
Home
+
+
+
+ +
+
+ +
Blog Preview
+
+
+
+ +
+
+ +
Shop Page
+
+
+
+
+
+
+
+ +
Blog Page
+
+
+
+ +
+
+ +
About Page
+
+
+
+ +
+
+ + + +
+
+

Get Help

+
+

If you have anything to share with + us + based + on + your use of this module, please let us know. We are ready to offer our support.

+
+
+
+
+
+ +
+
+
+
+
+
+
+
+
+
+ +
+
+
+
+
+
+
+
+
+

A Quality Theme From

+
+
+ +
+
+ +
+
\ No newline at end of file diff --git a/theme_boec/static/description/theme_screenshot.png b/theme_boec/static/description/theme_screenshot.png new file mode 100644 index 000000000..8a3112bab Binary files /dev/null and b/theme_boec/static/description/theme_screenshot.png differ diff --git a/theme_boec/static/src/css/owl_carousel_min.css b/theme_boec/static/src/css/owl_carousel_min.css new file mode 100644 index 000000000..d64a001f3 --- /dev/null +++ b/theme_boec/static/src/css/owl_carousel_min.css @@ -0,0 +1,183 @@ +/** + * Owl Carousel v2.3.4 + * Copyright 2013-2018 David Deutsch + * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE + */ +.owl-carousel, +.owl-carousel .owl-item { + -webkit-tap-highlight-color: transparent; + position: relative; +} +.owl-carousel { + display: none; + width: 100%; + z-index: 1; +} +.owl-carousel .owl-stage { + position: relative; + -ms-touch-action: pan-Y; + touch-action: manipulation; + -moz-backface-visibility: hidden; +} +.owl-carousel .owl-stage:after { + content: "."; + display: block; + clear: both; + visibility: hidden; + line-height: 0; + height: 0; +} +.owl-carousel .owl-stage-outer { + position: relative; + overflow: hidden; + -webkit-transform: translate3d(0, 0, 0); +} +.owl-carousel .owl-item, +.owl-carousel .owl-wrapper { + -webkit-backface-visibility: hidden; + -moz-backface-visibility: hidden; + -ms-backface-visibility: hidden; + -webkit-transform: translate3d(0, 0, 0); + -moz-transform: translate3d(0, 0, 0); + -ms-transform: translate3d(0, 0, 0); +} +.owl-carousel .owl-item { + min-height: 1px; + float: left; + -webkit-backface-visibility: hidden; + -webkit-touch-callout: none; +} +.owl-carousel .owl-item img { + display: block; + width: 100%; +} +.owl-carousel .owl-dots.disabled, +.owl-carousel .owl-nav.disabled { + display: none; +} +.no-js .owl-carousel, +.owl-carousel.owl-loaded { + display: block; +} +.owl-carousel .owl-dot, +.owl-carousel .owl-nav .owl-next, +.owl-carousel .owl-nav .owl-prev { + cursor: pointer; + -webkit-user-select: none; + -khtml-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; +} +.owl-carousel .owl-nav button.owl-next, +.owl-carousel .owl-nav button.owl-prev, +.owl-carousel button.owl-dot { + background: 0 0; + color: inherit; + border: none; + padding: 0 !important; + font: inherit; +} +.owl-carousel.owl-loading { + opacity: 0; + display: block; +} +.owl-carousel.owl-hidden { + opacity: 0; +} +.owl-carousel.owl-refresh .owl-item { + visibility: hidden; +} +.owl-carousel.owl-drag .owl-item { + -ms-touch-action: pan-y; + touch-action: pan-y; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; +} +.owl-carousel.owl-grab { + cursor: move; + cursor: grab; +} +.owl-carousel.owl-rtl { + direction: rtl; +} +.owl-carousel.owl-rtl .owl-item { + float: right; +} +.owl-carousel .animated { + animation-duration: 1s; + animation-fill-mode: both; +} +.owl-carousel .owl-animated-in { + z-index: 0; +} +.owl-carousel .owl-animated-out { + z-index: 1; +} +.owl-carousel .fadeOut { + animation-name: fadeOut; +} +@keyframes fadeOut { + 0% { + opacity: 1; + } + 100% { + opacity: 0; + } +} +.owl-height { + transition: height 0.5s ease-in-out; +} +.owl-carousel .owl-item .owl-lazy { + opacity: 0; + transition: opacity 0.4s ease; +} +.owl-carousel .owl-item .owl-lazy:not([src]), +.owl-carousel .owl-item .owl-lazy[src^=""] { + max-height: 0; +} +.owl-carousel .owl-item img.owl-lazy { + transform-style: preserve-3d; +} +.owl-carousel .owl-video-wrapper { + position: relative; + height: 100%; + background: #000; +} +.owl-carousel .owl-video-play-icon { + position: absolute; + height: 80px; + width: 80px; + left: 50%; + margin-left: -40px; + margin-top: -40px; + background: url(owl.video.play.png) no-repeat; + cursor: pointer; + z-index: 1; + -webkit-backface-visibility: hidden; + transition: transform 0.1s ease; +} +.owl-carousel .owl-video-play-icon:hover { + -ms-transform: scale(1.3, 1.3); + transform: scale(1.3, 1.3); +} +.owl-carousel .owl-video-playing .owl-video-play-icon, +.owl-carousel .owl-video-playing .owl-video-tn { + display: none; +} +.owl-carousel .owl-video-tn { + opacity: 0; + height: 100%; + background-position: center center; + background-repeat: no-repeat; + background-size: contain; + transition: opacity 0.4s ease; +} +.owl-carousel .owl-video-frame { + position: relative; + z-index: 1; + height: 100%; + width: 100%; +} diff --git a/theme_boec/static/src/css/owl_theme_default_min.css b/theme_boec/static/src/css/owl_theme_default_min.css new file mode 100644 index 000000000..487088d2e --- /dev/null +++ b/theme_boec/static/src/css/owl_theme_default_min.css @@ -0,0 +1,6 @@ +/** + * Owl Carousel v2.3.4 + * Copyright 2013-2018 David Deutsch + * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE + */ +.owl-theme .owl-dots,.owl-theme .owl-nav{text-align:center;-webkit-tap-highlight-color:transparent}.owl-theme .owl-nav{margin-top:10px}.owl-theme .owl-nav [class*=owl-]{color:#FFF;font-size:14px;margin:5px;padding:4px 7px;background:#D6D6D6;display:inline-block;cursor:pointer;border-radius:3px}.owl-theme .owl-nav [class*=owl-]:hover{background:#869791;color:#FFF;text-decoration:none}.owl-theme .owl-nav .disabled{opacity:.5;cursor:default}.owl-theme .owl-nav.disabled+.owl-dots{margin-top:10px}.owl-theme .owl-dots .owl-dot{display:inline-block;zoom:1}.owl-theme .owl-dots .owl-dot span{width:10px;height:10px;margin:5px 7px;background:#D6D6D6;display:block;-webkit-backface-visibility:visible;transition:opacity .2s ease;border-radius:30px}.owl-theme .owl-dots .owl-dot.active span,.owl-theme .owl-dots .owl-dot:hover span{background:#869791} \ No newline at end of file diff --git a/theme_boec/static/src/css/style.css b/theme_boec/static/src/css/style.css new file mode 100644 index 000000000..65e3c2618 --- /dev/null +++ b/theme_boec/static/src/css/style.css @@ -0,0 +1,6054 @@ +/* +@import url("https://fonts.googleapis.com/css2?family=Karla:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,500&family=Montserrat&display=swap"); +*/ +/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */ +/* Document + ========================================================================== */ +/** + * 1. Correct the line height in all browsers. + * 2. Prevent adjustments of font size after orientation changes in iOS. + */ +html { + line-height: 1.15; + /* 1 */ + -webkit-text-size-adjust: 100%; + /* 2 */ +} + +/* Sections + ========================================================================== */ +/** + * Remove the margin in all browsers. + */ +body { + margin: 0; +} + +/** + * Render the `main` element consistently in IE. + */ +main { + display: block; +} + +/** + * Correct the font size and margin on `h1` elements within `section` and + * `article` contexts in Chrome, Firefox, and Safari. + */ +h1 { + font-size: 2em; + margin: 0.67em 0; +} + +/* Grouping content + ========================================================================== */ +/** + * 1. Add the correct box sizing in Firefox. + * 2. Show the overflow in Edge and IE. + */ +hr { + box-sizing: content-box; + /* 1 */ + height: 0; + /* 1 */ + overflow: visible; + /* 2 */ +} + +/** + * 1. Correct the inheritance and scaling of font size in all browsers. + * 2. Correct the odd `em` font sizing in all browsers. + */ +pre { + font-family: monospace, monospace; + /* 1 */ + font-size: 1em; + /* 2 */ +} + +/* Text-level semantics + ========================================================================== */ +/** + * Remove the gray background on active links in IE 10. + */ +a { + background-color: transparent; +} + +/** + * 1. Remove the bottom border in Chrome 57- + * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari. + */ +abbr[title] { + border-bottom: none; + /* 1 */ + text-decoration: underline; + /* 2 */ + text-decoration: underline dotted; + /* 2 */ +} + +/** + * Add the correct font weight in Chrome, Edge, and Safari. + */ +b, +strong { + font-weight: bolder; +} + +/** + * 1. Correct the inheritance and scaling of font size in all browsers. + * 2. Correct the odd `em` font sizing in all browsers. + */ +code, +kbd, +samp { + font-family: monospace, monospace; + /* 1 */ + font-size: 1em; + /* 2 */ +} + +/** + * Add the correct font size in all browsers. + */ +small { + font-size: 80%; +} + +/** + * Prevent `sub` and `sup` elements from affecting the line height in + * all browsers. + */ +sub, +sup { + font-size: 75%; + line-height: 0; + position: relative; + vertical-align: baseline; +} + +sub { + bottom: -0.25em; +} + +sup { + top: -0.5em; +} + +/* Embedded content + ========================================================================== */ +/** + * Remove the border on images inside links in IE 10. + */ +img { + border-style: none; +} + +/* Forms + ========================================================================== */ +/** + * 1. Change the font styles in all browsers. + * 2. Remove the margin in Firefox and Safari. + */ +button, +input, +optgroup, +select, +textarea { + font-family: inherit; + /* 1 */ + font-size: 100%; + /* 1 */ + line-height: 1.15; + /* 1 */ + margin: 0; + /* 2 */ +} + +/** + * Show the overflow in IE. + * 1. Show the overflow in Edge. + */ +button, +input { + /* 1 */ + overflow: visible; +} + +/** + * Remove the inheritance of text transform in Edge, Firefox, and IE. + * 1. Remove the inheritance of text transform in Firefox. + */ +button, +select { + /* 1 */ + text-transform: none; +} + +/** + * Correct the inability to style clickable types in iOS and Safari. + */ +button, +[type="button"], +[type="reset"], +[type="submit"] { + -webkit-appearance: button; +} + +/** + * Remove the inner border and padding in Firefox. + */ +button::-moz-focus-inner, +[type="button"]::-moz-focus-inner, +[type="reset"]::-moz-focus-inner, +[type="submit"]::-moz-focus-inner { + border-style: none; + padding: 0; +} + +/** + * Restore the focus styles unset by the previous rule. + */ +button:-moz-focusring, +[type="button"]:-moz-focusring, +[type="reset"]:-moz-focusring, +[type="submit"]:-moz-focusring { + outline: 1px dotted ButtonText; +} + +/** + * Correct the padding in Firefox. + */ +fieldset { + padding: 0.35em 0.75em 0.625em; +} + +/** + * 1. Correct the text wrapping in Edge and IE. + * 2. Correct the color inheritance from `fieldset` elements in IE. + * 3. Remove the padding so developers are not caught out when they zero out + * `fieldset` elements in all browsers. + */ +legend { + box-sizing: border-box; + /* 1 */ + color: inherit; + /* 2 */ + display: table; + /* 1 */ + max-width: 100%; + /* 1 */ + padding: 0; + /* 3 */ + white-space: normal; + /* 1 */ +} + +/** + * Add the correct vertical alignment in Chrome, Firefox, and Opera. + */ +progress { + vertical-align: baseline; +} + +/** + * Remove the default vertical scrollbar in IE 10+. + */ +textarea { + overflow: auto; +} + +/** + * 1. Add the correct box sizing in IE 10. + * 2. Remove the padding in IE 10. + */ +[type="checkbox"], +[type="radio"] { + box-sizing: border-box; + /* 1 */ + padding: 0; + /* 2 */ +} + +/** + * Correct the cursor style of increment and decrement buttons in Chrome. + */ +[type="number"]::-webkit-inner-spin-button, +[type="number"]::-webkit-outer-spin-button { + height: auto; +} + +/** + * 1. Correct the odd appearance in Chrome and Safari. + * 2. Correct the outline style in Safari. + */ +[type="search"] { + -webkit-appearance: textfield; + /* 1 */ + outline-offset: -2px; + /* 2 */ +} + +/** + * Remove the inner padding in Chrome and Safari on macOS. + */ +[type="search"]::-webkit-search-decoration { + -webkit-appearance: none; +} + +/** + * 1. Correct the inability to style clickable types in iOS and Safari. + * 2. Change font properties to `inherit` in Safari. + */ +::-webkit-file-upload-button { + -webkit-appearance: button; + /* 1 */ + font: inherit; + /* 2 */ +} + +/* Interactive + =========================================== +=============================== */ +/* + * Add the correct display in Edge, IE 10+, and Firefox. + */ +details { + display: block; +} + +/* + * Add the correct display in all browsers. + */ +summary { + display: list-item; +} + +/* Misc + ========================================================================== */ +/** + * Add the correct display in IE 10+. + */ +template { + display: none; +} + +/** + * Add the correct display in IE 10. + */ +[hidden] { + display: none; +} + +*:focus { + outline: 0 !important; +} + +*button:focus { + border: none; + outline: none; + box-shadow: none; +} + +* { + list-style-type: none; + font-family: "Karla", sans-serif; + font-size: 14px; +} + +*:focus, *:active { + outline: none !important; +} + +.text { + font-size: 14px; + line-height: 29px; + letter-spacing: 2px; +} + +*:hover { + transition: 0.5s; +} + +*::selection { + color: #5ad2e7; +} + +*a, +a:visited { + color: #990000; + text-decoration: none; +} + +body { + color: #3d3d3d !important; + /* dark gray */ +} + +.affix { + top: 0; + width: 100%; + z-index: 9999 !important; +} + +html { + scroll-behavior: smooth; +} + +.heading { + text-align: center; + margin-bottom: 60px; +} + +.heading .sub { + color: #467dbd; + text-transform: uppercase; + letter-spacing: 1px; + font-size: 22px; +} + +.heading .main { + color: #222831; + text-transform: capitalize; + letter-spacing: 1px; + font-size: 40px; + font-weight: 900; +} + +.btn { + outline: none !important; + box-shadow: none !important; + font-family: "Karla", sans-serif; +} + +.btn-primary { + background-color: #222831 !important; + border-color: #222831 !important; + letter-spacing: 2px; +} + +.btn-primary span { + padding-left: 10px; +} + +.btn-primary:hover { + background-color: #2c3440 !important; + border: none; +} + +.btn-dp { + background-color: transparent !important; + padding: 14px 5px; + letter-spacing: 2px; + font-size: 18px; + border-radius: 0; + position: relative; + color: #000000; + text-transform: uppercase; +} + +.btn-dp::after { + position: absolute; + left: 0; + bottom: 0; + width: 100%; + height: 2px; + background: #111; + content: ""; + transition: all, 0.3s; +} + +.btn-shop { + background-color: #222831 !important; + border-color: #222831 !important; + padding: 14px 25px !important; + letter-spacing: 2px; + font-size: 18px !important; + color: #fff !important; +} + +.btn-shop span { + padding-left: 10px; +} + +.btn-shop:hover { + background-color: #2c3440 !important; + color: #fff !important; +} + +.btn-add { + background-color: #222831 !important; + border-color: #222831 !important; + padding: 14px 35px !important; + letter-spacing: 2px; + font-size: 16px !important; + color: #fff !important; + border-radius: 0 !important; +} + +.btn-add span { + padding-left: 10px; +} + +.btn-add:hover { + background-color: #2c3440 !important; + color: #fff !important; +} + +.btn-update { + background-color: #fcfcfc !important; + border-color: #222831 !important; + padding: 12px 25px !important; + letter-spacing: 2px; + font-size: 16px !important; + color: #222831 !important; + border-radius: 0 !important; +} + +.btn-update span { + padding-left: 10px; +} + +.btn-update:hover { + background-color: #2c3440 !important; + color: #fff !important; +} + +.btn-cartc { + background-color: #222831 !important; + border-color: #222831 !important; + padding: 13px 24px !important; + letter-spacing: 1px; + font-size: 14px !important; + color: #fff !important; + border-radius: 0 !important; +} + +.btn-cartc span { + padding-left: 10px; +} + +.btn-cartc:hover { + background-color: #2c3440 !important; + color: #fff !important; +} + +.btn-cartd { + background-color: #222831 !important; + border-color: #222831 !important; + padding: 13px 24px !important; + letter-spacing: 1px; + font-size: 14px !important; + color: #fff !important; + border-radius: 0 !important; +} + +.btn-cartd span { + padding-left: 10px; +} + +.btn-cartd:hover { + background-color: #2c3440 !important; + color: #fff !important; +} + +*, +*::before, +*::after { + box-sizing: border-box; +} + +body { + position: relative; + height: 100%; + width: 100%; +} + +.hh2 { + color: #f0b015; + opacity: 0; + transform: translateY(50px); + transition: all 1.5s 2.5s cubic-bezier(0.645, 0.045, 0.355, 1); +} + +body.loaded .hh2 { + opacity: 1; + transform: translate(0); +} + +.afload { + line-height: 1.33em; + color: #ddd; + opacity: 0; + transform: translate(-50px); + transition: all 1.5s 2s cubic-bezier(0.645, 0.045, 0.355, 1); +} + +body.loaded .afload { + opacity: 1; + transform: translate(0); +} + +#loader-wrapper { + position: fixed; + top: 0; + left: 0; + width: 100%; + height: 100%; + z-index: 1000; + transform: rotate(15deg); +} + +#loader-wrapper .loader-section { + position: fixed; + top: -500%; + width: 101%; + height: 1000%; + background: #111; + z-index: 1000; + transform: translateX(0); +} + +#loader-wrapper .loader-section.section-left { + left: -50%; +} + +#loader-wrapper .loader-section.section-right { + right: -50%; +} + +@keyframes spin { + 0% { + transform: rotate(0deg); + } + 100% { + transform: rotate(360deg); + } +} + +.loaded #loader-wrapper .loader-section.section-left { + transform: translateX(-100%); + transition: all 1.5s 1s cubic-bezier(0.645, 0.045, 0.355, 1); +} + +.loaded #loader-wrapper .loader-section.section-right { + transform: translateX(100%); + transition: all 1.5s 1s cubic-bezier(0.645, 0.045, 0.355, 1); +} + +.loaded .loading { + opacity: 0; + transition: all 0.3s ease-out; +} + +.loaded #loader-wrapper { + visibility: hidden; +} + +.loading { + z-index: 1001; + display: inline-block; + position: fixed; + left: 50%; + top: 50%; + width: 70px; + height: 70px; + margin-top: -35px; + margin-left: -35px; + border-radius: 50%; + border: 10px solid transparent; + border-left: 10px solid #3c3c3c; + border-bottom: 10px solid #3c3c3c; + animation: spin-one 2s linear infinite; +} + +.loading:before, .loading:after { + content: ""; + position: absolute; + top: 0; + left: 0; + display: block; + width: 100%; + height: 100%; + border-radius: 50%; + border: 10px solid transparent; + border-left: 10px solid #3c3c3c; + border-bottom: 10px solid #3c3c3c; +} + +.loading:before { + animation: spin-two 1s linear infinite; +} + +.loading:after { + transform: scale(0.6); +} + +@keyframes spin-one { + 0% { + transform: rotateX(0) rotateY(0) rotateZ(0); + } + 100% { + transform: rotateX(0) rotateY(0) rotateZ(360deg); + } +} + +@keyframes spin-two { + 0% { + transform: rotateZ(0); + } + 100% { + transform: rotateZ(-360deg); + } +} + +.navigation { + position: inherit; + width: 100%; + top: 50; + /*margin-top:3%;*/ + left: 0; + z-index: 999; + background: transparent; + box-shadow: 0px 9px 4px -1px rgba(213, 213, 213, 0.7); + -webkit-box-shadow: 0px 9px 4px -1px rgba(213, 213, 213, 0.7); + -moz-box-shadow: 0px 9px 4px -1px rgba(213, 213, 213, 0.7); + /* Underline Reveal */ +} + +@media screen and (max-width: 996px) { + .navigation { + background-color: white; + } +} + +.navigation .hvr-underline-reveal { + display: inline-block; + vertical-align: middle; + transform: translateZ(0); + box-shadow: 0 0 1px rgba(0, 0, 0, 0); + backface-visibility: hidden; + -moz-osx-font-smoothing: grayscale; + position: relative; + overflow: hidden; +} + +.navigation .hvr-underline-reveal:before { + content: ""; + position: absolute; + z-index: -1; + left: 0; + right: 0; + bottom: 0; + background: #2098d1; + height: 4px; + transform: translateY(4px); + transition-property: transform; + transition-duration: 0.3s; + transition-timing-function: ease-out; +} + +.navigation .hvr-underline-reveal:hover:before, +.navigation .hvr-underline-reveal:focus:before, +.navigation .hvr-underline-reveal:active:before { + transform: translateY(0); +} + +.navigation .bg-light { + background: transparent !important; +} + +.navigation .navbar { + padding: 12px 0; +} + +.navigation .navbar .navbar-brand { + max-width: 120px; +} + +.navigation .navbar .navbar-brand img { + width: 100%; +} + +.navigation .navbar .navbar-collapse { + transition: all 0.35s ease-out; + transform-origin: center left; + text-align: center; +} + +.navigation .navbar .navbar-toggler { + color: black !important; + border-color: black !important; + border-radius: 0; + border-width: 2px; + max-width: 41px; + padding: 3px 6px; +} + +.navigation .navbar .navbar-toggler img { + width: 100%; +} + +.navigation .navbar .navbar-collapse .navbar-nav .nav-item { + margin: 0 15px; +} + +.navigation .navbar .navbar-collapse .navbar-nav .nav-item .nav-link { + font-size: 16px; + font-weight: 600; +} + +.navigation .navbar .navbar-collapse .dropdown .dropdown-menu { + background-color: #222831; + border-radius: 0; + border: 0; + top: 160%; +} + +@media screen and (max-width: 992px) { + .navigation .navbar .navbar-collapse .dropdown .dropdown-menu { + text-align: center; + } +} + +.navigation .navbar .navbar-collapse .dropdown .dropdown-item { + display: block; + width: 100%; + padding: 0.4rem 2.5rem; + clear: both; + font-weight: 400; + color: #fff; + text-align: inherit; + white-space: nowrap; + border: 0; + font-size: 15px; +} + +.navigation .navbar .navbar-collapse .dropdown .dropdown-item:hover { + color: #000000; +} + +.navigation .navbar .navbar-text { + display: flex; + justify-content: space-around; + width: 16%; + align-items: unset; +} + +@media screen and (max-width: 996px) { + .navigation .navbar .navbar-text { + justify-content: center; + width: 100%; + margin-top: 10px; + } +} + +.navigation .navbar .navbar-text a { + margin-right: 10px; +} + +.navigation .navbar .navbar-text a i { + font-size: 21px; +} + +.navigation .navbar .navbar-text a:hover i { + color: #242452; +} + +.slide-top { + animation: slide-top 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both; +} + +@keyframes slide-top { + 0% { + transform: translateY(0); + } + 100% { + transform: translateY(-30px); + } +} + +.navbar-light .navbar-nav .active > .nav-link, +.navbar-light .navbar-nav .nav-link.active, +.navbar-light .navbar-nav .nav-link.show, +.navbar-light .navbar-nav .show > .nav-link { + color: #000000 !important; + position: relative; +} + +.navbar-light .navbar-nav .active > .nav-link::after, +.navbar-light .navbar-nav .nav-link.active::after, +.navbar-light .navbar-nav .nav-link.show::after, +.navbar-light .navbar-nav .show > .nav-link::after { + content: ""; + position: absolute; + z-index: -1; + left: 0; + right: 0; + bottom: 0; + background: #2098d1; + height: 5px; + transform: translateY(4px); + transition-property: transform; + transition-duration: 0.3s; + transition-timing-function: ease-out; +} + +header .top_nav { + padding: 12px 0px; + background: #000000; +} + +header .top_nav .wrapper .free { + margin-bottom: 0; + font-size: 15px; + color: #fff; +} + +@media screen and (max-width: 575px) { + header .top_nav .wrapper .free { + text-align: center; + padding-bottom: 10px; + } +} + +header .top_nav .wrapper .left { + display: flex; + justify-content: space-evenly; +} + +header .top_nav .wrapper .left .sign_in a { + font-size: 15px; + color: #fff; + text-decoration: none; + letter-spacing: 1px; + padding-top: 0px; +} + +header .top_nav .wrapper .left .currency { + /* Dropdown Button */ + /* The container
- needed to position the dropdown content */ + /* Dropdown Content (Hidden by Default) */ + /* Links inside the dropdown */ + /* Change color of dropdown links on hover */ + /* Show the dropdown menu on hover */ + /* Change the background color of the dropdown button when the dropdown content is shown */ +} + +header .top_nav .wrapper .left .currency .dropbtn { + background-color: transparent; + color: white; + padding-top: 3px; + padding-left: 0px; + font-size: 15px; + border: none; +} + +header .top_nav .wrapper .left .currency .dropdown { + position: relative; + display: inline-block; +} + +header .top_nav .wrapper .left .currency .dropdown-content { + display: none; + position: absolute; + background-color: #f1f1f1; + min-width: 160px; + box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2); + z-index: 1; +} + +header .top_nav .wrapper .left .currency .dropdown-content a { + color: black; + padding: 12px 16px; + text-decoration: none; + display: block; +} + +header .top_nav .wrapper .left .currency .dropdown-content a:hover { + background-color: #ddd; +} + +header .top_nav .wrapper .left .currency .dropdown:hover .dropdown-content { + display: block; +} + +header .top_nav .wrapper .left .currency .dropdown:hover .dropbtn { + background-color: transparent; +} + +.banner .banner_bg1 { + background-image: linear-gradient(#11111100, #11111100), url(/theme_boec/static/src/images/banner/banner1.jpg); + justify-content: center; + background-size: cover; + width: 100%; + background-repeat: no-repeat; + background-position: center; + position: relative; +} + +@media screen and (max-width: 768px) { + .banner .banner_bg1 { + padding-bottom: 80px; + } +} + +.banner .banner_bg2 { + background-image: linear-gradient(#11111100, #11111100), url(/theme_boec/static/src/images/banner/banner2.jpg); + justify-content: center; + background-size: cover; + width: 100%; + background-repeat: no-repeat; + background-position: center; + position: relative; +} + +@media screen and (max-width: 768px) { + .banner .banner_bg2 { + padding-bottom: 80px; + } +} + +.banner .banner_bg3 { + background-image: linear-gradient(#11111100, #11111100), url(/theme_boec/static/src/images/banner/banner3.jpg); + justify-content: center; + background-size: cover; + width: 100%; + background-repeat: no-repeat; + background-position: center; + position: relative; +} + +@media screen and (max-width: 768px) { + .banner .banner_bg3 { + padding-bottom: 80px; + } +} + +.banner .wrapper { + height: 100%; + width: 100%; + padding-top: 220px; + padding-bottom: 60px; +} + +@media screen and (max-width: 996px) { + .banner .wrapper { + padding-top: 150px; + } +} + +@media screen and (max-width: 500px) { + .banner .wrapper { + padding-top: 110px; + } +} + +.banner .wrapper .card { + margin-top: 50px; + border: none; + background-color: transparent; + width: 50%; +} + +@media screen and (max-width: 996px) { + .banner .wrapper .card { + width: 75%; + } +} + +@media screen and (max-width: 375px) { + .banner .wrapper .card { + width: 90%; + } +} + +.banner .wrapper .card .card-header { + background: transparent; + border-bottom-color: transparent; + color: #467dbd; + font-size: 20px; + letter-spacing: 1px; + text-transform: uppercase; + padding-bottom: 0; +} + +@media screen and (max-width: 768px) { + .banner .wrapper .card .card-header { + padding-bottom: 20px; + } +} + +.banner .wrapper .card .card-body .card-title { + font-size: 50px; + font-weight: 700; + color: #222831; + letter-spacing: 1px; +} + +@media screen and (max-width: 576px) { + .banner .wrapper .card .card-body .card-title { + font-size: 35px; + } +} + +.banner .wrapper .card .card-body .card-text { + font-size: 16px; + margin: 26px 0; + letter-spacing: 0.5px; + color: #222831; +} + +@media screen and (max-width: 768px) { + .banner .wrapper .card .card-body .card-text { + padding-bottom: 20px; + } +} + +.banner .wrapper .card .footer_icon { + margin-left: 26px; + margin-top: 55px; +} + +@media screen and (max-width: 992px) { + .banner .wrapper .card .footer_icon { + text-align: start; + margin-top: 30px; + margin-left: 20px; + } +} + +.banner .wrapper .card .footer_icon a { + color: #8cbbdf; + margin-right: 15px; +} + +.banner .wrapper .card .footer_icon a:hover { + color: #467dbd; +} + +.banner .owl-carousel { + position: relative; +} + +.banner .owl-carousel .owl-nav { + position: absolute; + width: 100%; + bottom: 14%; +} + +@media screen and (max-width: 996px) { + .banner .owl-carousel .owl-nav { + width: auto; + left: 4%; + bottom: 0; + } +} + +@media screen and (max-width: 768px) { + .banner .owl-carousel .owl-nav { + width: auto; + left: 15%; + bottom: 4%; + } +} + +@media screen and (max-width: 576px) { + .banner .owl-carousel .owl-nav { + left: 2%; + bottom: 7%; + } +} + +.banner .owl-carousel .owl-prev { + height: 60px; + width: 60px; + border-radius: 50%; + float: left; + color: #000000; + margin-left: 15px; +} + +.banner .owl-carousel .owl-prev:hover { + color: #000000; +} + +.banner .owl-carousel .owl-prev .pre { + font-size: 15px; + text-transform: uppercase; + font-weight: 700; + letter-spacing: 1px; +} + +.banner .owl-carousel .owl-next { + color: #000000; + height: 60px; + width: 60px; + border-radius: 50%; + float: right; + margin-right: 15px; +} + +.banner .owl-carousel .owl-next:hover { + color: #000000; +} + +.banner .owl-carousel .owl-next .nxt { + font-size: 15px; + text-transform: uppercase; + font-weight: 700; + letter-spacing: 1px; +} + +.banner .owl-carousel .owl-dots { + position: absolute; + position: absolute; + bottom: 8em; + right: 24em; + z-index: 999; +} + +@media screen and (max-width: 996px) { + .banner .owl-carousel .owl-dots { + bottom: 9.5em; + right: 30em; + } +} + +@media screen and (max-width: 768px) { + .banner .owl-carousel .owl-dots { + bottom: 4em; + right: 20em; + } +} + +@media screen and (max-width: 576px) { + .banner .owl-carousel .owl-dots { + bottom: 10%; + } +} + +@media screen and (max-width: 500px) { + .banner .owl-carousel .owl-dots { + bottom: 10%; + right: 12em; + } +} + +@media screen and (max-width: 375px) { + .banner .owl-carousel .owl-dots { + bottom: 3%; + right: 18em; + } +} + +.banner .owl-carousel .owl-dot { + background-color: deepskyblue; +} + +.banner .owl-carousel .owl-dot.active { + background: #7cd279 !important; +} + +.banner .owl-carousel .owl-dot span { + border: 1px solid; + color: white; + font-size: 1em; + padding: 0.1em 0.6em; + outline: none; +} + +/*.banner_sub { + margin-top: 80px; +}*/ + +.banner_sub .wrapper { + background-color: #b0dbf081; + padding: 50px 0; +} + +.banner_sub .wrapper .sub_page .name { + color: #222831; + font-size: 28px; + font-weight: 700; + padding-left: 12px; +} + +.banner_sub .wrapper .sub_page .breadcrumb { + background-color: transparent; +} + +.banner_sub .wrapper .sub_page .breadcrumb .material-icons { + font-size: 18px; + padding-top: 3px; +} + +.banner_sub .wrapper .sub_page .breadcrumb .breadcrumb-item { + font-size: 16px; +} + +.banner_sub .wrapper .sub_page .breadcrumb .breadcrumb-item::before { + display: none; +} + +.banner_sub .wrapper .sub_page .breadcrumb .breadcrumb-item a { + color: #000000; + text-decoration: none; + font-size: 16px; +} + +.banner_sub2 { + background-image: linear-gradient(#00000065, #00000065), url(/theme_boec/static/src/images/banner/blog-bg.jpg); + justify-content: center; + height: 50vh; + background-size: cover; + width: 100%; + background-repeat: no-repeat; + background-position: center; + position: relative; + /*margin-top: 80px;*/ +} + +.banner_sub2 .wrapper { + width: 100%; + height: 100%; + display: flex; + justify-content: center; + align-items: center; +} + +.banner_sub2 .wrapper .b_heading { + font-size: 40px; + font-weight: 900; + color: #fff; +} + +.footer { + background-color: #222831; + padding: 80px 0; +} + +@media screen and (max-width: 992px) { + .footer { + padding-bottom: 40px; + padding-top: 60px; + } +} + +.footer .wrapper .name .navbar-brand { + max-width: 120px; + margin-bottom: 20px; + padding-top: 0; +} + +.footer .wrapper .name .navbar-brand img { + width: 100%; +} + +.footer .wrapper .name p { + line-height: 2rem; + font-size: 16px; + color: #fff; + padding-bottom: 10px; +} + +.footer .wrapper .footer_heading { + color: #fff; + letter-spacing: 1px; + font-size: 22px; + font-weight: 700; +} + +.footer .wrapper .footer_icons { + padding-top: 10px; + text-align: center; + display: flex; + justify-content: start; +} + +.footer .wrapper .footer_icons a { + display: block; + color: #000000; + margin-right: 8px; +} + +.footer .wrapper .footer_icons a span { + height: 31px; + width: 43px; + font-size: 28px; + padding-top: 1px; + border-radius: 2px !important; + color: #fff; +} + +.footer .wrapper .footer_icons a:nth-child(1) span { + color: white !important; + background: #055597 !important; +} + +.footer .wrapper .footer_icons a:nth-child(1) span:hover { + color: white !important; + background: #000000 !important; +} + +.footer .wrapper .footer_icons a:nth-child(2) span { + background: #296ff0 !important; + color: white !important; +} + +.footer .wrapper .footer_icons a:nth-child(2) span:hover { + color: white !important; + background: #000000 !important; +} + +.footer .wrapper .footer_icons a:nth-child(3) span { + background: #f88233 !important; + color: white !important; +} + +.footer .wrapper .footer_icons a:nth-child(3) span:hover { + color: white !important; + background: #000000 !important; +} + +.footer .wrapper .footer_icons a:nth-child(4) span { + background: rgba(178, 202, 40, 0.801) !important; + color: white !important; +} + +.footer .wrapper .footer_icons a:nth-child(4) span:hover { + color: white !important; + background: #000000 !important; +} + +.footer .wrapper .footer_icons a:nth-child(5) span { + background: rgba(40, 178, 202, 0.801) !important; + color: white !important; +} + +.footer .wrapper .footer_icons a:nth-child(5) span:hover { + color: white !important; + background: #000000 !important; +} + +.footer .wrapper .footer_items { + margin-top: 30px; + text-align: left; + padding-left: 0px; +} + +.footer .wrapper .footer_items a { + color: #e2e2e2; + text-decoration: none; +} + +.footer .wrapper .footer_items a:hover { + color: #8cbbdf; +} + +.footer .wrapper .footer_items li { + margin-bottom: 8px; +} + +@media screen and (max-width: 576px) { + .footer .wrapper .i_wrapper { + margin-top: 50px; + } +} + +@media screen and (max-width: 992px) { + .footer .wrapper .s_wrapper { + margin-top: 50px; + } +} + +.footer .wrapper .send { + padding-top: 20px; +} + +.footer .wrapper .send p { + line-height: 2rem; + font-size: 16px; + color: #fff; + padding-bottom: 10px; +} + +.footer .wrapper .send .search_box { + padding: 20px 0; +} + +.footer .wrapper .send .search_box .has-search .form-control { + padding-left: 3.375rem; + background-color: transparent; + color: #467dbd; +} + +.footer .wrapper .send .search_box .form-control { + padding: 20px 0; + display: block; + width: 100%; + height: calc(2.5em + 0.75rem + 2px); + padding: 0.375rem 0.75rem; + padding-left: 0.75rem; + font-size: 1rem; + font-weight: 400; + line-height: 1.5; + background-clip: padding-box; + border: 1px solid; + border-radius: 0; + border-color: transparent; + border-bottom-color: #fff !important; + transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; + box-shadow: none !important; +} + +.footer .wrapper .send .search_box .form-control:focus { + border-color: #fff !important; +} + +.footer .wrapper .send .search_box .has-search .form-control-feedback { + z-index: 2; + display: block; + width: 3.375rem; + height: 2.375rem; + line-height: 3.375rem; + text-align: center; + pointer-events: none; + color: #ffffff; + position: absolute; + right: 20px; +} + +.footer .wrapper .send .search_box .form-group { + position: relative; +} + +.footer .wrapper .copyright { + width: 100%; + text-align: center; + margin-top: 40px; +} + +.footer .wrapper .copyright hr { + border: 0; + border-top: 1px solid rgba(86, 86, 86, 0.53) !important; +} + +.footer .wrapper .copyright .copy { + padding-top: 20px; + color: #F5FCF0; +} + +.footer .wrapper .copyright .copy a { + color: #467dbd; +} + +.footer .wrapper .copyright .copy span { + color: #467dbd; +} + +.sidebar { + margin-right: auto; +} + +.sidebar .wrapper { + padding: 0px 0px; +} + +.sidebar .wrapper .box { + margin-bottom: 0px; +} + +.sidebar .wrapper .box .example { + position: relative; +} + +.sidebar .wrapper .box form.example input[type="text"] { + padding: 10px; + font-size: 17px; + border: 1px solid #ccc; + float: left; + width: 100%; + background: #ffffff; +} + +.sidebar .wrapper .box form.example button { + padding: 10px; + background: transparent; + color: #e2e2e2; + font-size: 17px; + border: 1px solid #ccc; + border-left: none; + cursor: pointer; + position: absolute; + right: 0; + z-index: 999; +} + +.sidebar .wrapper .box form.example button:hover { + background: #242452; +} + +.sidebar .wrapper .box form.example::after { + content: ""; + clear: both; + display: table; +} + +.sidebar .wrapper .box .accordion .card { + border-radius: 0; + border: transparent; +} + +.sidebar .wrapper .box .accordion .card .card-header { + border-radius: 0; + background-color: transparent; + padding: 20px 0; + border: none; +} + +.sidebar .wrapper .box .accordion .card .card-header .btn-link { + color: #222831; + font-size: 18px; + font-weight: 700; + text-decoration: none; + text-transform: uppercase; + padding-left: 0; +} + +.sidebar .wrapper .box .accordion .card .card-body { + padding-left: 0; +} + +.sidebar .wrapper .box .accordion .card .card-body .wrapp1 .list-group { + height: 200px; + overflow-x: hidden; + overflow-y: auto; +} + +.sidebar .wrapper .box .accordion .card .card-body .wrapp1 .list-group .list-group-item { + border: none; +} + +.sidebar .wrapper .box .accordion .card .card-body .wrapp1 .list-group .list-group-item:hover { + background-color: aliceblue; +} + +.sidebar .wrapper .box .accordion .card .card-body .wrapp1 .list-group .list-group-item a { + color: #3d3d3d; + text-decoration: none; + font-size: 16px; +} + +.sidebar .wrapper .box .accordion .card .card-body .wrapp1 .list-group .list-group-item a:hover { + color: #242452; +} + +.sidebar .wrapper .box .accordion .card .card-body .wrapp2 .list-group .list-group-item { + border: none; + color: #3d3d3d; + text-decoration: none; + font-size: 16px; +} + +.sidebar .wrapper .box .accordion .card .card-body .wrapp2 .size { + display: flex; + flex-wrap: wrap; +} + +.sidebar .wrapper .box .accordion .card .card-body .wrapp2 .size a { + color: #3d3d3d; + font-size: 16px; + border: 1px solid; + border-color: #222831; + padding: 5px 14px; + margin: 10px; + text-decoration: none; +} + +.sidebar .wrapper .box .accordion .card .card-body .wrapp2 .size a:focus { + background-color: #8cbbdf !important; + color: #fff; + border-color: #8cbbdf; +} + +.sidebar .wrapper .box .accordion .card .card-body .wrapp2 .color { + transition: all, 0.6s; +} + +.sidebar .wrapper .box .accordion .card .card-body .wrapp2 .color .custom-radios div { + display: inline-block; +} + +.sidebar .wrapper .box .accordion .card .card-body .wrapp2 .color .custom-radios input[type="radio"] { + display: none; +} + +.sidebar .wrapper .box .accordion .card .card-body .wrapp2 .color .custom-radios input[type="radio"] + label { + color: #333; + font-size: 14px; +} + +.sidebar .wrapper .box .accordion .card .card-body .wrapp2 .color .custom-radios input[type="radio"] + label span { + display: flex; + justify-content: center; + align-items: center; + width: 40px; + height: 40px; + margin: -1px 4px 0 0; + vertical-align: middle; + cursor: pointer; + border-radius: 50%; + border: 2px solid #ffffff; + box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.33); + background-repeat: no-repeat; + background-position: center; + text-align: center; +} + +.sidebar .wrapper .box .accordion .card .card-body .wrapp2 .color .custom-radios input[type="radio"] + label span img { + opacity: 0; + transition: all, 0.6s; + width: 50%; +} + +.sidebar .wrapper .box .accordion .card .card-body .wrapp2 .color .custom-radios input[type="radio"]#color-1 + label span { + background-color: #2ecc71; +} + +.sidebar .wrapper .box .accordion .card .card-body .wrapp2 .color .custom-radios input[type="radio"]#color-2 + label span { + background-color: #3498db; +} + +.sidebar .wrapper .box .accordion .card .card-body .wrapp2 .color .custom-radios input[type="radio"]#color-3 + label span { + background-color: #f1c40f; +} + +.sidebar .wrapper .box .accordion .card .card-body .wrapp2 .color .custom-radios input[type="radio"]#color-4 + label span { + background-color: #e74c3c; +} + +.sidebar .wrapper .box .accordion .card .card-body .wrapp2 .color .custom-radios input[type="radio"]#color-5 + label span { + background-color: #467dbd; +} + +.sidebar .wrapper .box .accordion .card .card-body .wrapp2 .color .custom-radios input[type="radio"]#color-6 + label span { + background-color: #000000; +} + +.sidebar .wrapper .box .accordion .card .card-body .wrapp2 .color .custom-radios input[type="radio"]#color-7 + label span { + background-color: #e74c3c; +} + +.sidebar .wrapper .box .accordion .card .card-body .wrapp2 .color .custom-radios input[type="radio"]#color-8 + label span { + background-color: grey; +} + +.sidebar .wrapper .box .accordion .card .card-body .wrapp2 .color .custom-radios input[type="radio"]:checked + label span img { + opacity: 1 !important; +} + +.sidebar .wrapper .box .accordion .card .card-body .wrapp2 .tags { + display: flex; + flex-wrap: wrap; +} + +.sidebar .wrapper .box .accordion .card .card-body .wrapp2 .tags a { + color: #3d3d3d; + font-size: 17px; + border: 1px solid; + border-color: #F5FCF0; + padding: 5px 14px; + margin: 10px; + text-decoration: none; + font-weight: 600; + background-color: #F5FCF0; +} + +.sidebar .wrapper .box .accordion .card .card-body .wrapp2 .tags a:hover { + background-color: #000000 !important; + color: #fff; + border-color: #000000; +} + +.sidebar .wrapper .box .collapse.show { + border: 1px solid; + border-color: transparent; + border-bottom-color: #ccc !important; +} + +.demo_product .dp_wrapper { + position: relative; +} + +.demo_product .dp_wrapper:hover .btn-dp::after { + width: 40px !important; + background: #15e4f3; +} + +.demo_product .dp_wrapper .dp_img { + float: inline-end; + max-width: 500px; + display: inline-block; +} + +.demo_product .dp_wrapper .dp_img img { + width: 100%; + display: inline-block; +} + +.demo_product .dp_wrapper .dp_details { + position: absolute; + width: 100%; + left: 0; + top: 125px; +} + +@media screen and (max-width: 996px) { + .demo_product .dp_wrapper .dp_details { + left: 50px; + } +} + +@media screen and (max-width: 768px) { + .demo_product .dp_wrapper .dp_details { + position: unset; + } +} + +.demo_product .dp_wrapper .dp_details .type { + font-size: 40px; + color: #222831; + font-weight: 600; +} + +.demo_product .dp_wrapper2 { + position: relative; + margin-top: -100px; +} + +@media screen and (max-width: 996px) { + .demo_product .dp_wrapper2 { + margin-top: 0; + } +} + +@media screen and (max-width: 768px) { + .demo_product .dp_wrapper2 { + margin-top: 50px; + } +} + +.demo_product .dp_wrapper2:hover .btn-dp::after { + width: 40px !important; + background: #15e4f3; +} + +.demo_product .dp_wrapper2 .dp_img { + max-width: 440px; +} + +.demo_product .dp_wrapper2 .dp_img img { + width: 100%; + display: inline-block; +} + +.demo_product .dp_wrapper2 .dp_details { + padding-top: 20px; + width: 100%; +} + +.demo_product .dp_wrapper2 .dp_details .type { + font-size: 40px; + color: #222831; + font-weight: 600; +} + +.demo_product .dp_wrapper3 { + position: relative; + margin-top: 50px; +} + +.demo_product .dp_wrapper3:hover .btn-dp::after { + width: 40px !important; + background: #15e4f3; +} + +.demo_product .dp_wrapper3 .dp_img { + float: inline-end; + max-width: 500px; + padding-bottom: 20px; +} + +.demo_product .dp_wrapper3 .dp_img img { + width: 100%; + display: inline-block; +} + +.demo_product .dp_wrapper3 .dp_details { + position: absolute; + width: 100%; + left: 0; + top: 135px; +} + +@media screen and (max-width: 996px) { + .demo_product .dp_wrapper3 .dp_details { + left: -50px; + } +} + +@media screen and (max-width: 768px) { + .demo_product .dp_wrapper3 .dp_details { + position: unset; + padding-top: 20px !important; + } +} + +.demo_product .dp_wrapper3 .dp_details .type { + font-size: 40px; + color: #222831; + font-weight: 600; +} + +.tab_product .tile { + width: 100%; + margin: 60px auto; +} + +.tab_product #tile-1 .nav-tabs { + position: relative; + border: none !important; + background-color: #fff; + /* box-shadow: 0 2px 2px 0 rgba(0,0,0,0.14), 0 1px 5px 0 rgba(0,0,0,0.12), 0 3px 1px -2px rgba(0,0,0,0.2); */ + border-radius: 6px; + justify-content: center; +} + +.tab_product #tile-1 .nav-tabs li { + margin: 0px !important; +} + +.tab_product #tile-1 .nav-tabs li a { + position: relative; + margin-right: 0px !important; + padding: 20px 40px !important; + font-size: 28px; + border: none !important; + color: #222831; + font-weight: 700; +} + +@media screen and (max-width: 996px) { + .tab_product #tile-1 .nav-tabs li a { + padding: 20px 16px !important; + font-size: 25px; + } +} + +@media screen and (max-width: 768px) { + .tab_product #tile-1 .nav-tabs li a { + padding: 10px 20px !important; + font-size: 25px; + } +} + +.tab_product #tile-1 .nav-tabs a:hover { + background-color: #fff !important; + border: none; +} + +.tab_product #tile-1 .slider { + display: inline-block; + height: 2px; + border-radius: 1px; + background-color: #467dbd; + position: absolute; + z-index: 1200; + bottom: 0; + transition: all 0.4s linear; +} + +@media screen and (max-width: 768px) { + .tab_product #tile-1 .slider { + display: none !important; + } +} + +.tab_product #tile-1 .nav-tabs .active { + background-color: transparent !important; + border: none !important; + color: #467dbd !important; +} + +.tab_product .tab-content { + padding-top: 90px; +} + +@media screen and (max-width: 996px) { + .tab_product .tab-content { + padding-top: 50px; + } +} + +.tab_product .tab-content .tab-pane .wrapper { + position: relative; + margin-bottom: 135px; + height: 265px; + width: 265px; +} + +.tab_product .tab-content .tab-pane .wrapper:hover .three { + right: 15% !important; + opacity: 1 !important; +} + +.tab_product .tab-content .tab-pane .wrapper:hover .three ul { + display: block !important; +} + +.tab_product .tab-content .tab-pane .wrapper:hover .product_name { + opacity: 0 !important; +} + +.tab_product .tab-content .tab-pane .wrapper:hover .add_to_c { + top: 20px !important; + opacity: 1 !important; +} + +.tab_product .tab-content .tab-pane .wrapper:hover .color { + opacity: 1 !important; +} + +.tab_product .tab-content .tab-pane .wrapper .img_wrapper { + width: 100%; + height: 100%; + position: relative; +} + +.tab_product .tab-content .tab-pane .wrapper .img_wrapper img { + max-width: 100%; + max-height: 100%; + position: absolute; + top: 0; + bottom: 0; + margin: auto; + left: 0; + right: 0; +} + +.tab_product .tab-content .tab-pane .wrapper .img_wrapper .three { + width: 100%; + height: 100%; + position: absolute; + top: 0; + display: flex; + justify-content: end; + align-items: center; + z-index: 3; + right: 0; + transition: all, 0.3s; + opacity: 0; +} + +.tab_product .tab-content .tab-pane .wrapper .img_wrapper .three ul { + padding-left: 0; + display: none; + position: relative; +} + +.tab_product .tab-content .tab-pane .wrapper .img_wrapper .three ul li { + background: #fff; + padding: 5px; + margin-bottom: 5px; +} + +.tab_product .tab-content .tab-pane .wrapper .img_wrapper .three ul li:hover .detail { + opacity: 1 !important; +} + +.tab_product .tab-content .tab-pane .wrapper .img_wrapper .three ul li .detail { + position: absolute; + padding: 5px 5px; + background-color: #000000; + color: #fff; + z-index: 999; + top: 43px; + right: 46px; + transition: all, 0.3s; + opacity: 0; +} + +.tab_product .tab-content .tab-pane .wrapper .img_wrapper .three ul li .detail::after { + content: " "; + background-color: #000; + height: 8px; + width: 8px; + position: absolute; + top: 13px; + transform: rotate(43deg); + right: -4px; +} + +.tab_product .tab-content .tab-pane .wrapper .img_wrapper .three ul li :last-child { + margin-bottom: 0; +} + +.tab_product .tab-content .tab-pane .wrapper .img_wrapper .three ul li a { + color: #000000; + text-decoration: none; +} + +.tab_product .tab-content .tab-pane .wrapper .img_wrapper .three ul li .material-icons { + font-size: 25px; +} + +.tab_product .tab-content .tab-pane .wrapper .img_wrapper .three ul li span { + font-size: 20px; +} + +.tab_product .tab-content .tab-pane .wrapper .img_wrapper .new { + position: absolute; + top: 15px; + left: 0; + background-color: #fff; + color: #000000; + letter-spacing: 1px; + font-size: 16px; + font-weight: 500; + padding: 3px 10px; + text-transform: uppercase; +} + +.tab_product .tab-content .tab-pane .wrapper .img_wrapper .sale { + position: absolute; + top: 15px; + left: 0; + background-color: #000000; + color: #fff; + letter-spacing: 1px; + font-size: 16px; + font-weight: 500; + padding: 3px 10px; + text-transform: uppercase; +} + +.tab_product .tab-content .tab-pane .wrapper .img_details { + padding-top: 30px; + position: relative; +} + +.tab_product .tab-content .tab-pane .wrapper .img_details .add_to_c { + color: #dc5656; + position: absolute; + top: -10px; + opacity: 0; + font-size: 18px; + font-weight: 600; + letter-spacing: 0.5px; + transition: all, 0.3s; +} + +.tab_product .tab-content .tab-pane .wrapper .img_details .product_name { + color: #222831; + font-size: 18px; + font-weight: 600; + letter-spacing: 1px; + opacity: 1; + transition: all, 0.3s; +} + +.tab_product .tab-content .tab-pane .wrapper .img_details .rating { + display: flex; +} + +.tab_product .tab-content .tab-pane .wrapper .img_details .rating i { + max-width: 16px; + display: block; + margin-right: 4px; +} + +.tab_product .tab-content .tab-pane .wrapper .img_details .rating i img { + width: 100%; +} + +.tab_product .tab-content .tab-pane .wrapper .img_details .price { + color: #222831; + font-size: 20px; + font-weight: 600; + padding-top: 10px; +} + +.tab_product .tab-content .tab-pane .wrapper .img_details .color { + position: absolute; + bottom: 0px; + right: 10px; + z-index: 999; + opacity: 0; + transition: all, 0.6s; +} + +.tab_product .tab-content .tab-pane .wrapper .img_details .color .custom-radios div { + display: inline-block; +} + +.tab_product .tab-content .tab-pane .wrapper .img_details .color .custom-radios input[type="radio"] { + display: none; +} + +.tab_product .tab-content .tab-pane .wrapper .img_details .color .custom-radios input[type="radio"] + label { + color: #333; + font-size: 14px; +} + +.tab_product .tab-content .tab-pane .wrapper .img_details .color .custom-radios input[type="radio"] + label span { + display: flex; + justify-content: center; + align-items: center; + width: 20px; + height: 20px; + margin: -1px 4px 0 0; + vertical-align: middle; + cursor: pointer; + border-radius: 50%; + border: 2px solid #ffffff; + box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.33); + background-repeat: no-repeat; + background-position: center; + text-align: center; +} + +.tab_product .tab-content .tab-pane .wrapper .img_details .color .custom-radios input[type="radio"] + label span img { + opacity: 0; + transition: all, 0.6s; + width: 50%; +} + +.tab_product .tab-content .tab-pane .wrapper .img_details .color .custom-radios input[type="radio"]#color-1 + label span { + background-color: #2ecc71; +} + +.tab_product .tab-content .tab-pane .wrapper .img_details .color .custom-radios input[type="radio"]#color-2 + label span { + background-color: #3498db; +} + +.tab_product .tab-content .tab-pane .wrapper .img_details .color .custom-radios input[type="radio"]#color-3 + label span { + background-color: #f1c40f; +} + +.tab_product .tab-content .tab-pane .wrapper .img_details .color .custom-radios input[type="radio"]#color-4 + label span { + background-color: #e74c3c; +} + +.tab_product .tab-content .tab-pane .wrapper .img_details .color .custom-radios input[type="radio"]:checked + label span img { + opacity: 1 !important; +} + +.rotate-center { + animation: rotate-center 0.6s ease-in-out both; +} + +/* ---------------------------------------------- + * Generated by Animista on 2021-3-30 21:50:41 + * Licensed under FreeBSD License. + * See http://animista.net/license for more info. + * w: http://animista.net, t: @cssanimista + * ---------------------------------------------- */ +/** + * ---------------------------------------- + * animation rotate-center + * ---------------------------------------- + */ + +@keyframes rotate-center { + 0% { + transform: rotate(0); + } + 100% { + transform: rotate(360deg); + } +} + +.deal { + background-color: #b0dbf081; + padding: 100px 0px 75px 0px; + width: 100%; + margin: 50px 0; +} + +@media screen and (max-width: 992px) { + .deal { + margin-top: 0 !important; + } +} + +.deal .wrapper { + margin-top: 50px; + padding: 0px 50px; +} + +@media screen and (max-width: 768px) { + .deal .wrapper { + margin-top: 0 !important; + padding: 0 20px; + } +} + +.deal .first { + position: relative; +} + +.deal .first .box { + position: absolute; + z-index: -1; + left: -65px; + width: 300px; + height: 300px; + background-color: #699cce; +} + +@media screen and (max-width: 1160px) { + .deal .first .box { + width: 200px; + height: 200px; + } +} + +@media screen and (max-width: 992px) { + .deal .first .box { + width: 300px; + height: 220px; + } +} + +@media screen and (max-width: 600px) { + .deal .first .box { + width: 150px; + height: 200px; + } +} + +.deal .first .one { + font-size: 30px; + color: #e2e2e2; + font-weight: 600; +} + +@media screen and (max-width: 600px) { + .deal .first .one { + color: #fff; + } +} + +@media screen and (max-width: 500px) { + .deal .first .one { + font-size: 22px; + padding-top: 20px; + } +} + +@media screen and (max-width: 1160px) { + .deal .first .one { + font-size: 25px; + } +} + +.deal .first .three_deal { + font-size: 30px; + color: #e2e2e2; + font-weight: 600; +} + +@media screen and (max-width: 600px) { + .deal .first .three_deal { + color: #fff; + } +} + +@media screen and (max-width: 500px) { + .deal .first .three_deal { + font-size: 22px; + } +} + +@media screen and (max-width: 1160px) { + .deal .first .three_deal { + font-size: 25px; + } +} + +.deal .first .two { + font-size: 35px; + font-weight: 600; + color: #222831; + margin: 25px 0; +} + +@media screen and (max-width: 1160px) { + .deal .first .two { + font-size: 30px; + } +} + +@media screen and (max-width: 500px) { + .deal .first .two { + margin: 15px 0; + } +} + +.deal_product { + max-width: 500px; + position: relative; + z-index: 5; +} + +@media screen and (max-width: 1160px) { + .deal_product { + max-width: 340px; + } +} + +@media screen and (max-width: 996px) { + .deal_product { + max-width: 750px; + margin: auto; + margin-top: 80px; + margin-bottom: 50px; + } +} + +.deal_product .tag { + position: absolute; + content: " "; + width: 100px; + height: 100px; + border-radius: 50%; + background-color: #222831; + top: 0px; + right: 0; + z-index: 999; + padding-top: 20px; + text-align: center; + color: #fff; +} + +@media screen and (max-width: 996px) { + .deal_product .tag { + top: 63px; + right: 46px; + } +} + +@media screen and (max-width: 600px) { + .deal_product .tag { + top: 14px; + right: -3px; + } +} + +@media screen and (max-width: 500px) { + .deal_product .tag { + top: -7px; + right: -27px; + } +} + +.deal_product .tag .nn { + font-size: 14px; + text-align: center; + width: 100%; + margin-bottom: 0; + padding: 0; +} + +.deal_product .tag .price { + font-size: 20px; + font-weight: 600; +} + +.deal_product img { + width: 500px; + height: 385px; +} + +.counter .left .wrappers { + position: relative; + z-index: 1; +} + +.counter .left .wrappers .deals { + color: #e74c3c; + font-size: 22px; + font-weight: 600; + text-transform: uppercase; + letter-spacing: 1px; + margin-bottom: 30px; +} + +@media screen and (max-width: 500px) { + .counter .left .wrappers .deals { + margin-bottom: 20px; + } +} + +.counter .left .bt { + color: #222831; + font-size: 30px; + font-weight: 600; + text-transform: uppercase; + margin-bottom: 40px; +} + +@media screen and (max-width: 1160px) { + .counter .left .bt { + font-size: 25px; + } +} + +.counter .left #countdown { + width: 100%; + border-radius: 8px; + padding-top: 20px; +} + +.counter .left label { + clear: both; + display: block; +} + +.counter .left #countdown span { + color: #000000; + font-size: 45px; + font-weight: 700; + text-align: center; + width: 25%; + float: left; + margin-bottom: 40px; +} + +@media screen and (max-width: 1160px) { + .counter .left #countdown span { + font-size: 30px; + } +} + +@media screen and (max-width: 992px) { + .counter .left #countdown span { + font-size: 40px; + } +} + +@media screen and (max-width: 500px) { + .counter .left #countdown span { + font-size: 30px; + } +} + +.insta { + margin: 100px 0; + padding-top: 50px; +} + +@media screen and (max-width: 567px) { + .insta { + padding-top: 0; + } +} + +.insta .wrapper .gallery { + display: grid; + grid-template-columns: 1fr 1fr 1fr; +} + +@media screen and (max-width: 992px) { + .insta .wrapper .gallery { + grid-template-columns: 1fr 1fr; + margin-bottom: 50px; + } +} + +@media screen and (max-width: 400px) { + .insta .wrapper .gallery { + grid-template-columns: 1fr; + } +} + +.insta .wrapper .gallery .insta_img { + max-width: 600px; +} + +.insta .wrapper .gallery .insta_img img { + width: 100%; +} + +.insta .wrapper .insta_id { + width: 100%; + height: 100%; +} + +.insta .wrapper .insta_id .wrapper1 { + width: 100%; + height: 100%; + display: flex; + flex-direction: column; + justify-content: center; +} + +.insta .wrapper .insta_id h4 { + color: #222831; + font-size: 35px; + font-weight: 700; + padding-bottom: 30px; +} + +.insta .wrapper .insta_id p { + line-height: 2rem; + font-size: 16px; +} + +.insta .wrapper .insta_id .idd { + margin-top: 30px; + color: #699cce; + font-size: 40px; + font-weight: 700; +} + +.blog_index { + margin-bottom: 80px; +} + +@media screen and (max-width: 567px) { + .blog_index { + margin-bottom: 10px; + } +} + +@media screen and (max-width: 768px) { + .blog_index { + margin-bottom: 40px; + } +} + +@media screen and (max-width: 567px) { + .blog_index .wrapper .card-deck { + padding: 0 20px !important; + } +} + +.blog_index .wrapper .card-deck .card { + border: none; +} + +.blog_index .wrapper .card-deck .card:hover .btn-dp::after { + width: 40px !important; + background: #15e4f3; +} + +.blog_index .wrapper .card-deck .card .card-body { + padding: 15px 30px; + margin-top: -40px; + background: transparent; + background-color: transparent !important; +} + +.blog_index .wrapper .card-deck .card .card-body .wrapper { + background-color: #fff; + padding: 25px 25px; +} + +.blog_index .wrapper .card-deck .card .card-body i { + font-size: 16px; + margin-bottom: 15px; +} + +.blog_index .wrapper .card-deck .card .card-body .card-title { + font-size: 20px; + font-weight: 700; +} + +.shop { + margin: 0px 0; +} + +@media screen and (max-width: 576px) { + .shop { + margin: 0px 0; + } +} + +.shop .row, +.o_wsale_products_main_row.row { + margin-left: 0px !important; + margin-right: 0px !important; +} + +.shop .top { + width: 100%; + justify-content: space-between; + padding: 20px 0; +} + +@media screen and (max-width: 768px) { + .shop .top { + display: block !important; + } +} + +@media screen and (max-width: 576px) { + .shop .top { + padding-left: 20px; + } +} + +.shop .top .left { + font-size: 20px; + letter-spacing: 0.5px; +} + +@media screen and (max-width: 992px) { + .shop .top .left { + font-size: 16px; + } +} + +@media screen and (max-width: 768px) { + .shop .top .left { + margin-bottom: 20px; + } +} + +.shop .top .right .select { + display: flex; + flex-direction: column; + position: relative; + width: 250px; + height: 40px; +} + +.shop .top .right .option { + padding: 0 30px 0 10px; + min-height: 40px; + display: flex; + align-items: center; + background: white; + border-top: #222 solid 1px; + position: absolute; + top: 0; + width: 100%; + pointer-events: none; + order: 2; + z-index: 4; + transition: background 0.4s ease-in-out; + box-sizing: border-box; + overflow: hidden; + white-space: nowrap; +} + +.shop .top .right .option:hover { + background: #bdbdbd; +} + +.shop .top .right .select:focus .option { + position: relative; + pointer-events: all; +} + +.shop .top .right input { + opacity: 0; + position: absolute; + left: -99999px; +} + +.shop .top .right input:checked + label { + order: 1; + z-index: 2; + background: #fff; + border: 1px solid; + border-color: #ccc; + position: relative; +} + +.shop .top .right input:checked + label:after { + content: ""; + width: 0; + height: 0; + border-left: 5px solid transparent; + border-right: 5px solid transparent; + border-top: 5px solid white; + position: absolute; + right: 10px; + top: calc(50% - 2.5px); + pointer-events: none; + z-index: 3; +} + +.shop .top .right input:checked + label:before { + position: absolute; + right: 0; + height: 40px; + width: 40px; + content: ""; + background: #222831; +} + +.shop .pt { + padding-top: 30px; +} + +.shop .shop_content .wrapper { + position: relative; + margin-bottom: 40px; +} + +.shop .shop_content .img_wrapper { + margin: 8px; +} + +.shop .shop_content .wrapper:hover .three { + right: 15% !important; + opacity: 1 !important; +} + +.shop .shop_content .wrapper:hover .three ul { + display: block !important; +} + +.shop .shop_content .wrapper:hover .product_name { + opacity: 0 !important; +} + +.shop .shop_content .wrapper:hover .add_to_c { + top: 20px !important; + opacity: 1 !important; +} + +.shop .shop_content .wrapper:hover .color { + opacity: 1 !important; +} + +.shop .shop_content .wrapper .img_wrapper { + max-width: 750px; +} + +.shop .shop_content .wrapper .img_wrapper img { + width: 100%; +} + +.shop .shop_content .wrapper .img_wrapper .three { + width: 100%; + height: 100%; + position: absolute; + top: 0; + display: flex; + justify-content: end; + align-items: center; + z-index: 3; + right: 0; + transition: all, 0.3s; + opacity: 0; +} + +.shop .shop_content .wrapper .img_wrapper .three ul { + padding-left: 0; + display: none; + position: relative; +} + +.shop .shop_content .wrapper .img_wrapper .three ul li { + background: #fff; + padding: 5px; + margin-bottom: 5px; +} + +.shop .shop_content .wrapper .img_wrapper .three ul li:hover .detail { + opacity: 1 !important; +} + +.shop .shop_content .wrapper .img_wrapper .three ul li .detail { + position: absolute; + padding: 5px 5px; + background-color: #000000; + color: #fff; + z-index: 999; + top: 43px; + right: 46px; + transition: all, 0.3s; + opacity: 0; +} + +.shop .shop_content .wrapper .img_wrapper .three ul li .detail::after { + content: " "; + background-color: #000; + height: 8px; + width: 8px; + position: absolute; + top: 13px; + transform: rotate(43deg); + right: -4px; +} + +.shop .shop_content .wrapper .img_wrapper .three ul li :last-child { + margin-bottom: 0; +} + +.shop .shop_content .wrapper .img_wrapper .three ul li a { + color: #000000; + text-decoration: none; +} + +.shop .shop_content .wrapper .img_wrapper .three ul li .material-icons { + font-size: 25px; +} + +.shop .shop_content .wrapper .img_wrapper .three ul li span { + font-size: 20px; +} + +.shop .shop_content .wrapper .img_wrapper .new { + position: absolute; + top: 15px; + left: 0; + background-color: #fff; + color: #000000; + letter-spacing: 1px; + font-size: 16px; + font-weight: 500; + padding: 3px 10px; + text-transform: uppercase; +} + +.shop .shop_content .wrapper .img_wrapper .sale { + position: absolute; + top: 15px; + left: 0; + background-color: #000000; + color: #fff; + letter-spacing: 1px; + font-size: 16px; + font-weight: 500; + padding: 3px 10px; + text-transform: uppercase; +} + +.shop .shop_content .wrapper .img_details { + padding-top: 30px; + position: relative; +} + +.shop .shop_content .wrapper .img_details .add_to_c { + color: #dc5656; + position: absolute; + top: -10px; + opacity: 0; + font-size: 18px; + font-weight: 600; + letter-spacing: 0.5px; + transition: all, 0.3s; +} + +.shop .shop_content .wrapper .img_details .product_name { + color: #222831; + font-size: 18px; + font-weight: 600; + letter-spacing: 1px; + opacity: 1; + transition: all, 0.3s; +} + +.shop .shop_content .wrapper .img_details .rating { + display: flex; +} + +.shop .shop_content .wrapper .img_details .rating i { + max-width: 16px; + display: block; + margin-right: 4px; +} + +.shop .shop_content .wrapper .img_details .rating i img { + width: 100%; +} + +.shop .shop_content .wrapper .img_details .price { + color: #222831; + font-size: 20px; + font-weight: 600; + padding-top: 10px; +} + +.shop .shop_content .wrapper .img_details .color { + position: absolute; + bottom: 0px; + right: 10px; + z-index: 999; + opacity: 0; + transition: all, 0.6s; +} + +.shop .shop_content .wrapper .img_details .color .custom-radios div { + display: inline-block; +} + +.shop .shop_content .wrapper .img_details .color .custom-radios input[type="radio"] { + display: none; +} + +.shop .shop_content .wrapper .img_details .color .custom-radios input[type="radio"] + label { + color: #333; + font-size: 14px; +} + +.shop .shop_content .wrapper .img_details .color .custom-radios input[type="radio"] + label span { + display: flex; + justify-content: center; + align-items: center; + width: 20px; + height: 20px; + margin: -1px 4px 0 0; + vertical-align: middle; + cursor: pointer; + border-radius: 50%; + border: 2px solid #ffffff; + box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.33); + background-repeat: no-repeat; + background-position: center; + text-align: center; +} + +.shop .shop_content .wrapper .img_details .color .custom-radios input[type="radio"] + label span img { + opacity: 0; + transition: all, 0.6s; + width: 50%; +} + +.shop .shop_content .wrapper .img_details .color .custom-radios input[type="radio"]#color-1 + label span { + background-color: #2ecc71; +} + +.shop .shop_content .wrapper .img_details .color .custom-radios input[type="radio"]#color-2 + label span { + background-color: #3498db; +} + +.shop .shop_content .wrapper .img_details .color .custom-radios input[type="radio"]#color-3 + label span { + background-color: #f1c40f; +} + +.shop .shop_content .wrapper .img_details .color .custom-radios input[type="radio"]#color-4 + label span { + background-color: #e74c3c; +} + +.shop .shop_content .wrapper .img_details .color .custom-radios input[type="radio"]:checked + label span img { + opacity: 1 !important; +} + +.shop .shop_pagination_area { + text-align: center; + display: flex; + margin: auto; + padding-top: 30px; +} + +.shop .shop_pagination_area .pagination .page-item.active .page-link { + color: #eeeeee; + background-color: #699cce; +} + +.shop .shop_pagination_area .pagination .page-item .page-link { + color: #333333; + background-color: #eeeeee; + border: 0; + font-size: 15px; + font-weight: 600; + border: 2px solid; + border: 0; + border-radius: 0; + border-color: #e2e2e2; + height: 35px; + width: 37px; + box-shadow: none; + padding: 8px 10px; +} + +.shop .shop_pagination_area .pagination .page-item .page-link:hover { + color: #eeeeee; + background-color: #699cce; +} + +.shop .shop_pagination_area .pagination .page-item:nth-child(4) .page-link { + background-color: transparent !important; +} + +.blog { + margin-top: 40px; + margin-bottom: 0px; +} + +@media screen and (max-width: 576px) { + .blog { + margin-bottom: 0px; + } +} + +@media screen and (max-width: 576px) { + .blog .wrapper { + padding: 0 20px; + } +} + +.blog .wrapper .card-deck .card { + border: none; + margin-bottom: 20px; +} + +.blog .wrapper .card-deck .card:hover .btn-dp::after { + width: 40px !important; + background: #15e4f3; +} + +.blog .wrapper .card-deck .card .card-body { + padding: 15px 30px; + margin-top: -60px; + background: transparent; + position: relative; + background-color: transparent !important; +} + +.blog .wrapper .card-deck .card .card-body .wrapper { + background-color: #fff; + padding: 25px 25px; +} + +.blog .wrapper .card-deck .card .card-body i { + font-size: 16px; + margin-bottom: 15px; +} + +.blog .wrapper .card-deck .card .card-body .card-title { + font-size: 20px; + font-weight: 700; +} + +.contact { + margin-top: 80px; + margin-bottom: 50px; +} + +.contact .map .map-responsive { + overflow: hidden; + padding-bottom: 34.25%; + position: relative; + height: 500px; +} + +@media screen and (max-width: 576px) { + .contact .map .map-responsive { + height: 400px; + } +} + +.contact .map .map-responsive iframe { + left: 0; + top: 0; + height: 100%; + width: 100%; + position: absolute; +} + +.contact .contact_main { + margin-top: 100px; +} + +@media screen and (max-width: 576px) { + .contact .contact_main { + margin-top: 70px; + } +} + +.contact .contact_main .contact_details .heading_c { + margin-bottom: 30px; +} + +.contact .contact_main .contact_details .heading_c .sub { + color: #467dbd; + text-transform: uppercase; + letter-spacing: 1px; + font-size: 22px; +} + +.contact .contact_main .contact_details .heading_c .main { + color: #222831; + text-transform: capitalize; + font-weight: 700; + font-size: 50px; +} + +.contact .contact_main .contact_details .abt { + font-size: 16px; +} + +.contact .contact_main .contact_details .address { + margin-top: 40px; +} + +.contact .contact_main .contact_details .address .wrapper { + padding-bottom: 20px; +} + +.contact .contact_main .contact_details .address .wrapper .cc { + color: #222831; + font-size: 28px; + font-weight: 700; + padding-bottom: 15px; +} + +.contact .contact_main .contact_details .address .wrapper .info { + font-size: 18px; +} + +.contact .contact_main .contact_details .address .wrapper a { + color: #3d3d3d; + font-size: 18px; +} + +@media screen and (max-width: 576px) { + .contact .contact_main .contact_form form { + margin-top: 40px; + } +} + +.contact .contact_main .contact_form form .form-group { + margin-bottom: 30px; +} + +.contact .contact_main .contact_form form .form-group .form-control { + border-radius: 0; + height: calc(3.5em + 0.95rem + 2px); + padding: 0.575rem 0.75rem; + box-shadow: none !important; +} + +.contact .contact_main .contact_form form .form-group .form-control:focus { + color: #5f5f5f; + background-color: #fff; + border-color: #467dbd; + outline: 0; +} + +.contact .contact_main .contact_form form textarea { + padding: 30px 20px; +} + +.contact .contact_main .contact_form form .txt { + border: 1px solid; + border-color: transparent; + border-top-color: #ccc !important; + border-right-color: #ccc !important; + border-bottom-color: #ccc !important; + border-left-color: #ccc !important; +} + +.contact .contact_main .contact_form form .txt:focus { + color: #5f5f5f; + background-color: #fff; + border-color: #467dbd !important; + outline: 0; +} + +.about { + margin: 100px 0; +} + +@media screen and (max-width: 576px) { + .about { + margin: 40px 0; + } +} + +.about .about_img { + width: 100%; + margin-bottom: 30px; +} + +.about .about_img img { + width: 100%; +} + +.about .about_bottom .about_details { + padding-top: 15px; +} + +.about .about_bottom .about_details .abt_d_head { + color: #222831; + font-weight: 700; + font-size: 28px; +} + +.about .about_bottom .about_details p { + padding-top: 10px; + line-height: 1.8em; +} + +.about .testimonial { + margin-top: 100px; +} + +@media screen and (max-width: 768px) { + .about .testimonial { + margin-top: 50px; + } +} + +.about .testimonial .wrapper { + display: grid; + grid-template-columns: 1fr 1fr; +} + +@media screen and (max-width: 976px) { + .about .testimonial .wrapper { + grid-template-columns: 1fr; + } +} + +.about .testimonial .wrapper .words { + background-color: #b0dbf081; +} + +@media screen and (max-width: 976px) { + .about .testimonial .wrapper .words { + padding: 100px 0; + } +} + +@media screen and (max-width: 576px) { + .about .testimonial .wrapper .words { + padding: 70px 0; + } +} + +.about .testimonial .wrapper .words .wrapper { + display: flex; + justify-content: center; + align-items: center; + height: 100%; +} + +.about .testimonial .wrapper .words .wrapper .content { + text-align: center; + width: 60%; +} + +.about .testimonial .wrapper .words .wrapper .content span { + color: #e74c3c; + font-size: 40px; +} + +.about .testimonial .wrapper .words .wrapper .content p { + color: #222831; + font-size: 20px; + font-style: italic; + line-height: 2rem; + padding-top: 25px; +} + +.about .testimonial .wrapper .words .wrapper .content .img_wraper { + display: flex; + margin-top: 30px; + justify-content: center; +} + +.about .testimonial .wrapper .words .wrapper .content .img_wraper .p_img { + width: 75px; + margin-right: 30px; +} + +.about .testimonial .wrapper .words .wrapper .content .img_wraper .p_img img { + width: 100%; + border-radius: 50%; +} + +.about .testimonial .wrapper .words .wrapper .content .img_wraper .name { + color: #222831; + font-size: 20px; + font-weight: 700; +} + +.about .testimonial .wrapper .words .wrapper .content .img_wraper .roll { + color: #F5FCF0; + font-style: italic; + padding-top: 0px; + text-align: left !important; + font-size: 20px; +} + +.about .testimonial .wrapper .test_img { + width: 50vw; +} + +@media screen and (max-width: 976px) { + .about .testimonial .wrapper .test_img { + width: 100vw; + } +} + +.about .testimonial .wrapper .test_img img { + width: 100%; +} + +.about .counter { + margin-top: 70px; + margin-bottom: 70px; +} + +@media screen and (max-width: 768px) { + .about .counter { + margin: 70px 0; + } +} + +.about .counter .wrapp { + display: flex; + justify-content: center; +} + +@media screen and (max-width: 576px) { + .about .counter .wrapp { + margin-bottom: 30px; + justify-content: flex-start; + } +} + +.about .counter .wrapp p { + font-size: 22px; + font-weight: 600; + margin-left: 15px; +} + +@media screen and (max-width: 768px) { + .about .counter .wrapp p { + font-size: 15px; + } +} + +.about .counter .display-4 { + font-size: 70px; + font-weight: 700; + line-height: 30px; +} + +@media screen and (max-width: 976px) { + .about .counter .display-4 { + font-size: 50px; + } +} + +.about .hr { + padding: 70px 0; + border: 1px solid transparent; + border-bottom-color: rgba(0, 0, 0, 0.281) !important; +} + +@media screen and (max-width: 768px) { + .about .hr { + padding-top: 50px; + padding-bottom: 30px; + margin: 40px 20px; + } +} + +.about .team .team_wrapper { + padding-top: 20px; + padding-bottom: 70px; +} + +@media screen and (max-width: 576px) { + .about .team .team_wrapper { + padding-bottom: 40px; + } +} + +.about .team .team_wrapper .card-deck .card { + border: 0; +} + +.about .team .team_wrapper .card-deck .card .card-img-top { + border-radius: 0; +} + +.about .team .team_wrapper .card-deck .card .card-body { + margin-top: 15px; + padding-left: 0; +} + +.about .team .team_wrapper .card-deck .card .card-body .card-title { + font-size: 25px; + font-weight: 700; + letter-spacing: 0; +} + +.about .team .team_wrapper .card-deck .card .card-body .card-text { + font-size: 18px; + color: #b7b7b7; + text-transform: uppercase; +} + +.about .clients .client_wrapper .img_wrapper { + width: 100px; + max-width: 300px; + margin: auto; + padding-bottom: 70px; +} + +.about .clients .client_wrapper .img_wrapper img { + width: 100%; + filter: grayscale(100%); +} + +.about .clients .client_wrapper .img_wrapper img:hover { + filter: grayscale(0%); +} + +.Shop_details { + padding-bottom: 80px; + background-color: #b0dbf081; +} + +@media screen and (max-width: 400px) { + .Shop_details { + padding-bottom: 100px; + } +} + +.Shop_details .wrapper .brd { + margin: auto; +} + +.Shop_details .wrapper .breadcrumb { + background-color: transparent; + padding: 40px 0px 20px 0px; +} + +.Shop_details .wrapper .breadcrumb .material-icons { + font-size: 18px; + padding-top: 3px; +} + +.Shop_details .wrapper .breadcrumb .breadcrumb-item { + font-size: 16px; +} + +.Shop_details .wrapper .breadcrumb .breadcrumb-item::before { + display: none; +} + +.Shop_details .wrapper .breadcrumb .breadcrumb-item a { + color: #000000; + text-decoration: none; + font-size: 16px; +} + +.Shop_details .slider { + position: relative; +} + +.Shop_details .slider #sync1 { + width: 100%; +} + +.Shop_details .slider #sync1 .item { + width: 610px; + margin: auto !important; + color: #fff; + border-radius: 3px; + text-align: center; +} + +@media screen and (max-width: 768px) { + .Shop_details .slider #sync1 .item { + width: 100%; + } +} + +.Shop_details .slider #sync1 .item img { + width: 100%; +} + +.Shop_details .slider #sync2 { + position: absolute; + bottom: -190px; +} + +@media screen and (max-width: 768px) { + .Shop_details .slider #sync2 { + bottom: -150px; + } +} + +@media screen and (max-width: 400px) { + .Shop_details .slider #sync2 { + bottom: -80px; + } +} + +.Shop_details .slider #sync2 .item { + background: #c9c9c9; + margin: 5px; + color: #fff; + border-radius: 3px; + text-align: center; + cursor: pointer; +} + +@media screen and (max-width: 768px) { + .Shop_details .slider #sync2 .item { + width: 159px; + } +} + +@media screen and (max-width: 568px) { + .Shop_details .slider #sync2 .item { + width: 140px; + } +} + +@media screen and (max-width: 568px) { + .Shop_details .slider #sync2 .item { + width: 110px; + } +} + +@media screen and (max-width: 400px) { + .Shop_details .slider #sync2 .item { + width: 80px; + } +} + +.Shop_details .slider #sync2 .item img { + width: 100% !important; +} + +.Shop_details .slider #sync2 .current .item { + border: 1px solid; + border-color: #699cce; +} + +.Shop_details .slider .owl-theme .owl-nav { + /*default owl-theme theme reset .disabled:hover links */ +} + +.Shop_details .slider .owl-theme .owl-nav [class*="owl-"] { + transition: all 0.3s ease; +} + +.Shop_details .slider .owl-theme .owl-nav [class*="owl-"].disabled:hover { + background-color: #d6d6d6; +} + +.Shop_details .slider #sync2.owl-theme .owl-nav { + display: none !important; +} + +.Shop_details .slider #sync1.owl-theme { + position: relative; +} + +.Shop_details .slider #sync1.owl-theme .owl-next, +.Shop_details .slider #sync1.owl-theme .owl-prev { + width: 22px; + height: 40px; + margin-top: -20px; + position: absolute; + top: 50%; +} + +.Shop_details .slider #sync1.owl-theme .owl-next:hover, +.Shop_details .slider #sync1.owl-theme .owl-prev:hover { + background-color: transparent !important; +} + +.Shop_details .slider #sync1.owl-theme .owl-prev { + left: 10px; +} + +.Shop_details .slider #sync1.owl-theme .owl-next { + right: 10px; +} + +.preview_details { + padding-top: 80px; +} + +.preview_details .wrapper .p_head { + text-align: center; + color: #222831; + font-weight: 700; + padding-bottom: 0px; +} + +.preview_details .wrapper .rating { + display: flex; + justify-content: center; + margin-bottom: 5px; +} + +.preview_details .wrapper .rating i { + max-width: 16px; + display: block; + margin-right: 4px; +} + +.preview_details .wrapper .rating i img { + width: 100%; +} + +.preview_details .wrapper .nw { + display: flex; + justify-content: center; + align-items: center; +} + +.preview_details .wrapper .nw .price { + color: #222831; + font-size: 40px; + font-weight: 600; + padding-top: 0px; + margin-right: 20px; +} + +.preview_details .wrapper .nw .price_old { + color: #b7b7b7; + font-size: 20px; + font-weight: 600; + padding-top: 10px; + margin-right: 20px; + text-decoration: line-through; +} + +.preview_details .wrapper .abt { + margin-top: 15px; + font-size: 14px; + line-height: 25px; + text-align: center; +} + +.preview_details .wrapper .p_c { + margin-top: 40px; + display: flex; + justify-content: space-evenly; + /* Style the active class, and buttons on mouse-over */ +} + +@media screen and (max-width: 992px) { + .preview_details .wrapper .p_c { + display: block; + text-align: center; + } +} + +.preview_details .wrapper .p_c i { + font-size: 25px; + font-weight: 700; + margin-right: 15px; + font-style: normal !important; +} + +.preview_details .wrapper .p_c .btn { + border: none; + border-radius: 0; + outline: none; + padding: 8px 14px; + background-color: transparent; + cursor: pointer; + font-size: 15px; + border: 1px solid; + border-color: #ccc; +} + +.preview_details .wrapper .p_c .active, +.preview_details .wrapper .p_c .btn:hover { + background-color: #181515; + color: white; +} + +.preview_details .wrapper .p_c .color { + transition: all, 0.6s; +} + +@media screen and (max-width: 992px) { + .preview_details .wrapper .p_c .color { + margin-top: 30px; + } +} + +.preview_details .wrapper .p_c .color .custom-radios div { + display: inline-block; +} + +.preview_details .wrapper .p_c .color .custom-radios input[type="radio"] { + display: none; +} + +.preview_details .wrapper .p_c .color .custom-radios input[type="radio"] + label { + color: #333; + font-size: 14px; +} + +.preview_details .wrapper .p_c .color .custom-radios input[type="radio"] + label span { + display: flex; + justify-content: center; + align-items: center; + width: 40px; + height: 40px; + margin: -1px 4px 0 0; + vertical-align: middle; + cursor: pointer; + border-radius: 50%; + border: 2px solid #ffffff; + box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.33); + background-repeat: no-repeat; + background-position: center; + text-align: center; +} + +.preview_details .wrapper .p_c .color .custom-radios input[type="radio"] + label span img { + opacity: 0; + transition: all, 0.6s; + width: 50%; +} + +.preview_details .wrapper .p_c .color .custom-radios input[type="radio"]#color-1 + label span { + background-color: #2ecc71; +} + +.preview_details .wrapper .p_c .color .custom-radios input[type="radio"]#color-2 + label span { + background-color: #3498db; +} + +.preview_details .wrapper .p_c .color .custom-radios input[type="radio"]#color-3 + label span { + background-color: #f1c40f; +} + +.preview_details .wrapper .p_c .color .custom-radios input[type="radio"]#color-4 + label span { + background-color: #e74c3c; +} + +.preview_details .wrapper .p_c .color .custom-radios input[type="radio"]#color-5 + label span { + background-color: #467dbd; +} + +.preview_details .wrapper .p_c .color .custom-radios input[type="radio"]#color-6 + label span { + background-color: #000000; +} + +.preview_details .wrapper .p_c .color .custom-radios input[type="radio"]#color-7 + label span { + background-color: #e74c3c; +} + +.preview_details .wrapper .p_c .color .custom-radios input[type="radio"]#color-8 + label span { + background-color: grey; +} + +.preview_details .wrapper .p_c .color .custom-radios input[type="radio"]:checked + label span img { + opacity: 1 !important; +} + +.preview_details .wrapper .qnty { + display: flex; + justify-content: center; + padding-top: 40px; +} + +.preview_details .wrapper .qnty .input-group { + margin-right: 20px; + width: 100px; + border: 1px solid; + padding-top: 10px; + border-color: #ccc; +} + +.preview_details .wrapper .qnty .input-group .input-group-btn a { + color: #000000; +} + +.preview_details .wrapper .qnty .input-group #quantity { + text-align: center; + border: transparent; + font-size: 18px; + font-weight: 700; + background-color: transparent; +} + +.preview_details .wrapper .add_to { + display: flex; + justify-content: center; + padding-top: 40px; +} + +@media screen and (max-width: 576px) { + .preview_details .wrapper .add_to { + display: block !important; + text-align: center; + } +} + +.preview_details .wrapper .add_to a { + font-size: 18px; + color: #000000; + text-transform: uppercase; + text-decoration: none; + letter-spacing: 2px; + margin-right: 20px; +} + +@media screen and (max-width: 576px) { + .preview_details .wrapper .add_to a { + display: block !important; + text-align: center; + } + .preview_details .wrapper .add_to a:first-child { + padding-bottom: 10px; + } +} + +.preview_details .wrapper .hd { + padding-top: 30px; + position: relative; + text-align: center; +} + +.preview_details .wrapper .hd::after { + position: absolute; + left: 0; + right: 0; + top: 45px; + height: 1px; + width: 460px; + background: #e5e5e5; + content: ""; + z-index: -1; + margin: 0 auto; +} + +@media screen and (max-width: 500px) { + .preview_details .wrapper .hd::after { + width: 400px; + } +} + +@media screen and (max-width: 450px) { + .preview_details .wrapper .hd::after { + width: 350px; + } +} + +@media screen and (max-width: 376px) { + .preview_details .wrapper .hd::after { + display: none; + } +} + +.preview_details .wrapper .hd span { + background-color: #fff; + font-size: 25px; + font-weight: 700; + padding: 0 10px; +} + +@media screen and (max-width: 576px) { + .preview_details .wrapper .hd span { + font-size: 20px; + } +} + +.preview_details .wrapper .payment { + max-width: 500px; + margin: auto; + padding-top: 30px; +} + +.preview_details .wrapper .payment img { + width: 100%; +} + +.preview_details .wrapper .types { + margin-top: 40px; +} + +.preview_details .wrapper .types ul { + padding-left: 0; + text-align: center; +} + +.preview_details .wrapper .types ul li { + color: #000000; + font-size: 18px; + font-weight: 700; + padding-bottom: 10px; +} + +.preview_details .wrapper .types ul li span { + color: #b7b7b7; + font-size: 16px; + font-weight: normal !important; +} + +.preview_details .wrapper .description { + margin-top: 40px; +} + +.preview_details .wrapper .description nav .nav-tabs { + justify-content: center; +} + +.preview_details .wrapper .description nav .nav-tabs .nav-link { + color: #b7b7b7; + font-size: 20px; + font-weight: 700; + margin: 0 20px; + background-color: transparent; +} + +.preview_details .wrapper .description .nav-tabs .nav-item.show .nav-link, +.preview_details .wrapper .description .nav-tabs .nav-link.active { + border: 3px solid; + border-radius: 0; + border-color: transparent; + border-bottom-color: #467dbd !important; +} + +.preview_details .wrapper .description .tab-content { + margin-top: 40px; + padding-bottom: 50px; +} + +.preview_details .wrapper .description .tab-content .tab-pane .top { + color: #000000; + font-size: 18px; + font-weight: 600; + line-height: 30px; + text-align: center; +} + +.preview_details .wrapper .description .tab-content .bt { + font-size: 14px; + line-height: 30px; + padding-top: 10px; + text-align: center; +} + +.preview_details .wrapper .related { + padding-top: 50px; + padding-bottom: 50px; +} + +.preview_details .wrapper .related .wrapper { + position: relative; + margin-bottom: 40px; +} + +.preview_details .wrapper .related .wrapper:hover .three { + right: 15% !important; + opacity: 1 !important; +} + +.preview_details .wrapper .related .wrapper:hover .three ul { + display: block !important; +} + +.preview_details .wrapper .related .wrapper:hover .product_name { + opacity: 0 !important; +} + +.preview_details .wrapper .related .wrapper:hover .add_to_c { + top: 20px !important; + opacity: 1 !important; +} + +.preview_details .wrapper .related .wrapper:hover .color { + opacity: 1 !important; +} + +.preview_details .wrapper .related .wrapper .img_wrapper { + max-width: 750px; +} + +.preview_details .wrapper .related .wrapper .img_wrapper img { + width: 100%; +} + +.preview_details .wrapper .related .wrapper .img_wrapper .three { + width: 100%; + height: 100%; + position: absolute; + top: 0; + display: flex; + justify-content: end; + align-items: center; + z-index: 3; + right: 0; + transition: all, 0.3s; + opacity: 0; +} + +.preview_details .wrapper .related .wrapper .img_wrapper .three ul { + padding-left: 0; + display: none; + position: relative; +} + +.preview_details .wrapper .related .wrapper .img_wrapper .three ul li { + background: #fff; + padding: 5px; + margin-bottom: 5px; +} + +.preview_details .wrapper .related .wrapper .img_wrapper .three ul li:hover .detail { + opacity: 1 !important; +} + +.preview_details .wrapper .related .wrapper .img_wrapper .three ul li .detail { + position: absolute; + padding: 5px 5px; + background-color: #000000; + color: #fff; + z-index: 999; + top: 43px; + right: 46px; + transition: all, 0.3s; + opacity: 0; +} + +.preview_details .wrapper .related .wrapper .img_wrapper .three ul li .detail::after { + content: " "; + background-color: #000; + height: 8px; + width: 8px; + position: absolute; + top: 13px; + transform: rotate(43deg); + right: -4px; +} + +.preview_details .wrapper .related .wrapper .img_wrapper .three ul li :last-child { + margin-bottom: 0; +} + +.preview_details .wrapper .related .wrapper .img_wrapper .three ul li a { + color: #000000; + text-decoration: none; +} + +.preview_details .wrapper .related .wrapper .img_wrapper .three ul li .material-icons { + font-size: 25px; +} + +.preview_details .wrapper .related .wrapper .img_wrapper .three ul li span { + font-size: 20px; +} + +.preview_details .wrapper .related .wrapper .img_wrapper .new { + position: absolute; + top: 15px; + left: 0; + background-color: #fff; + color: #000000; + letter-spacing: 1px; + font-size: 16px; + font-weight: 500; + padding: 3px 10px; + text-transform: uppercase; +} + +.preview_details .wrapper .related .wrapper .img_wrapper .sale { + position: absolute; + top: 15px; + left: 0; + background-color: #000000; + color: #fff; + letter-spacing: 1px; + font-size: 16px; + font-weight: 500; + padding: 3px 10px; + text-transform: uppercase; +} + +.preview_details .wrapper .related .wrapper .img_details { + padding-top: 30px; + position: relative; +} + +.preview_details .wrapper .related .wrapper .img_details .add_to_c { + color: #dc5656; + position: absolute; + top: -10px; + opacity: 0; + font-size: 18px; + font-weight: 600; + letter-spacing: 0.5px; + transition: all, 0.3s; +} + +.preview_details .wrapper .related .wrapper .img_details .product_name { + color: #222831; + font-size: 18px; + font-weight: 600; + letter-spacing: 1px; + opacity: 1; + transition: all, 0.3s; +} + +.preview_details .wrapper .related .wrapper .img_details .rating { + display: flex; +} + +.preview_details .wrapper .related .wrapper .img_details .rating i { + max-width: 16px; + display: block; + margin-right: 4px; +} + +.preview_details .wrapper .related .wrapper .img_details .rating i img { + width: 100%; +} + +.preview_details .wrapper .related .wrapper .img_details .price { + color: #222831; + font-size: 20px; + font-weight: 600; + padding-top: 10px; +} + +.preview_details .wrapper .related .wrapper .img_details .color { + position: absolute; + bottom: 0px; + right: 10px; + z-index: 999; + opacity: 0; + transition: all, 0.6s; +} + +.preview_details .wrapper .related .wrapper .img_details .color .custom-radios div { + display: inline-block; +} + +.preview_details .wrapper .related .wrapper .img_details .color .custom-radios input[type="radio"] { + display: none; +} + +.preview_details .wrapper .related .wrapper .img_details .color .custom-radios input[type="radio"] + label { + color: #333; + font-size: 14px; +} + +.preview_details .wrapper .related .wrapper .img_details .color .custom-radios input[type="radio"] + label span { + display: flex; + justify-content: center; + align-items: center; + width: 20px; + height: 20px; + margin: -1px 4px 0 0; + vertical-align: middle; + cursor: pointer; + border-radius: 50%; + border: 2px solid #ffffff; + box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.33); + background-repeat: no-repeat; + background-position: center; + text-align: center; +} + +.preview_details .wrapper .related .wrapper .img_details .color .custom-radios input[type="radio"] + label span img { + opacity: 0; + transition: all, 0.6s; + width: 50%; +} + +.preview_details .wrapper .related .wrapper .img_details .color .custom-radios input[type="radio"]#color-1 + label span { + background-color: #2ecc71; +} + +.preview_details .wrapper .related .wrapper .img_details .color .custom-radios input[type="radio"]#color-2 + label span { + background-color: #3498db; +} + +.preview_details .wrapper .related .wrapper .img_details .color .custom-radios input[type="radio"]#color-3 + label span { + background-color: #f1c40f; +} + +.preview_details .wrapper .related .wrapper .img_details .color .custom-radios input[type="radio"]#color-4 + label span { + background-color: #e74c3c; +} + +.preview_details .wrapper .related .wrapper .img_details .color .custom-radios input[type="radio"]:checked + label span img { + opacity: 1 !important; +} + + +.cart .table_wrapper .table tbody td .quantity-button.quantity-up { + position: absolute; + height: 50%; + top: -38px; + border-bottom: 1px solid #eee; +} + +.cart .table_wrapper .table tbody td .quantity-button.quantity-down { + position: absolute; + bottom: 38px; + height: 50%; +} + +.cart .table_bottom { + margin-top: 30px; +} + +.cart .table_bottom .input-group { + width: 100%; + height: 50px; + border-radius: 0; +} + +@media screen and (max-width: 768px) { + .cart .table_bottom .input-group { + padding-top: 20px; + } +} + +.cart .table_bottom .input-group .form-control { + border-radius: 0; + height: 50px; +} + +.cart .table_bottom .input-group .input-group-text { + border-radius: 0; + background-color: #222831; + padding: 0 20px; + color: #eeeeee; + border: 1px solid; + font-weight: 700; + text-decoration: none; +} + +.cart .table_bottom .form-control:focus { + color: #495057; + background-color: #fff; + border-color: #222831; + outline: 0; + box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.25); +} + +.cart .price_details { + margin-top: 50px; +} + +.cart .price_details .total { + display: flex; + justify-content: space-between; + padding: 0 75px; +} + +.cart .price_details .bb { + margin-top: 30px; + display: grid; + grid-template-columns: 1fr 1fr; + grid-column-gap: 10px; +} + +@media screen and (max-width: 451px) { + .cart .price_details .bb { + grid-row-gap: 20px; + grid-template-columns: 1fr; + } +} + +.cart .wrap { + justify-content: space-between; + margin-top: 40px; + padding: 0 40px; +} + +.cart .wrap .ship { + padding-left: 40px; + font-weight: 600; +} + +.cart .payment { + /* Hide the browser's default radio button */ + /* Create a custom radio button */ + /* On mouse-over, add a grey background color */ + /* When the radio button is checked, add a blue background */ + /* Create the indicator (the dot/circle - hidden when not checked) */ + /* Show the indicator (dot/circle) when checked */ + /* Style the indicator (dot/circle) */ +} + +.cart .payment .c1 { + display: block; + position: relative; + padding-left: 35px; + margin-bottom: 12px; + cursor: pointer; + font-size: 15px; + user-select: none; +} + +.cart .payment .c1 input { + position: absolute; + opacity: 0; + cursor: pointer; +} + +.cart .payment .checkmark { + position: absolute; + top: 0; + left: 0; + height: 20px; + width: 20px; + background-color: #d4d4d4; + border-radius: 50%; +} + +.cart .payment .c1:hover input ~ .checkmark { + background-color: rgba(204, 204, 204, 0); +} + +.cart .payment .c1 input:checked ~ .checkmark { + background-color: #f0e76c; +} + +.cart .payment .checkmark:after { + content: ""; + position: absolute; + display: none; +} + +.cart .payment .c1 input:checked ~ .checkmark:after { + display: block; +} + +.cart .payment .c1 .checkmark:after { + top: 9px; + left: 9px; + width: 8px; + height: 8px; + border-radius: 50%; + background: rgba(255, 255, 255, 0); +} + +.checkout { + margin-bottom: 100px; +} + +.checkout #wrapper { + margin-top: 50px; + width: 100%; +} + +.checkout #main { + display: grid; + grid-template-columns: 2fr 1fr; + margin: 0 auto; + box-shadow: 1px 1px 10px 2px rgba(0, 0, 0, 0.2); + border-radius: 5px; + overflow: hidden; + background: #b3bead; + background: linear-gradient(45deg, #77b7e8 0%, #d7ebff 60%, #94b2d5 100%); + background: linear-gradient(45deg, #77b7e8 0%, #d7ebff 60%, #94b2d5 100%); + background: linear-gradient(45deg, #77b7e8 0%, #d7ebff 60%, #94b2d5 100%); +} + +@media screen and (max-width: 992px) { + .checkout #main { + grid-template-columns: 1fr 1fr; + } +} + +@media screen and (max-width: 768px) { + .checkout #main { + grid-template-columns: 1fr; + } +} + +.checkout #info { + width: auto; + padding-bottom: 44px; +} + +.checkout #info .wrap_img { + max-width: 500px; + margin: auto; +} + +@media screen and (max-width: 992px) { + .checkout #info .wrap_img { + max-width: 100%; + } +} + +.checkout #info .wrap_img img { + width: 100%; +} + +.checkout #info p { + width: 100%; + text-align: center; + line-height: 1.5em; + letter-spacing: 1px; +} + +.checkout #info #price { + width: 50%; + margin: 0 auto; + letter-spacing: 1px; +} + +.checkout #info #price h2 { + width: 100%; + text-align: center; + font-weight: 700; + color: #000; + padding-top: 10px; +} + +.checkout #payment { + width: auto; + float: right; + padding: 95px 50px 25px 0; +} + +@media screen and (max-width: 768px) { + .checkout #payment { + padding: 30px; + } +} + +.checkout #checkout { + width: 100%; +} + +.checkout #checkout input { + margin-bottom: 15px; +} + +.checkout #checkout label { + float: left; + text-transform: uppercase; + letter-spacing: 1.5px; + font-size: 0.6em; + padding: 0 0 5px 10px; +} + +.checkout #checkout #cvc-label { + margin-left: 25px; +} + +.checkout #checkout .card { + width: 29%; + margin: 0 10% 25px 10%; + border: none; + background: none; + height: 50px; + cursor: pointer; + filter: grayscale(100%); +} + +.checkout #checkout .card:focus { + filter: none; +} + +.checkout #checkout #visa { + background-image: url(/theme_boec/static/src/images/icons/visa.png); + background-repeat: no-repeat; + background-position: center center; + background-size: cover; +} + +.checkout #checkout #mastercard { + background-image: url(/theme_boec/static/src/images/icons/master.png); + background-repeat: no-repeat; + background-position: center center; + background-size: 118%; +} + +.checkout #checkout #cardnumber, +.checkout #checkout #cardholder, +.checkout #checkout #cvc { + width: 100%; + background: none; + border: 1px solid #6c7a89; + padding: 8px 19px; + border-radius: 2px; + letter-spacing: 1px; +} + +.checkout #checkout #cardnumber:focus, +.checkout #checkout #cardholder:focus, +.checkout #checkout #cvc:focus { + border: 1px solid #00b894; +} + +.checkout #checkout ::-webkit-input-placeholder { + letter-spacing: 3px; + text-transform: uppercase; + font-size: 0.9em; + color: #bdc3c7; +} + +.checkout #checkout #cardnumber { + letter-spacing: 3px; +} + +.checkout #checkout #cardnumber::-webkit-input-placeholder { + font-size: 1em; +} + +.checkout #checkout #left { + border: 1px solid #6c7a89; + border-radius: 2px; + width: 46%; + overflow: hidden; + padding: 8px 23px; + height: 43px; +} + +.checkout #checkout #left #month, +.checkout #checkout #left #year { + background: none; + border: none; + padding: 5px; + border-radius: 5px; + float: left; + font-size: 0.8em; + letter-spacing: 3px; + color: #bdc3c7; + appearance: none; +} + +.checkout #checkout #left #month option, +.checkout #checkout #left #year option { + background: #ececec; +} + +.checkout #checkout #left p { + float: left; + padding-top: 2px; + font-size: 1.2em; + color: #bdc3c7; + letter-spacing: 3px; +} + +.checkout #checkout #cvc { + width: 34%; + float: left; + margin-left: 11%; + height: 43px; +} + +.checkout #checkout .btn { + background: #222831; + border: none; + width: 100%; + padding: 12px 10px 10px 10px; + border-radius: 2px; + text-transform: uppercase; + letter-spacing: 2px; + font-weight: 400; + color: #ececec; + cursor: pointer; + margin-top: 40px; +} + +.checkout #checkout .btn:hover { + background-color: #2c3440 !important; +} + +.checkout .ff { + justify-content: space-around; +} + +/*.blog_details { + margin-top: 80px; +}*/ + +.blog_details .wrapper { + background-color: #b0dbf081; +} + +.blog_details .wrapper .top { + padding: 150px 0; +} + +@media screen and (max-width: 576px) { + .blog_details .wrapper .top { + padding: 100px 20px; + } +} + +.blog_details .wrapper .top .dlk { + text-align: center; + font-size: 40px; + font-weight: 900; +} + +@media screen and (max-width: 576px) { + .blog_details .wrapper .top .dlk { + font-size: 40px; + font-weight: 700; + } +} + +.blog_details .wrapper .top .info { + padding-top: 15px; + text-align: center; +} + +.blog_details .wrapper .top .info li { + display: inline-block; + margin-right: 25px; + font-size: 16px; + color: #222831; + position: relative; +} + +.blog_details .wrapper .top .info li::after { + position: absolute; + right: -16px; + top: 0; + content: "|"; +} + +.blog_details .wrapper .top .info li:last-child::after { + display: none !important; +} + +@media screen and (max-width: 452px) { + .blog_details .wrapper .top .info li { + font-size: 15px; + } +} + +.blog_details .blog_image { + margin-top: -125px; + margin-bottom: 50px; +} + +@media screen and (max-width: 576px) { + .blog_details .blog_image { + margin-top: -65px; + } +} + +.blog_details .blog_image .img_wrapper { + max-width: 100%; +} + +.blog_details .blog_image .img_wrapper img { + width: 100%; + border-radius: 5px; +} + +.blog_details .details { + padding: 0 40px; +} + +@media screen and (max-width: 992px) { + .blog_details .details { + padding: 0; + } +} + +.blog_details .details .cover { + margin-top: 80px; + padding: 0 70px; + display: flex; +} + +@media screen and (max-width: 992px) { + .blog_details .details .cover { + padding: 0; + display: block; + } +} + +@media screen and (max-width: 768px) { + .blog_details .details .cover { + margin-top: 50px; + } +} + +.blog_details .details .cover .social { + margin-right: 15px; +} + +.blog_details .details .cover .social .shr { + color: #000000; + font-size: 25px; + font-weight: 700; + text-transform: uppercase; +} + +@media screen and (max-width: 992px) { + .blog_details .details .cover .social .shr { + text-align: center; + } +} + +.blog_details .details .cover .social .blog_icon { + padding-top: 10px; +} + +@media screen and (max-width: 992px) { + .blog_details .details .cover .social .blog_icon { + display: flex; + justify-content: center; + margin-bottom: 30px; + } +} + +.blog_details .details .cover .social .blog_icon a { + display: block; + color: #000000; + margin-right: 15px; +} + +@media screen and (max-width: 992px) { + .blog_details .details .cover .social .blog_icon a { + margin-right: 22px; + } +} + +.blog_details .details .cover .social .blog_icon a span { + height: 41px; + width: 41px; + font-size: 19px; + padding-top: 12px; + border-radius: 50%; + text-align: center; + margin-bottom: 15px; + color: #fff; +} + +.blog_details .details .cover .social .blog_icon a:nth-child(1) span { + color: white !important; + background: #37b4e6 !important; +} + +.blog_details .details .cover .social .blog_icon a:nth-child(2) span { + color: #fff !important; + background-color: #ff3434 !important; +} + +.blog_details .details .cover .social .blog_icon a:nth-child(3) span { + background-color: #055597 !important; + color: #fff !important; +} + +.blog_details .details .cover .social .blog_icon a:nth-child(4) span { + background-color: rgba(202, 40, 129, 0.801) !important; + color: #fff !important; +} + +.blog_details .details .cover .words { + padding: 30px 30px; +} + +@media screen and (max-width: 992px) { + .blog_details .details .cover .words { + padding: 30px 0; + } +} + +.blog_details .details .cover .words .mt { + margin-bottom: 50px; +} + +.blog_details .details .cover .words p { + font-size: 17px; + line-height: 32px; +} + +.blog_details .details .cover .words .box { + background-color: #b0dbf081; + border-radius: 5px; + padding: 40px 40px; + margin-top: 80px; + position: relative; + margin-bottom: 40px; +} + +.blog_details .details .cover .words .box .blog__details__quote { + position: absolute; + top: -24px; +} + +.blog_details .details .cover .words .box .blog__details__quote span { + color: #fff; + background-color: #dc5656; + font-size: 20px; + height: 53px; + width: 53px; + padding-top: 15px; + border-radius: 50%; + text-align: center; +} + +.blog_details .details .cover .words .box p { + margin-top: 20px; + color: #000000; + font-size: 18px; + font-weight: 600; + font-style: italic; + line-height: 30px; +} + +.blog_details .details .cover .words .name { + border: 1px solid; + border-color: transparent; + border-top-color: #ccc !important; +} + +.blog_details .details .cover .words .name .wrapp { + margin-top: 40px; + justify-content: space-between; +} + +@media screen and (max-width: 768px) { + .blog_details .details .cover .words .name .wrapp { + display: block !important; + } +} + +.blog_details .details .cover .words .name .wrapp .p_img { + display: flex; + align-items: center; +} + +@media screen and (max-width: 768px) { + .blog_details .details .cover .words .name .wrapp .p_img { + justify-content: center !important; + } +} + +.blog_details .details .cover .words .name .wrapp .p_img .img_wrapper { + max-width: 50px; + margin-right: 20px; +} + +.blog_details .details .cover .words .name .wrapp .p_img .img_wrapper img { + width: 100%; +} + +.blog_details .details .cover .words .name .wrapp .p_img .nm { + color: #222831; + font-size: 18px; + font-weight: 600; + text-transform: uppercase; +} + +@media screen and (max-width: 768px) { + .blog_details .details .cover .words .name .wrapp .hash { + text-align: center; + margin-top: 22px; + } +} + +.blog_details .details .cover .words .name .wrapp .hash a { + text-decoration: none; +} + +.blog_details .details .cover .words .name .wrapp .hash a span { + color: #222831; + font-size: 18px; + font-weight: 600; +} + +.blog_details .details .cover .words .navs { + display: grid; + grid-template-columns: 1fr 1fr; + grid-column-gap: 40px; + margin-top: 60px; +} + +@media screen and (max-width: 768px) { + .blog_details .details .cover .words .navs { + grid-row-gap: 40px; + grid-template-columns: 1fr; + } +} + +.blog_details .details .cover .words .navs a { + text-decoration: none; + color: #ccc; +} + +.blog_details .details .cover .words .navs a span { + color: #ccc; + font-size: 20px; + margin-right: 10px; +} + +.blog_details .details .cover .words .navs a p { + color: #222831; + font-size: 20px; + font-weight: 600; + line-height: 30px; + text-transform: capitalize; + margin-top: 20px; +} + +.blog_details .details .cover .words .navs a .wp { + border: 1px solid; + border-color: #ccc !important; + padding: 20px 20px; +} + +.blog_details .details .cover .words .post_replay { + margin-top: 70px; +} + +.blog_details .details .cover .words .post_replay .replay { + text-align: center; + margin-bottom: 40px; +} + +.blog_details .details .cover .words .post_replay .replay .main { + color: #222831; + text-transform: capitalize; + letter-spacing: 1px; + font-size: 30px; + font-weight: 700; +} + +@media screen and (max-width: 768px) { + .blog_details .details .cover .words .post_replay form { + margin-top: 70px; + } +} + +.blog_details .details .cover .words .post_replay form .form-group { + margin-bottom: 30px; +} + +@media screen and (max-width: 992px) { + .blog_details .details .cover .words .post_replay form .form-group { + margin-bottom: 15px; + } +} + +.blog_details .details .cover .words .post_replay form .form-group .form-control { + border-radius: 0; + height: calc(3.5em + 0.95rem + 2px); + padding: 0.575rem 0.75rem; + box-shadow: none !important; +} + +@media screen and (max-width: 992px) { + .blog_details .details .cover .words .post_replay form .form-group .form-control { + height: calc(2.5em + 0.95rem + 2px); + } +} + +.blog_details .details .cover .words .post_replay form .form-group .form-control:focus { + color: #5f5f5f; + background-color: #fff; + border-color: #467dbd; + outline: 0; +} + +.blog_details .details .cover .words .post_replay form textarea { + padding: 30px 20px; +} + +.blog_details .details .cover .words .post_replay form .txt { + border: 1px solid; + border-color: transparent; + border-top-color: #ccc !important; + border-right-color: #ccc !important; + border-bottom-color: #ccc !important; + border-left-color: #ccc !important; +} + +.blog_details .details .cover .words .post_replay form .txt:focus { + color: #5f5f5f; + background-color: #fff; + border-color: #fa3737 !important; + outline: 0; +} +/* Extra added styles for odoo */ + +.btn-banner { + background-color: #222831 !important; + border-color: #222831 !important; + padding: 14px 25px !important; + letter-spacing: 2px; + font-size: 18px !important; + color: #fff !important; +} +.btn-banner span { + padding-left: 10px; +} + +.btn-banner:hover { + background-color: #2c3440 !important; + border: none; +} +header .top_nav .wrapper .left .sign_in .nav-item .dropdown-menu a { + color: #212529; +} +header .top_nav .wrapper .left .currency .btn-secondary { + background-color: transparent; + color: white; + padding-top: 0px; + padding-left: 0px; + font-size: 15px; + border: none; +} +.contact .contact_main .contact_details .address .wrapper .cc span { + color: #222831; + font-size: 28px; + font-weight: 700; + padding-bottom: 15px; +} +.contact .contact_main .contact_details .address .wrapper .info span { + font-size: 18px; +} +.contact .contact_main .contact_details .address .wrapper p span { + color: #3d3d3d; + font-size: 18px; +} +#oe_structure_website_form_contact_us_thanks_1 { + margin-top: 100px; +} +.Shop_details .wrapper .breadcrumb .breadcrumb-item span { + font-size: 16px; +} +#o-carousel-product .carousel-indicators li { + width: auto; + height: 100px; + top: 20px; + border-radius: 3px; +} +.o_image_64_contain { + width: auto; + height: 100px; + object-fit: contain; + border-radius: 3px; +} +#o-carousel-product .carousel-indicators li.active { + border: 1px solid #000; +} + +.preview_details .wrapper .p_head span { + text-align: center; + color: #222831; + font-weight: 700; + padding-bottom: 0px; + font-size: 1.75rem; +} + + +.preview_details .wrapper .nw .price * { + color: #222831; + font-size: 40px; + font-weight: 600; + padding-top: 0px; + margin-right: 0px; +} +.preview_details .wrapper .types ul li { + color: #b7b7b7; + font-size: 16px; + font-weight: normal !important; +} +.preview_details .wrapper .types ul li span { + color: #000000; + font-size: 18px; + font-weight: 700; + padding-bottom: 10px; +} +.preview_details .wrapper .add_to button { + font-size: 18px; + color: #000000; + text-transform: uppercase; + text-decoration: none; + letter-spacing: 2px; + margin-right: 20px; +} +.css_attribute_color { + border: 2px solid white; + border-radius: 50%; + box-shadow: 0 1px 3px 0 rgb(0 0 0 / 33%); + height: 40px; + width: 40px; +} +.js_add_cart_variants .css_attribute_color.active { + border: 3px ridge #fff; +} +.css_attribute_color.active span { + margin: -28px 0px 0px -3px; +} +.css_attribute_color span { + display: flex; + justify-content: center; + align-items: center; + width: 40px; + height: 40px; + margin: -30px 4px 0px -1px; + vertical-align: middle; + cursor: pointer; + border-radius: 50%; + border: 2px solid #ffffff; + box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.33); + background-repeat: no-repeat; + background-position: center; + text-align: center; +} +.css_attribute_color span img { + opacity: 0; + transition: all, 0.6s; + width: 50%; +} +.css_attribute_color.active span img { + opacity: 1; +} +.js_add_cart_variants .variant_attribute .attribute_name{ + font-size: 25px; + font-weight: 700; + margin-right: 15px; + font-style: normal !important; +} +.oe_product_cart { + border: 1px solid transparent !important; + width: 250px; +} +.oe_product_cart .oe_product_image { + height: 255px; +} +.oe_product_cart .oe_product_image img { + max-height: 80%; +} + +.oe_product_cart:hover { + box-shadow: 0 0 20px 0 transparent; +} +.oe_product_cart:hover .o_wsale_product_information { + background-color: transparent !important; +} +.oe_product_cart .o_wsale_product_information .o_wsale_product_information_text h6{ + color: #222831; + font-weight: 600; + letter-spacing: 1px; + opacity: 1; + transition: all, 0.3s; + text-align: left; +} +.oe_product_cart .o_wsale_product_information .o_wsale_product_information_text h6 a{ + color: #000 !important; + text-decoration: none; + font-size: 18px; +} +.o_wsale_product_information_text span[data-oe-type="monetary"], +.o_wsale_product_information_text span[data-oe-type="monetary"] .oe_currency_value, +.radio_input_value .badge-secondary{ + color: #222831; + font-size: 20px; + font-weight: 600; + padding-top: 10px; +} +.o_wsale_product_information_text .product_price{ + text-align: left; +} +.add_to_c { + color: #dc5656; + position: absolute; + top: -10px; + opacity: 0; + font-size: 18px; + font-weight: 600; + letter-spacing: 0.5px; + transition: all, 0.3s; +} +.add_to_c a { + color: #dc5656; + top: -10px; + font-size: 18px; + font-weight: 600; + letter-spacing: 0.5px; + transition: all, 0.3s; +} +.add_to_c a:hover { + text-decoration: none; + color: #dc5656; +} +.oe_product_cart:hover .o_wsale_product_information_text h6 { + opacity: 0 !important; +} +.oe_product_cart:hover .add_to_c { + top: 10px !important; + opacity: 1 !important; +} +.oe_product_cart:hover .three { + right: 15% !important; + opacity: 1 !important; +} +.oe_product_cart:hover .three ul { + display: block !important; +} +.oe_product_cart:hover .color { + opacity: 1 !important; +} +.three { + width: 100%; + height: 100%; + position: absolute; + top: -75px; + display: flex; + justify-content: end; + align-items: center; + z-index: 3; + right: 0; + transition: all, 0.3s; + opacity: 0; +} + +.three ul { + padding-left: 0; + display: none; + position: relative; +} + +.three ul li { + background: #fff; + padding: 5px; + margin-bottom: 5px; +} + +.three ul li :last-child { + margin-bottom: 0; +} + +.three ul li a { + color: #000000; + text-decoration: none; +} + +.three ul li span { + font-size: 20px; +} +.three ul li button { + color: #000; + background-color: transparent; + border: 0px; +} +.color { + position: absolute; + bottom: 0px; + right: 10px; + z-index: 999; + opacity: 0; + transition: all, 0.6s; +} + +.color .custom-radios div { + display: inline-block; +} + +.color .custom-radios input[type="radio"] { + display: none; +} + +.color .custom-radios input[type="radio"] + label { + color: #333; + font-size: 14px; +} + +.color .custom-radios input[type="radio"] + label span { + display: flex; + justify-content: center; + align-items: center; + width: 20px; + height: 20px; + margin: -1px 4px 0 0; + vertical-align: middle; + cursor: pointer; + border-radius: 50%; + border: 2px solid #ffffff; + box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.33); + background-repeat: no-repeat; + background-position: center; + text-align: center; +} + +.color .custom-radios input[type="radio"] + label span img { + opacity: 0; + transition: all, 0.6s; + width: 50%; +} + +.color .custom-radios input[type="radio"]#color-1 + label span { + background-color: #2ecc71; +} + +.color .custom-radios input[type="radio"]#color-2 + label span { + background-color: #3498db; +} + +.color .custom-radios input[type="radio"]#color-3 + label span { + background-color: #f1c40f; +} + +.color .custom-radios input[type="radio"]#color-4 + label span { + background-color: #e74c3c; +} + +.color .custom-radios input[type="radio"]:checked + label span img { + opacity: 1 !important; +} + +.products_pager .pagination .page-item.active .page-link { + color: #eeeeee; + background-color: #699cce; +} + +.products_pager .pagination .page-item .page-link { + color: #333333; + background-color: #eeeeee; + border: 0; + font-size: 15px; + font-weight: 600; + border: 2px solid; + border: 0; + border-radius: 0; + border-color: #e2e2e2; + height: 35px; + box-shadow: none; + padding: 8px 10px; +} + +.products_pager .pagination .page-item .page-link:hover { + color: #eeeeee; + background-color: #699cce; +} +.btn-sort { + width: 250px; + height: 40px; + border-top: #222 solid 1px !important; + border-radius: 0px !important; +} +#item-boec { + display: block; + width: 100%; + padding: .75rem 2.0rem; + clear: both; + font-weight: 400; + color: #212529; + text-align: inherit; + white-space: nowrap; + background-color: white; + border: 0; + border-top: #222 solid 1px; +} +#item-boec:hover { + background: #bdbdbd; + text-decoration: none; + color: #212529; +} +.dropdown_sorty_by .dropdown-menu { + border: 0px; +} +.sidebar .wrapper .box .accordion .card .card-header .btn-link strong { + color: #222831; + font-size: 18px; + font-weight: 700; + text-decoration: none; + text-transform: uppercase; + padding-left: 0; +} + +.oe_cart .quantity { + top: 10px; + left: 10px; + position: relative; +} + +@media screen and (max-width: 576px) { + .oe_cart .quantity { + padding-left: 15px; + left: 10px; + } +} + +.oe_cart .quantity input[type="number"]::-webkit-inner-spin-button, +.oe_cart .quantity input[type="number"]::-webkit-outer-spin-button { + -webkit-appearance: none; + margin: 0; +} + +.oe_cart .quantity input[type="number"] { + -moz-appearance: textfield; + font-size: 18px; + font-weight: 600; +} + +.oe_cart .quantity input { + width: 45px; + height: 42px; + line-height: 1.65; + display: block; + padding: 0; + margin: 0; + padding-left: 20px; + border: 1px solid #eee; + border-radius: 0; +} + +.oe_cart .quantity input:focus { + outline: 0; + border-color: #eee; + box-shadow: 0 0 0 0rem rgba(0, 0, 0, 0); +} + +.oe_cart .quantity-nav { + float: left; + position: relative; + height: 42px; + left: 11px; + top: 7px; +} + +.oe_cart .quantity-button { + position: relative; + cursor: pointer; + border-left: 1px solid #eee; + width: 20px; + text-align: center; + color: #333; + font-size: 13px; + line-height: 1.7; + transform: translateX(-100%); + -o-user-select: none; + user-select: none; +} + +.oe_cart .quantity-button.quantity-up { + position: absolute; + height: 50%; + top: -38px; + border-bottom: 1px solid #eee; +} + +.oe_cart .quantity-button.quantity-down { + position: absolute; + bottom: 38px; + height: 50%; +} +.oe_cart table#cart_products td, +.oe_cart table#cart_products th { + padding: 40px; +} + +.oe_cart .table thead th { + vertical-align: middle !important; + font-size: 22px; + border-top: transparent; + border-bottom: 1px !important; + padding-bottom: 18px; +} +.oe_cart .table-striped tbody tr:nth-of-type(2n+1) { + background-color: transparent !important; +} +.oe_cart table#cart_products { + margin-bottom: 0; + color: #3d3d3d; +} +.oe_cart #cart_products .td-product_name a { + text-decoration: none; +} +.oe_cart #cart_products .td-product_name strong, +.oe_cart #cart_products .td-price span { + font-size: 18px; + color: #222831; + font-weight: 600; +} + +.website_blog #o_wblog_posts_loop .o_record_cover_container { + height: 230px !important; + width: 350px !important; +} +#boec_blog_info i time { + font-size: 16px; + margin-bottom: 15px; + font-weight: lighter !important; + font-family: "Font Awesome 5 Free"; +} +.blog .wrapper .card-deck .card .card-body .card-title a { + font-size: 20px; + font-weight: 700; +} +#o_wblog_post_search .sidebar .wrapper .box input[type="text"] { + padding: 5px; + font-size: 15px; + border: 1px solid #ccc; + float: left; + width: 100%; + background: #ffffff; + margin-left: 20px; +} +#o_wblog_post_search .sidebar .wrapper .box button { + padding: 5px; + background: transparent; + color: #e2e2e2; + font-size: 15px; + border: 1px solid #ccc; + border-left: none; + cursor: pointer; + position: absolute; + right: 0; + z-index: 999; +} +#o_wblog_post_search .sidebar .wrapper .box button:hover { + background: #242452; +} +.blog_details .wrapper .top .dlk span { + text-align: center; + font-size: 40px; + font-weight: 900; +} + +@media screen and (max-width: 576px) { + .blog_details .wrapper .top .dlk span { + font-size: 40px; + font-weight: 700; + } +} +.blog_details .wrapper .top .info span { + padding-top: 15px; + text-align: center; + display: inline-block; + margin-right: 25px; + font-size: 16px; + color: #222831; + position: relative; +} + +@media screen and (max-width: 452px) { + .blog_details .wrapper .top .info span { + font-size: 15px; + } +} +.blog_details .blog_image .img_wrapper .o_record_cover_container .o_record_cover_component { + width: 100%; + height: auto; + border-radius: 5px; +} + +.social { + /* margin-right: 12px; */ + margin-left: -100px; + position: absolute; + margin-top: 0px; +} + +.social .shr { + color: #000000; + font-size: 25px; + font-weight: 500; + text-transform: uppercase; +} + +@media screen and (max-width: 992px) { + .social .shr { + text-align: center; + } +} + +.social .blog_icon { + padding-top: 0px; +} + +@media screen and (max-width: 992px) { + .social .blog_icon { + display: flex; + justify-content: center; + margin-bottom: 30px; + } +} + +.social .blog_icon a { + display: block; + color: #000000; + margin-right: 15px; +} + +@media screen and (max-width: 992px) { + .social .blog_icon a { + margin-right: 22px; + } +} + +.social .blog_icon a span { + height: 41px; + width: 41px; + font-size: 19px; + padding-top: 12px; + border-radius: 50%; + text-align: center; + margin-bottom: 15px; + color: #fff; +} + +.social .blog_icon a:nth-child(1) span { + color: white !important; + background: #37b4e6 !important; +} + +.social .blog_icon a:nth-child(2) span { + color: #fff !important; + background-color: #ff3434 !important; +} + +.social .blog_icon a:nth-child(3) span { + background-color: #055597 !important; + color: #fff !important; +} + +.social .blog_icon a:nth-child(4) span { + background-color: rgba(202, 40, 129, 0.801) !important; + color: #fff !important; +} +#o_wblog_post_main #o_wblog_post_content .breadcrumb { + margin-left: -100px; +} +.website_blog #o_wblog_post_content .o_wblog_read_text { + margin-top: 25px; +} +.website_blog #o_wblog_post_content .o_wblog_read_text p { + font-size: 17px; + line-height: 32px; +} +.website_blog #o_wblog_post_content .o_wblog_read_text .lead { + font-size: 26px; + line-height: 34px; + font-weight: 400; +} +.website_blog #o_wblog_post_content .o_wblog_read_text blockquote { + background-color: #b0dbf081; + border-radius: 5px; + padding: 40px 40px; + margin-top: 80px; + position: relative; + margin-bottom: 40px; + border-color: #dc5656; +} +.website_blog #o_wblog_post_content .o_wblog_read_text blockquote em { + margin-top: 20px; + color: #000000; + font-size: 18px; + font-weight: 600; + font-style: italic; + line-height: 30px; +} +.website_blog #o_wblog_post_content a, +.website_blog #o_wblog_post_content div { + color: #222831; + font-size: 18px; +} +.website_blog #o_wblog_post_content .border { + border: 1px solid transparent !important; +} +#o_wblog_post_main #o_wblog_post_comments .o_portal_chatter .o_portal_chatter_composer .o_portal_chatter_composer_form .form-control { + border: 1px solid; + border-color: #ccc; + border-radius: 0px; +} +#o_wblog_post_main #o_wblog_post_comments .o_portal_chatter .o_portal_chatter_composer .o_portal_chatter_composer_form .form-control:focus { + color: #5f5f5f; + background-color: #fff; + border-color: #fa3737 !important; + outline: 0; + box-shadow: 0 0 0 .0rem rgba(0, 0, 0, 0); +} +#o_wblog_post_main #o_wblog_post_comments .o_portal_chatter .o_portal_chatter_composer .o_portal_chatter_composer_form .o_portal_chatter_composer_btn { + background-color: #222831 !important; + border-color: #222831; + letter-spacing: 2px; + color: #fff; + border-radius: 0; +} + +.btn-size { + background-color: #fff !important; + border-color: #222831 !important; + border: 2px solid !important; + letter-spacing: 0px; +} + +.btn-size span { + padding-left: 0px; + color: #222831; +} +.btn-size:hover { + background-color: #222831 !important; + border: 2px solid #222831 !important; +} +.btn-size:hover span { + color: #fff !important; +} +.badge-primary { + background-color: #2098d1 !important; +} +@media screen and (max-width: 576px) { + .social { + margin-left: 0px; + position: inherit; + margin-top: 0px; + } +} +@media screen and (max-width: 452px) { + .social { + margin-left: 0px; + position: inherit; + margin-top: 0px; + } +} +@media screen and (max-width: 768px) { + .social { + margin-left: 0px; + position: inherit; + margin-top: 0px; + } +} +@media screen and (max-width: 992px) { + .social { + margin-left: 0px; + position: inherit; + margin-top: 0px; + } +} +@media screen and (max-width: 576px) { + .oe_cart table#cart_products td, + .oe_cart table#cart_products th { + padding: 20px; + } + .cart { + margin-top: 0px; + } + .cart .table_bottom { + margin-top: 0px; + } +} +@media screen and (max-width: 452px) { + .oe_cart table#cart_products td, + .oe_cart table#cart_products th { + padding: 10px; + } + .cart { + margin-top: 0px; + } + .cart .table_bottom { + margin-top: 0px; + } +} +.o_ribbon_left { + position: absolute; + top: 15px; + left: 3.5px; + bottom: auto; + right: auto; + padding: 3px 10px; + transform: none; + transform-origin: top right; + background-color: #ff; + letter-spacing: 1px; + font-size: 16px; + font-weight: 500; + text-transform: uppercase; +} +span.o_ribbon.bg-primary.o_ribbon_left { + background-color: #fff !important; + color: #000 !important; +} +span.o_ribbon.bg-success.o_ribbon_left { + background-color: #000 !important; + color: #fff !important; +} +header#top { + z-index: 999; + position: inherit; +} +.tab_product .tab-content .tab-pane .wrapper .img_details .product_name span { + color: #222831; + font-size: 18px; + font-weight: 600; + letter-spacing: 1px; + opacity: 1; + transition: all, 0.3s; +} +.tab_product .tab-content .tab-pane .wrapper .img_details .price span { + color: #222831; + font-size: 20px; + font-weight: 600; + padding-top: 10px; +} +.coupon_form .input-group { + width: 100%; + height: 50px; + border-radius: 0; +} +.coupon_form .input-group .form-control { + border-radius: 0; + height: 50px; +} +.coupon_form .input-group .input-group-text { + border-radius: 0; + background-color: #222831; + padding: 0 20px; + color: #eeeeee; + border: 1px solid; + font-weight: 700; + text-decoration: none; +} + +.coupon_form .form-control:focus { + color: #495057; + background-color: #fff; + border-color: #222831; + outline: 0; + box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.25); +} + +.sidebar .wrapper .sidebar__filter .price_wrapper { + display: flex; +} + +.sidebar .wrapper .sidebar__filter .price_wrapper p { + align-items: center; + margin: 0; + display: flex; + padding-right: 2%; + font-weight: bold; +} +.sidebar .wrapper .sidebar__filter .price_wrapper span { + align-items: center; + margin-left: 5%; + display: flex; + padding-right: 5%; + font-weight: bold; +} +.sidebar .wrapper .sidebar__filter { + position: relative; + margin-bottom: 0px; +} + +.sidebar .wrapper .sidebar__filter .section-title { + margin-bottom: 50px; +} + +.sidebar .wrapper .sidebar__filter .section-title .borderd_header { + text-transform: uppercase; +} + +.sidebar .wrapper .sidebar__filter .section-title h4 { + font-size: 18px; +} +.sidebar .wrapper .sidebar__filter #slider-range { + margin-bottom: 30px; + background-color: #6c6a74; + border: none; + height: 8px; +} + +.sidebar .wrapper .sidebar__filter #slider-range .ui-state-default, +.sidebar .wrapper .sidebar__filter #slider-range .ui-widget-content .ui-state-default { + background-color: #3a3a3a; + border: none; + height: 18px; + width: 18px; + top: -4.8px; + position: absolute; +} + +.sidebar .wrapper .sidebar__filter #slider-range.ui-slider-horizontal .ui-slider-range { + top: 0; + background-color: #031B09 !important; + left: 0%; + width: 60%; + position: absolute; + height: 8px; +} +.sidebar .wrapper .sidebar__filter .price_wrapper .price_filter_button { + background-color: transparent !important; + color: #031B09 !important; + border-radius: 0 !important; + font-weight: 550; + font-size: 12px; + border: 2px solid !important; +} + +.sidebar .wrapper .sidebar__filter .price_wrapper .price_filter_button:hover { + border-color: #031B09 !important; + color: #fff !important; + background: #031B09 !important; +} +.deal_product .tag .price span { + font-size: 20px; + font-weight: 600; +} + + +.demo_product .col-md-12.col-12.o_colored_level.col-lg-6 .dp_wrapper, +.demo_product .col-md-12.col-12.o_colored_level.col-lg-4 .dp_wrapper, +.demo_product .col-md-12.col-12.o_colored_level.col-lg-3 .dp_wrapper, +.demo_product .col-md-12.col-12.o_colored_level.col-lg-2 .dp_wrapper, +.demo_product .col-md-12.col-12.o_colored_level.col-lg-2.offset-lg-1 .dp_wrapper { + margin-top: 20px; +} +.demo_product .col-12.o_colored_level.col-lg-6 .dp_wrapper .dp_img { + max-width: 440px; + float: initial; +} +.demo_product .col-md-12.col-12.o_colored_level.col-lg-6 .dp_wrapper .dp_details, +.demo_product .col-md-12.col-12.o_colored_level.col-lg-4 .dp_wrapper .dp_details, +.demo_product .col-md-12.col-12.o_colored_level.col-lg-3 .dp_wrapper .dp_details, +.demo_product .col-md-12.col-12.o_colored_level.col-lg-2 .dp_wrapper .dp_details, +.demo_product .col-md-12.col-12.o_colored_level.col-lg-2.offset-lg-1 .dp_wrapper .dp_details { + position: initial; + padding-bottom: 20px; +} +.demo_product .col-12.o_colored_level.col-lg-6 .dp_wrapper2, +.demo_product .col-12.o_colored_level.col-lg-4 .dp_wrapper2, +.demo_product .col-12.o_colored_level.col-lg-3 .dp_wrapper2, +.demo_product .col-12.o_colored_level.col-lg-2 .dp_wrapper2 { + margin-top: 20px; +} +.demo_product .col-12.o_colored_level.col-lg-6 .dp_wrapper2 .dp_details, +.demo_product .col-12.o_colored_level.col-lg-4 .dp_wrapper2 .dp_details, +.demo_product .col-12.o_colored_level.col-lg-3 .dp_wrapper2 .dp_details, +.demo_product .col-12.o_colored_level.col-lg-2 .dp_wrapper2 .dp_details { + padding-top: 0; + padding-bottom: 20px; +} +.demo_product .col-md-12.col-12.o_colored_level.col-lg-4 .dp_wrapper3, +.demo_product .col-md-12.col-12.o_colored_level.col-lg-3 .dp_wrapper3, +.demo_product .col-md-12.col-12.o_colored_level.col-lg-2 .dp_wrapper3 { + margin-top: 20px; +} +.demo_product .col-md-12.col-12.o_colored_level.col-lg-4 .dp_wrapper3 .dp_details, +.demo_product .col-md-12.col-12.o_colored_level.col-lg-3 .dp_wrapper3 .dp_details, +.demo_product .col-md-12.col-12.o_colored_level.col-lg-2 .dp_wrapper3 .dp_details { + position: initial; + padding-bottom: 20px; +} +.demo_product .col-md-12.col-12.o_colored_level.col-lg-4 .dp_wrapper3 .dp_img, +.demo_product .col-md-12.col-12.o_colored_level.col-lg-3 .dp_wrapper3 .dp_img, +.demo_product .col-md-12.col-12.o_colored_level.col-lg-2 .dp_wrapper3 .dp_img { + padding-bottom: 0px; +} +.banner_added { + display: block; +} +.banner_added.banner_hide { + display: none; +} +#o-carousel-product .o_carousel_product_indicators .carousel-indicators{ + justify-content:center; +} +/* # sourceMappingURL=style.css.map */ diff --git a/theme_boec/static/src/css/style.css.map b/theme_boec/static/src/css/style.css.map new file mode 100644 index 000000000..52bbcd123 --- /dev/null +++ b/theme_boec/static/src/css/style.css.map @@ -0,0 +1,38 @@ +{ + "version": 3, + "mappings": "AACA,OAAO,CAAC,oJAAI;AEDZ,4EAA4E;AAE5E;gFACgF;AAEhF;;;GAGG;AAEF,AAAA,IAAI,CAAC;EACJ,WAAW,EAAE,IAAI;EAAE,OAAO;EAC1B,wBAAwB,EAAE,IAAI;EAAE,OAAO;CACxC;;AAED;gFACgF;AAEhF;;GAEG;AAEH,AAAA,IAAI,CAAC;EACH,MAAM,EAAE,CAAC;CACV;;AAED;;GAEG;AAEH,AAAA,IAAI,CAAC;EACH,OAAO,EAAE,KAAK;CACf;;AAED;;;GAGG;AAEH,AAAA,EAAE,CAAC;EACD,SAAS,EAAE,GAAG;EACd,MAAM,EAAE,QAAQ;CACjB;;AAED;gFACgF;AAEhF;;;GAGG;AAEH,AAAA,EAAE,CAAC;EACD,UAAU,EAAE,WAAW;EAAE,OAAO;EAChC,MAAM,EAAE,CAAC;EAAE,OAAO;EAClB,QAAQ,EAAE,OAAO;EAAE,OAAO;CAC3B;;AAED;;;GAGG;AAEH,AAAA,GAAG,CAAC;EACF,WAAW,EAAE,oBAAoB;EAAE,OAAO;EAC1C,SAAS,EAAE,GAAG;EAAE,OAAO;CACxB;;AAED;gFACgF;AAEhF;;GAEG;AAEH,AAAA,CAAC,CAAC;EACA,gBAAgB,EAAE,WAAW;CAC9B;;AAED;;;GAGG;AAEH,AAAA,IAAI,CAAA,AAAA,KAAC,AAAA,EAAO;EACV,aAAa,EAAE,IAAI;EAAE,OAAO;EAC5B,eAAe,EAAE,SAAS;EAAE,OAAO;EACnC,eAAe,EAAE,gBAAgB;EAAE,OAAO;CAC3C;;AAED;;GAEG;AAEH,AAAA,CAAC;AACD,MAAM,CAAC;EACL,WAAW,EAAE,MAAM;CACpB;;AAED;;;GAGG;AAEH,AAAA,IAAI;AACJ,GAAG;AACH,IAAI,CAAC;EACH,WAAW,EAAE,oBAAoB;EAAE,OAAO;EAC1C,SAAS,EAAE,GAAG;EAAE,OAAO;CACxB;;AAED;;GAEG;AAEH,AAAA,KAAK,CAAC;EACJ,SAAS,EAAE,GAAG;CACf;;AAED;;;GAGG;AAEH,AAAA,GAAG;AACH,GAAG,CAAC;EACF,SAAS,EAAE,GAAG;EACd,WAAW,EAAE,CAAC;EACd,QAAQ,EAAE,QAAQ;EAClB,cAAc,EAAE,QAAQ;CACzB;;AAED,AAAA,GAAG,CAAC;EACF,MAAM,EAAE,OAAO;CAChB;;AAED,AAAA,GAAG,CAAC;EACF,GAAG,EAAE,MAAM;CACZ;;AAED;gFACgF;AAEhF;;GAEG;AAEH,AAAA,GAAG,CAAC;EACF,YAAY,EAAE,IAAI;CACnB;;AAED;gFACgF;AAEhF;;;GAGG;AAEH,AAAA,MAAM;AACN,KAAK;AACL,QAAQ;AACR,MAAM;AACN,QAAQ,CAAC;EACP,WAAW,EAAE,OAAO;EAAE,OAAO;EAC7B,SAAS,EAAE,IAAI;EAAE,OAAO;EACxB,WAAW,EAAE,IAAI;EAAE,OAAO;EAC1B,MAAM,EAAE,CAAC;EAAE,OAAO;CACnB;;AAED;;;GAGG;AAEH,AAAA,MAAM;AACN,KAAK,CAAC;EAAE,OAAO;EACb,QAAQ,EAAE,OAAO;CAClB;;AAED;;;GAGG;AAEH,AAAA,MAAM;AACN,MAAM,CAAC;EAAE,OAAO;EACd,cAAc,EAAE,IAAI;CACrB;;AAED;;GAEG;AAEH,AAAA,MAAM;CACN,AAAA,IAAC,CAAK,QAAQ,AAAb;CACD,AAAA,IAAC,CAAK,OAAO,AAAZ;CACD,AAAA,IAAC,CAAK,QAAQ,AAAb,EAAe;EACd,kBAAkB,EAAE,MAAM;CAC3B;;AAED;;GAEG;AAEH,AAAA,MAAM,AAAA,kBAAkB;CACxB,AAAA,IAAC,CAAK,QAAQ,AAAb,CAAc,kBAAkB;CACjC,AAAA,IAAC,CAAK,OAAO,AAAZ,CAAa,kBAAkB;CAChC,AAAA,IAAC,CAAK,QAAQ,AAAb,CAAc,kBAAkB,CAAC;EAChC,YAAY,EAAE,IAAI;EAClB,OAAO,EAAE,CAAC;CACX;;AAED;;GAEG;AAEH,AAAA,MAAM,AAAA,eAAe;CACrB,AAAA,IAAC,CAAK,QAAQ,AAAb,CAAc,eAAe;CAC9B,AAAA,IAAC,CAAK,OAAO,AAAZ,CAAa,eAAe;CAC7B,AAAA,IAAC,CAAK,QAAQ,AAAb,CAAc,eAAe,CAAC;EAC7B,OAAO,EAAE,qBAAqB;CAC/B;;AAED;;GAEG;AAEH,AAAA,QAAQ,CAAC;EACP,OAAO,EAAE,qBAAqB;CAC/B;;AAED;;;;;GAKG;AAEH,AAAA,MAAM,CAAC;EACL,UAAU,EAAE,UAAU;EAAE,OAAO;EAC/B,KAAK,EAAE,OAAO;EAAE,OAAO;EACvB,OAAO,EAAE,KAAK;EAAE,OAAO;EACvB,SAAS,EAAE,IAAI;EAAE,OAAO;EACxB,OAAO,EAAE,CAAC;EAAE,OAAO;EACnB,WAAW,EAAE,MAAM;EAAE,OAAO;CAC7B;;AAED;;GAEG;AAEH,AAAA,QAAQ,CAAC;EACP,cAAc,EAAE,QAAQ;CACzB;;AAED;;GAEG;AAEH,AAAA,QAAQ,CAAC;EACP,QAAQ,EAAE,IAAI;CACf;;AAED;;;GAGG;CAEH,AAAA,AAAA,IAAC,CAAK,UAAU,AAAf;CACD,AAAA,IAAC,CAAK,OAAO,AAAZ,EAAc;EACb,UAAU,EAAE,UAAU;EAAE,OAAO;EAC/B,OAAO,EAAE,CAAC;EAAE,OAAO;CACpB;;AAED;;GAEG;CAEH,AAAA,AAAA,IAAC,CAAK,QAAQ,AAAb,CAAc,2BAA2B;CAC1C,AAAA,IAAC,CAAK,QAAQ,AAAb,CAAc,2BAA2B,CAAC;EACzC,MAAM,EAAE,IAAI;CACb;;AAED;;;GAGG;CAEH,AAAA,AAAA,IAAC,CAAK,QAAQ,AAAb,EAAe;EACd,kBAAkB,EAAE,SAAS;EAAE,OAAO;EACtC,cAAc,EAAE,IAAI;EAAE,OAAO;CAC9B;;AAED;;GAEG;CAEH,AAAA,AAAA,IAAC,CAAK,QAAQ,AAAb,CAAc,2BAA2B,CAAC;EACzC,kBAAkB,EAAE,IAAI;CACzB;;AAED;;;GAGG;AAEH,AAAA,4BAA4B,CAAC;EAC3B,kBAAkB,EAAE,MAAM;EAAE,OAAO;EACnC,IAAI,EAAE,OAAO;EAAE,OAAO;CACvB;;AAED;;kCAEkC;AAElC;;GAEG;AAEH,AAAA,OAAO,CAAC;EACN,OAAO,EAAE,KAAK;CACf;;AAED;;GAEG;AAEH,AAAA,OAAO,CAAC;EACN,OAAO,EAAE,SAAS;CACnB;;AAED;gFACgF;AAEhF;;GAEG;AAEH,AAAA,QAAQ,CAAC;EACP,OAAO,EAAE,IAAI;CACd;;AAED;;GAEG;CAEH,AAAA,AAAA,MAAC,AAAA,EAAQ;EACP,OAAO,EAAE,IAAI;CACd;;AC7VD,AAAA,CAAC,AAAA,MAAM,CAAC;EACJ,OAAO,EAAE,YAAY;CACxB;;AAED,AAAA,CAAC,AAAA,MAAM,AAAA,MAAM,CAAC;EACV,MAAM,EAAE,IAAI;EACZ,OAAO,EAAE,IAAI;EACb,UAAU,EAAE,IAAI;CACnB;;AAED,AAAA,CAAC,CAAC;EACE,eAAe,EAAE,IAAI;EAErB,WAAW,EFTA,OAAO,EAAE,UAAU;EEU9B,SAAS,EAAE,IAAI;CAKlB;;AATD,AAKI,CALH,AAKI,MAAM,EALX,CAAC,AAMI,OAAO,CAAC;EACL,OAAO,EAAE,eAAe;CAC3B;;AAGL,AAAA,KAAK,CAAC;EACF,SAAS,EAAE,IAAI;EACf,WAAW,EAAE,IAAI;EACjB,cAAc,EAAE,GAAG;CACtB;;AAED,AAAA,CAAC,AAAA,MAAM,CAAC;EACJ,kBAAkB,EAAE,IAAI;EACxB,UAAU,EAAE,IAAI;CACnB;;AAED,AAAA,CAAC,AAAA,WAAW,CAAC;EACT,KAAK,EAAE,OAAiB;CAC3B;;AAED,AAAA,CAAC,AAAA,CAAC;AACF,CAAC,AAAA,QAAQ,CAAC;EACN,KAAK,EAAE,OAAO;EACd,eAAe,EAAE,IAAI;CACxB;;AAED,AAAA,IAAI,CAAC;EAKD,KAAK,EFvBG,OAAO,CEuBI,UAAU;EAAE,eAAe;CAQjD;;AAED,AAAA,MAAM,CAAC;EACH,GAAG,EAAE,CAAC;EACN,KAAK,EAAE,IAAI;EACX,OAAO,EAAE,eAAe;CAC3B;;AA+BD,AAAA,IAAI,CAAC;EACD,eAAe,EAAE,MAAM;CAC1B;;AAED,AAAA,QAAQ,CAAC;EACL,UAAU,EAAE,MAAM;EAClB,aAAa,EAAE,IAAI;CAgBtB;;AAlBD,AAII,QAJI,CAIJ,IAAI,CAAC;EACD,KAAK,EFtFE,OAAO;EEuFd,cAAc,EAAE,SAAS;EACzB,cAAc,EAAE,GAAG;EACnB,SAAS,EAAE,IAAI;CAClB;;AATL,AAWI,QAXI,CAWJ,KAAK,CAAC;EACF,KAAK,EFzFC,OAAO;EE0Fb,cAAc,EAAE,UAAU;EAC1B,cAAc,EAAE,GAAG;EACnB,SAAS,EAAE,IAAI;EACf,WAAW,EAAE,GAAG;CACnB;;AGjHL,AAAA,IAAI,CAAC;EACD,OAAO,EAAE,eAAe;EACxB,UAAU,EAAE,eAAe;CAoH9B;;AAnHI,AAAD,YAAS,CAAC;EACN,gBAAgB,ELeV,OAAO,CKfmB,UAAU;EAC1C,YAAY,ELcN,OAAO;EKbb,OAAO,EAAE,SAAS;EAClB,cAAc,EAAE,GAAG;EACnB,SAAS,EAAE,IAAI;CAQlB;;AAbA,AAMG,YANK,CAML,IAAI,CAAC;EACD,YAAY,EAAE,IAAI;CACrB;;AARJ,AASG,YATK,AASJ,MAAM,CAAC;EACJ,gBAAgB,EAAE,OAA0B,CAAC,UAAU;EACvD,MAAM,EAAE,IAAI;CACf;;AAEJ,AAAD,OAAI,CAAC;EACD,gBAAgB,EAAE,sBAAsB;EACxC,OAAO,EAAE,QAAQ;EACjB,cAAc,EAAE,GAAG;EACnB,SAAS,EAAE,IAAI;EACf,aAAa,EAAE,CAAC;EAChB,QAAQ,EAAE,QAAQ;EAClB,KAAK,ELHA,OAAO;EKIZ,cAAc,EAAE,SAAS;CAa5B;;AArBA,AASG,OATA,AASC,OAAO,CAAC;EACL,QAAQ,EAAE,QAAQ;EAClB,IAAI,EAAE,CAAC;EACP,MAAM,EAAE,CAAC;EACT,KAAK,EAAE,IAAI;EACX,MAAM,EAAE,GAAG;EACX,UAAU,EAAE,IAAI;EAChB,OAAO,EAAE,EAAE;EACX,kBAAkB,EAAE,SAAS;EAC7B,aAAa,EAAE,SAAS;EACxB,UAAU,EAAE,SAAS;CACxB;;AAEJ,AAAD,SAAM,CAAC;EACH,gBAAgB,ELrBV,OAAO,CKqBmB,UAAU;EAC1C,YAAY,ELtBN,OAAO;EKuBb,OAAO,EAAE,SAAS;EAClB,cAAc,EAAE,GAAG;EACnB,SAAS,EAAE,IAAI;EACf,KAAK,ELvBA,IAAI;CK+BZ;;AAdA,AAOG,SAPE,CAOF,IAAI,CAAC;EACD,YAAY,EAAE,IAAI;CACrB;;AATJ,AAUG,SAVE,AAUD,MAAM,CAAC;EACJ,gBAAgB,EAAE,OAA0B,CAAC,UAAU;EACvD,KAAK,EL7BJ,IAAI,CK6Be,UAAU;CACjC;;AAEJ,AAAD,QAAK,CAAC;EACF,gBAAgB,ELpCV,OAAO,CKoCmB,UAAU;EAC1C,YAAY,ELrCN,OAAO;EKsCb,OAAO,EAAE,SAAS;EAClB,cAAc,EAAE,GAAG;EACnB,SAAS,EAAE,IAAI;EACf,KAAK,ELtCA,IAAI;EKuCT,aAAa,EAAE,CAAC;CAQnB;;AAfA,AAQG,QARC,CAQD,IAAI,CAAC;EACD,YAAY,EAAE,IAAI;CACrB;;AAVJ,AAWG,QAXC,AAWA,MAAM,CAAC;EACJ,gBAAgB,EAAE,OAA0B,CAAC,UAAU;EACvD,KAAK,EL7CJ,IAAI,CK6Ce,UAAU;CACjC;;AAEJ,AAAD,WAAQ,CAAC;EACL,gBAAgB,ELzDV,OAAO,CKyDkB,UAAU;EACzC,YAAY,ELrDN,OAAO;EKsDb,OAAO,EAAE,SAAS;EAClB,cAAc,EAAE,GAAG;EACnB,SAAS,EAAE,IAAI;EACf,KAAK,ELtDA,IAAI;EKuDT,aAAa,EAAE,CAAC;CAQnB;;AAfA,AAQG,WARI,CAQJ,IAAI,CAAC;EACD,YAAY,EAAE,IAAI;CACrB;;AAVJ,AAWG,WAXI,AAWH,MAAM,CAAC;EACJ,gBAAgB,EAAE,OAA0B,CAAC,UAAU;EACvD,KAAK,EL7DJ,IAAI,CK6De,UAAU;CACjC;;AAEJ,AAAD,UAAO,CAAC;EACJ,gBAAgB,ELpEV,OAAO,CKoEmB,UAAU;EAC1C,YAAY,ELrEN,OAAO;EKsEb,OAAO,EAAE,SAAS;EAClB,cAAc,EAAE,GAAG;EACnB,SAAS,EAAE,IAAI;EACf,KAAK,ELtEA,IAAI,CKsEW,UAAU;EAC9B,aAAa,EAAE,CAAC;CAQnB;;AAfA,AAQG,UARG,CAQH,IAAI,CAAC;EACD,YAAY,EAAE,IAAI;CACrB;;AAVJ,AAWG,UAXG,AAWF,MAAM,CAAC;EACJ,gBAAgB,EAAE,OAA0B,CAAC,UAAU;EACvD,KAAK,EL7EJ,IAAI,CK6Ee,UAAU;CACjC;;AAEJ,AAAD,UAAO,CAAC;EACJ,gBAAgB,ELpFV,OAAO,CKoFmB,UAAU;EAC1C,YAAY,ELrFN,OAAO;EKsFb,OAAO,EAAE,SAAS;EAClB,cAAc,EAAE,GAAG;EACnB,SAAS,EAAE,IAAI;EACf,KAAK,ELtFA,IAAI,CKsFW,UAAU;EAC9B,aAAa,EAAE,CAAC;CAQnB;;AAfA,AAQG,UARG,CAQH,IAAI,CAAC;EACD,YAAY,EAAE,IAAI;CACrB;;AAVJ,AAWG,UAXG,AAWF,MAAM,CAAC;EACJ,gBAAgB,EAAE,OAA0B,CAAC,UAAU;EACvD,KAAK,EL7FJ,IAAI,CK6Fe,UAAU;CACjC;;AEpHT,AAAA,CAAC;AACD,CAAC,AAAA,QAAQ;AACT,CAAC,AAAA,OAAO,CAAC;EACL,UAAU,EAAE,UAAU;CACzB;;AAED,AAAA,IAAI,CAAC;EACD,QAAQ,EAAE,QAAQ;EAClB,MAAM,EAAE,IAAI;EACZ,KAAK,EAAE,IAAI;CAId;;AAED,AAAA,IAAI,CAAC;EACD,KAAK,EAAE,OAAO;EACd,OAAO,EAAE,CAAC;EACV,SAAS,EAAE,gBAAgB;EAC3B,UAAU,EAAE,GAAG,CAAC,IAAI,CAAC,IAAI,CAAC,oCAAoC;CAKjE;;AAJG,AAAA,IAAI,AAAA,OAAO,CALf,IAAI,CAKc;EACV,OAAO,EAAE,CAAC;EACV,SAAS,EAAE,YAAY;CAC1B;;AAGL,AAAA,OAAO,CAAC;EACJ,WAAW,EAAE,MAAM;EACnB,KAAK,EAAE,IAAI;EACX,OAAO,EAAE,CAAC;EACV,SAAS,EAAE,gBAAgB;EAC3B,UAAU,EAAE,GAAG,CAAC,IAAI,CAAC,EAAE,CAAC,oCAAoC;CAK/D;;AAJG,AAAA,IAAI,AAAA,OAAO,CANf,OAAO,CAMW;EACV,OAAO,EAAE,CAAC;EACV,SAAS,EAAE,YAAY;CAC1B;;AAGL,AAAA,eAAe,CAAC;EACZ,QAAQ,EAAE,KAAK;EACf,GAAG,EAAE,CAAC;EACN,IAAI,EAAE,CAAC;EACP,KAAK,EAAE,IAAI;EACX,MAAM,EAAE,IAAI;EACZ,OAAO,EAAE,IAAI;EACb,SAAS,EAAE,aAAa;CAC3B;;AAED,AAAA,eAAe,CAAC,eAAe,CAAC;EAC5B,QAAQ,EAAE,KAAK;EACf,GAAG,EAAE,KAAK;EACV,KAAK,EAAE,IAAI;EACX,MAAM,EAAE,KAAK;EACb,UAAU,EAAE,IAAI;EAChB,OAAO,EAAE,IAAI;EACb,SAAS,EAAE,aAAa;CAC3B;;AAED,AAAA,eAAe,CAAC,eAAe,AAAA,aAAa,CAAC;EACzC,IAAI,EAAE,IAAI;CACb;;AAED,AAAA,eAAe,CAAC,eAAe,AAAA,cAAc,CAAC;EAC1C,KAAK,EAAE,IAAI;CACd;;AAGD,UAAU,CAAV,IAAU;EACN,EAAE;IACE,SAAS,EAAE,YAAY;;EAE3B,IAAI;IACA,SAAS,EAAE,cAAc;;;;AAKjC,AAAA,OAAO,CAAC,eAAe,CAAC,eAAe,AAAA,aAAa,CAAC;EACjD,SAAS,EAAE,iBAAiB;EAC5B,UAAU,EAAE,GAAG,CAAC,IAAI,CAAC,EAAE,CAAC,oCAAoC;CAE/D;;AAED,AAAA,OAAO,CAAC,eAAe,CAAC,eAAe,AAAA,cAAc,CAAC;EAClD,SAAS,EAAE,gBAAgB;EAC3B,UAAU,EAAE,GAAG,CAAC,IAAI,CAAC,EAAE,CAAC,oCAAoC;CAE/D;;AAED,AAAA,OAAO,CAAC,QAAQ,CAAC;EACb,OAAO,EAAE,CAAC;EACV,UAAU,EAAE,iBAAiB;CAChC;;AAED,AAAA,OAAO,CAAC,eAAe,CAAC;EACpB,UAAU,EAAE,MAAM;CACrB;;AAED,AAAA,QAAQ,CAAC;EACL,OAAO,EAAE,IAAI;EACb,OAAO,EAAE,YAAY;EACrB,QAAQ,EAAE,KAAK;EACf,IAAI,EAAE,GAAG;EACT,GAAG,EAAE,GAAG;EACR,KAAK,EAAE,IAAI;EACX,MAAM,EAAE,IAAI;EACZ,UAAU,EAAE,KAAK;EACjB,WAAW,EAAE,KAAK;EAClB,aAAa,EAAE,GAAG;EAClB,MAAM,EAAE,sBAAsB;EAC9B,WAAW,EAAE,kBAAkB;EAC/B,aAAa,EAAE,kBAAkB;EACjC,SAAS,EAAE,2BAA2B;CAqBzC;;AAnCD,AAeI,QAfI,AAeH,OAAO,EAfZ,QAAQ,AAgBH,MAAM,CAAC;EACJ,OAAO,EAAE,EAAE;EACX,QAAQ,EAAE,QAAQ;EAClB,GAAG,EAAE,CAAC;EACN,IAAI,EAAE,CAAC;EACP,OAAO,EAAE,KAAK;EACd,KAAK,EAAE,IAAI;EACX,MAAM,EAAE,IAAI;EACZ,aAAa,EAAE,GAAG;EAClB,MAAM,EAAE,sBAAsB;EAC9B,WAAW,EAAE,kBAAkB;EAC/B,aAAa,EAAE,kBAAkB;CACpC;;AA5BL,AA6BI,QA7BI,AA6BH,OAAO,CAAC;EACL,SAAS,EAAE,2BAA2B;CACzC;;AA/BL,AAgCI,QAhCI,AAgCH,MAAM,CAAC;EACJ,SAAS,EAAE,UAAU;CACxB;;AAGL,UAAU,CAAV,QAAU;EACN,EAAE;IACE,SAAS,EAAE,UAAU,CAAC,UAAU,CAAC,UAAU;;EAE/C,IAAI;IACA,SAAS,EAAE,UAAU,CAAC,UAAU,CAAC,eAAe;;;;AAIxD,UAAU,CAAV,QAAU;EACN,EAAE;IACE,SAAS,EAAE,UAAU;;EAEzB,IAAI;IACA,SAAS,EAAE,gBAAgB;;;;AErJnC,AAAA,WAAW,CAAC;EACR,QAAQ,EAAE,QAAQ;EAClB,KAAK,EAAE,IAAI;EACX,GAAG,EAAE,EAAE;EACP,IAAI,EAAE,CAAC;EACP,OAAO,EAAE,GAAG;EACZ,UAAU,EAAE,WAAW;EACvB,UAAU,EAAE,GAAG,CAAC,GAAG,CAAC,GAAG,CAAE,IAAG,CAAC,wBAAwB;EACrD,kBAAkB,EAAE,GAAG,CAAC,GAAG,CAAC,GAAG,CAAE,IAAG,CAAC,wBAAwB;EAC7D,eAAe,EAAE,GAAG,CAAC,GAAG,CAAC,GAAG,CAAE,IAAG,CAAC,wBAAwB;EAI1D,sBAAsB;CA0IzB;;AA7IG,MAAM,CAAC,MAAM,MAAM,SAAS,EAAE,KAAK;EAVvC,AAAA,WAAW,CAAC;IAWJ,gBAAgB,EAAE,KAAkB;GA4I3C;;;AAvJD,AAcI,WAdO,CAcP,qBAAqB,CAAC;EAClB,OAAO,EAAE,YAAY;EACrB,cAAc,EAAE,MAAM;EACtB,iBAAiB,EAAE,aAAa;EAChC,SAAS,EAAE,aAAa;EACxB,UAAU,EAAE,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,gBAAgB;EACpC,2BAA2B,EAAE,MAAM;EACnC,mBAAmB,EAAE,MAAM;EAC3B,uBAAuB,EAAE,SAAS;EAClC,QAAQ,EAAE,QAAQ;EAClB,QAAQ,EAAE,MAAM;CACnB;;AAzBL,AA0BI,WA1BO,CA0BP,qBAAqB,AAAA,OAAO,CAAC;EACzB,OAAO,EAAE,EAAE;EACX,QAAQ,EAAE,QAAQ;EAClB,OAAO,EAAE,EAAE;EACX,IAAI,EAAE,CAAC;EACP,KAAK,EAAE,CAAC;EACR,MAAM,EAAE,CAAC;EACT,UAAU,EAAE,OAAO;EACnB,MAAM,EAAE,GAAG;EACX,iBAAiB,EAAE,eAAe;EAClC,SAAS,EAAE,eAAe;EAC1B,2BAA2B,EAAE,SAAS;EACtC,mBAAmB,EAAE,SAAS;EAC9B,2BAA2B,EAAE,IAAI;EACjC,mBAAmB,EAAE,IAAI;EACzB,kCAAkC,EAAE,QAAQ;EAC5C,0BAA0B,EAAE,QAAQ;CACvC;;AA3CL,AA4CI,WA5CO,CA4CP,qBAAqB,AAAA,MAAM,AAAA,OAAO;AA5CtC,WAAW,CA6CP,qBAAqB,AAAA,MAAM,AAAA,OAAO;AA7CtC,WAAW,CA8CP,qBAAqB,AAAA,OAAO,AAAA,OAAO,CAAC;EAChC,iBAAiB,EAAE,aAAa;EAChC,SAAS,EAAE,aAAa;CAC3B;;AAjDL,AAkDI,WAlDO,CAkDP,SAAS,CAAC;EACN,UAAU,EAAE,sBAAsB;CACrC;;AApDL,AAqDI,WArDO,CAqDP,OAAO,CAAC;EACJ,OAAO,EAAE,MAAM;CAgGlB;;AAtJL,AAuDQ,WAvDG,CAqDP,OAAO,CAEH,aAAa,CAAC;EACV,SAAS,EAAE,KAAK;CAInB;;AA5DT,AAyDY,WAzDD,CAqDP,OAAO,CAEH,aAAa,CAET,GAAG,CAAC;EACA,KAAK,EAAE,IAAI;CACd;;AA3Db,AA8DQ,WA9DG,CAqDP,OAAO,CASH,gBAAgB,CAAC;EACb,UAAU,EAAE,kBAAkB;EAC9B,gBAAgB,EAAE,WAAW;EAC7B,UAAU,EAAE,MAAM;CACrB;;AAlET,AAmEQ,WAnEG,CAqDP,OAAO,CAcH,eAAe,CAAC;EACZ,KAAK,EAAE,KAAY,CAAC,UAAU;EAC9B,YAAY,EAAE,KAAY,CAAC,UAAU;EACrC,aAAa,EAAE,CAAC;EAChB,YAAY,EAAE,GAAG;EACjB,SAAS,EAAE,IAAI;EACf,OAAO,EAAE,OAAO;CAInB;;AA7ET,AA0EY,WA1ED,CAqDP,OAAO,CAcH,eAAe,CAOX,GAAG,CAAC;EACA,KAAK,EAAE,IAAI;CACd;;AA5Eb,AAgFgB,WAhFL,CAqDP,OAAO,CAyBH,gBAAgB,CACZ,WAAW,CACP,SAAS,CAAC;EACN,MAAM,EAAE,MAAM;CAKjB;;AAtFjB,AAkFoB,WAlFT,CAqDP,OAAO,CAyBH,gBAAgB,CACZ,WAAW,CACP,SAAS,CAEL,SAAS,CAAC;EACN,SAAS,EAAE,IAAI;EACf,WAAW,EAAE,GAAG;CACnB;;AArFrB,AAsGgB,WAtGL,CAqDP,OAAO,CAyBH,gBAAgB,CAuBZ,SAAS,CACL,cAAc,CAAC;EACX,gBAAgB,ETpFtB,OAAO;ESqFD,aAAa,EAAE,CAAC;EAChB,MAAM,EAAE,CAAC;EACT,GAAG,EAAE,IAAI;CAIZ;;AAHG,MAAM,CAAC,MAAM,MAAM,SAAS,EAAE,KAAK;EA3GvD,AAsGgB,WAtGL,CAqDP,OAAO,CAyBH,gBAAgB,CAuBZ,SAAS,CACL,cAAc,CAAC;IAMP,UAAU,EAAE,MAAM;GAEzB;;;AA9GjB,AA+GgB,WA/GL,CAqDP,OAAO,CAyBH,gBAAgB,CAuBZ,SAAS,CAUL,cAAc,CAAC;EACX,OAAO,EAAE,KAAK;EACd,KAAK,EAAE,IAAI;EACX,OAAO,EAAE,aAAa;EACtB,KAAK,EAAE,IAAI;EACX,WAAW,EAAE,GAAG;EAChB,KAAK,EAAE,IAAI;EACX,UAAU,EAAE,OAAO;EACnB,WAAW,EAAE,MAAM;EACnB,MAAM,EAAE,CAAC;EACT,SAAS,EAAE,IAAI;CAIlB;;AA7HjB,AA0HoB,WA1HT,CAqDP,OAAO,CAyBH,gBAAgB,CAuBZ,SAAS,CAUL,cAAc,AAWT,MAAM,CAAC;EACJ,KAAK,ETtGhB,OAAO;CSuGC;;AA5HrB,AAgIQ,WAhIG,CAqDP,OAAO,CA2EH,YAAY,CAAC;EACT,OAAO,EAAE,IAAI;EACb,eAAe,EAAE,YAAY;EAC7B,KAAK,EAAE,GAAG;EACV,WAAW,EAAE,KAAK;CAiBrB;;AAhBG,MAAM,CAAC,MAAM,MAAM,SAAS,EAAE,KAAK;EArI/C,AAgIQ,WAhIG,CAqDP,OAAO,CA2EH,YAAY,CAAC;IAML,eAAe,EAAE,MAAM;IACvB,KAAK,EAAE,IAAI;IACX,UAAU,EAAE,IAAI;GAavB;;;AArJT,AA0IY,WA1ID,CAqDP,OAAO,CA2EH,YAAY,CAUR,CAAC,CAAC;EACE,YAAY,EAAE,IAAI;CASrB;;AApJb,AA4IgB,WA5IL,CAqDP,OAAO,CA2EH,YAAY,CAUR,CAAC,CAEG,CAAC,CAAC;EACE,SAAS,EAAE,IAAI;CAClB;;AA9IjB,AAgJoB,WAhJT,CAqDP,OAAO,CA2EH,YAAY,CAUR,CAAC,AAKI,MAAM,CACH,CAAC,CAAC;EACE,KAAK,ET7HR,OAAO;CS8HP;;AAMrB,AAAA,UAAU,CAAC;EACP,iBAAiB,EAAE,SAAS,CAAC,IAAI,CAAC,oCAAoC,CAAC,IAAI;EAC3E,SAAS,EAAE,SAAS,CAAC,IAAI,CAAC,oCAAoC,CAAC,IAAI;CACtE;;AACD,kBAAkB,CAAlB,SAAkB;EACd,EAAE;IACE,iBAAiB,EAAE,aAAa;IAChC,SAAS,EAAE,aAAa;;EAE5B,IAAI;IACA,iBAAiB,EAAE,iBAAiB;IACpC,SAAS,EAAE,iBAAiB;;;;AAGpC,UAAU,CAAV,SAAU;EACN,EAAE;IACE,iBAAiB,EAAE,aAAa;IAChC,SAAS,EAAE,aAAa;;EAE5B,IAAI;IACA,iBAAiB,EAAE,iBAAiB;IACpC,SAAS,EAAE,iBAAiB;;;;AAIpC,AAAA,aAAa,CAAC,WAAW,CAAC,OAAO,GAAG,SAAS;AAC7C,aAAa,CAAC,WAAW,CAAC,SAAS,AAAA,OAAO;AAC1C,aAAa,CAAC,WAAW,CAAC,SAAS,AAAA,KAAK;AACxC,aAAa,CAAC,WAAW,CAAC,KAAK,GAAG,SAAS,CAAC;EAC5C,KAAK,EAAE,kBAAkB;EACzB,QAAQ,EAAE,QAAQ;CAmBjB;;AAxBD,AAMA,aANa,CAAC,WAAW,CAAC,OAAO,GAAG,SAAS,AAM5C,OAAO;AALR,aAAa,CAAC,WAAW,CAAC,SAAS,AAAA,OAAO,AAKzC,OAAO;AAJR,aAAa,CAAC,WAAW,CAAC,SAAS,AAAA,KAAK,AAIvC,OAAO;AAHR,aAAa,CAAC,WAAW,CAAC,KAAK,GAAG,SAAS,AAG1C,OAAO,CAAA;EACJ,OAAO,EAAE,EAAE;EACX,QAAQ,EAAE,QAAQ;EAClB,OAAO,EAAE,EAAE;EACX,IAAI,EAAE,CAAC;EACP,KAAK,EAAE,CAAC;EACR,MAAM,EAAE,CAAC;EACT,UAAU,EAAE,OAAO;EACnB,MAAM,EAAE,GAAG;EACX,iBAAiB,EAAE,eAAe;EAClC,SAAS,EAAE,eAAe;EAC1B,2BAA2B,EAAE,SAAS;EACtC,mBAAmB,EAAE,SAAS;EAC9B,2BAA2B,EAAE,IAAI;EACjC,mBAAmB,EAAE,IAAI;EACzB,kCAAkC,EAAE,QAAQ;EAC5C,0BAA0B,EAAE,QAAQ;CACvC;;ACxMD,AACE,MADI,CACJ,QAAQ,CAAC;EACP,OAAO,EAAE,QAAQ;EACjB,UAAU,EVkBD,OAAO;CUkDjB;;AAvEH,AAKM,MALA,CACJ,QAAQ,CAGN,QAAQ,CACN,KAAK,CAAC;EACJ,aAAa,EAAE,CAAC;EAChB,SAAS,EAAE,IAAI;EACf,KAAK,EVcA,IAAI;CUTV;;AAJC,MAAM,CAAC,MAAM,MAAM,SAAS,EAAE,KAAK;EAT3C,AAKM,MALA,CACJ,QAAQ,CAGN,QAAQ,CACN,KAAK,CAAC;IAKF,UAAU,EAAE,MAAM;IAClB,cAAc,EAAE,IAAI;GAEvB;;;AAbP,AAcM,MAdA,CACJ,QAAQ,CAGN,QAAQ,CAUN,KAAK,CAAC;EACJ,OAAO,EAAE,IAAI;EACb,eAAe,EAAE,YAAY;CAqD9B;;AArEP,AAkBU,MAlBJ,CACJ,QAAQ,CAGN,QAAQ,CAUN,KAAK,CAGH,QAAQ,CACN,CAAC,CAAC;EACA,SAAS,EAAE,IAAI;EACf,KAAK,EVEJ,IAAI;EUDL,eAAe,EAAE,IAAI;EACrB,cAAc,EAAE,GAAG;CACpB;;AAvBX,AAyBQ,MAzBF,CACJ,QAAQ,CAGN,QAAQ,CAUN,KAAK,CAWH,SAAS,CAAC;EACR,qBAAqB;EASrB,mEAAmE;EAKnE,0CAA0C;EAS1C,+BAA+B;EAO/B,6CAA6C;EAI7C,qCAAqC;EAIrC,2FAA2F;CAI5F;;AApET,AA2BU,MA3BJ,CACJ,QAAQ,CAGN,QAAQ,CAUN,KAAK,CAWH,SAAS,CAEP,QAAQ,CAAC;EACP,gBAAgB,EAAE,WAAW;EAC7B,KAAK,EAAE,KAAK;EACZ,WAAW,EAAE,GAAG;EAChB,YAAY,EAAE,GAAG;EACjB,SAAS,EAAE,IAAI;EACf,MAAM,EAAE,IAAI;CACb;;AAlCX,AAoCU,MApCJ,CACJ,QAAQ,CAGN,QAAQ,CAUN,KAAK,CAWH,SAAS,CAWP,SAAS,CAAC;EACR,QAAQ,EAAE,QAAQ;EAClB,OAAO,EAAE,YAAY;CACtB;;AAvCX,AAyCU,MAzCJ,CACJ,QAAQ,CAGN,QAAQ,CAUN,KAAK,CAWH,SAAS,CAgBP,iBAAiB,CAAC;EAChB,OAAO,EAAE,IAAI;EACb,QAAQ,EAAE,QAAQ;EAClB,gBAAgB,EAAE,OAAO;EACzB,SAAS,EAAE,KAAK;EAChB,UAAU,EAAE,GAAG,CAAC,GAAG,CAAC,IAAI,CAAC,GAAG,CAAC,kBAAkB;EAC/C,OAAO,EAAE,CAAC;CACX;;AAhDX,AAkDU,MAlDJ,CACJ,QAAQ,CAGN,QAAQ,CAUN,KAAK,CAWH,SAAS,CAyBP,iBAAiB,CAAC,CAAC,CAAC;EAClB,KAAK,EAAE,KAAK;EACZ,OAAO,EAAE,SAAS;EAClB,eAAe,EAAE,IAAI;EACrB,OAAO,EAAE,KAAK;CACf;;AAvDX,AAyDU,MAzDJ,CACJ,QAAQ,CAGN,QAAQ,CAUN,KAAK,CAWH,SAAS,CAgCP,iBAAiB,CAAC,CAAC,AAAA,MAAM,CAAC;EACxB,gBAAgB,EAAE,IAAI;CACvB;;AA3DX,AA6DU,MA7DJ,CACJ,QAAQ,CAGN,QAAQ,CAUN,KAAK,CAWH,SAAS,CAoCP,SAAS,AAAA,MAAM,CAAC,iBAAiB,CAAC;EAChC,OAAO,EAAE,KAAK;CACf;;AA/DX,AAiEU,MAjEJ,CACJ,QAAQ,CAGN,QAAQ,CAUN,KAAK,CAWH,SAAS,CAwCP,SAAS,AAAA,MAAM,CAAC,QAAQ,CAAC;EACvB,gBAAgB,EAAE,WAAW;CAC9B;;ACnEX,AACE,OADK,CACL,WAAW,CAAC;EACV,gBAAgB,EAAE,qCAAqC,EAAE,mCAAmC;EAC5F,eAAe,EAAE,MAAM;EACvB,eAAe,EAAE,KAAK;EACtB,KAAK,EAAE,IAAI;EACX,iBAAiB,EAAE,SAAS;EAC5B,mBAAmB,EAAE,MAAM;EAC3B,QAAQ,EAAE,QAAQ;CAInB;;AAHC,MAAM,CAAC,MAAM,MAAM,SAAS,EAAE,KAAK;EATvC,AACE,OADK,CACL,WAAW,CAAC;IASR,cAAc,EAAE,IAAI;GAEvB;;;AAZH,AAaE,OAbK,CAaL,WAAW,CAAC;EACV,gBAAgB,EAAE,qCAAqC,EAAE,mCAAmC;EAC5F,eAAe,EAAE,MAAM;EACvB,eAAe,EAAE,KAAK;EACtB,KAAK,EAAE,IAAI;EACX,iBAAiB,EAAE,SAAS;EAC5B,mBAAmB,EAAE,MAAM;EAC3B,QAAQ,EAAE,QAAQ;CAInB;;AAHC,MAAM,CAAC,MAAM,MAAM,SAAS,EAAE,KAAK;EArBvC,AAaE,OAbK,CAaL,WAAW,CAAC;IASR,cAAc,EAAE,IAAI;GAEvB;;;AAxBH,AAyBE,OAzBK,CAyBL,WAAW,CAAC;EACV,gBAAgB,EAAE,qCAAqC,EAAE,mCAAmC;EAC5F,eAAe,EAAE,MAAM;EACvB,eAAe,EAAE,KAAK;EACtB,KAAK,EAAE,IAAI;EACX,iBAAiB,EAAE,SAAS;EAC5B,mBAAmB,EAAE,MAAM;EAC3B,QAAQ,EAAE,QAAQ;CAInB;;AAHC,MAAM,CAAC,MAAM,MAAM,SAAS,EAAE,KAAK;EAjCvC,AAyBE,OAzBK,CAyBL,WAAW,CAAC;IASR,cAAc,EAAE,IAAI;GAEvB;;;AApCH,AAwCE,OAxCK,CAwCL,QAAQ,CAAC;EACP,MAAM,EAAE,IAAI;EACZ,KAAK,EAAE,IAAI;EACX,WAAW,EAAE,KAAK;EAClB,cAAc,EAAE,IAAI;CAmErB;;AAlEC,MAAM,CAAC,MAAM,MAAM,SAAS,EAAE,KAAK;EA7CvC,AAwCE,OAxCK,CAwCL,QAAQ,CAAC;IAML,WAAW,EAAE,KAAK;GAiErB;;;AA/DC,MAAM,CAAC,MAAM,MAAM,SAAS,EAAE,KAAK;EAhDvC,AAwCE,OAxCK,CAwCL,QAAQ,CAAC;IASL,WAAW,EAAE,KAAK;GA8DrB;;;AA/GH,AAmDI,OAnDG,CAwCL,QAAQ,CAWN,KAAK,CAAC;EACJ,UAAU,EAAE,IAAI;EAChB,MAAM,EAAE,IAAI;EACZ,gBAAgB,EAAE,WAAW;EAC7B,KAAK,EAAE,GAAG;CAuDX;;AAtDC,MAAM,CAAC,MAAM,MAAM,SAAS,EAAE,KAAK;EAxDzC,AAmDI,OAnDG,CAwCL,QAAQ,CAWN,KAAK,CAAC;IAMF,KAAK,EAAE,GAAG;GAqDb;;;AAnDC,MAAM,CAAC,MAAM,MAAM,SAAS,EAAE,KAAK;EA3DzC,AAmDI,OAnDG,CAwCL,QAAQ,CAWN,KAAK,CAAC;IASF,KAAK,EAAE,GAAG;GAkDb;;;AA9GL,AA8DM,OA9DC,CAwCL,QAAQ,CAWN,KAAK,CAWH,YAAY,CAAC;EACX,UAAU,EAAE,WAAW;EACvB,mBAAmB,EAAE,WAAW;EAChC,KAAK,EXlDE,OAAO;EWmDd,SAAS,EAAE,IAAI;EACf,cAAc,EAAE,GAAG;EACnB,cAAc,EAAE,SAAS;EACzB,cAAc,EAAE,CAAC;CAIlB;;AAHC,MAAM,CAAC,MAAM,MAAM,SAAS,EAAE,KAAK;EAtE3C,AA8DM,OA9DC,CAwCL,QAAQ,CAWN,KAAK,CAWH,YAAY,CAAC;IAST,cAAc,EAAE,IAAI;GAEvB;;;AAzEP,AA2EQ,OA3ED,CAwCL,QAAQ,CAWN,KAAK,CAuBH,UAAU,CACR,WAAW,CAAC;EACV,SAAS,EAAE,IAAI;EACf,WAAW,EAAE,GAAG;EAChB,KAAK,EX3DD,OAAO;EW4DX,cAAc,EAAE,GAAG;CAIpB;;AAHC,MAAM,CAAC,MAAM,MAAM,SAAS,EAAE,KAAK;EAhF7C,AA2EQ,OA3ED,CAwCL,QAAQ,CAWN,KAAK,CAuBH,UAAU,CACR,WAAW,CAAC;IAMR,SAAS,EAAE,IAAI;GAElB;;;AAnFT,AAoFQ,OApFD,CAwCL,QAAQ,CAWN,KAAK,CAuBH,UAAU,CAUR,UAAU,CAAC;EACT,SAAS,EAAE,IAAI;EACf,MAAM,EAAE,MAAM;EACd,cAAc,EAAE,KAAK;EACrB,KAAK,EXrED,OAAO;CWyEZ;;AAHC,MAAM,CAAC,MAAM,MAAM,SAAS,EAAE,KAAK;EAzF7C,AAoFQ,OApFD,CAwCL,QAAQ,CAWN,KAAK,CAuBH,UAAU,CAUR,UAAU,CAAC;IAMP,cAAc,EAAE,IAAI;GAEvB;;;AA5FT,AA8FM,OA9FC,CAwCL,QAAQ,CAWN,KAAK,CA2CH,YAAY,CAAC;EACX,WAAW,EAAE,IAAI;EACjB,UAAU,EAAE,IAAI;CAajB;;AAZC,MAAM,CAAC,MAAM,MAAM,SAAS,EAAE,KAAK;EAjG3C,AA8FM,OA9FC,CAwCL,QAAQ,CAWN,KAAK,CA2CH,YAAY,CAAC;IAIT,UAAU,EAAE,KAAK;IACjB,UAAU,EAAE,IAAI;IAChB,WAAW,EAAE,IAAI;GASpB;;;AA7GP,AAsGQ,OAtGD,CAwCL,QAAQ,CAWN,KAAK,CA2CH,YAAY,CAQV,CAAC,CAAC;EACA,KAAK,EXtFA,OAAO;EWuFZ,YAAY,EAAE,IAAI;CAInB;;AA5GT,AAyGU,OAzGH,CAwCL,QAAQ,CAWN,KAAK,CA2CH,YAAY,CAQV,CAAC,AAGE,MAAM,CAAC;EACN,KAAK,EX3FF,OAAO;CW4FX;;AA3GX,AAgHE,OAhHK,CAgHL,aAAa,CAAC;EACZ,QAAQ,EAAE,QAAQ;CA6FnB;;AA9MH,AAkHI,OAlHG,CAgHL,aAAa,CAEX,QAAQ,CAAC;EACP,QAAQ,EAAE,QAAQ;EAClB,KAAK,EAAE,IAAI;EACX,MAAM,EAAE,GAAG;CAeZ;;AAdC,MAAM,CAAC,MAAM,MAAM,SAAS,EAAE,KAAK;EAtHzC,AAkHI,OAlHG,CAgHL,aAAa,CAEX,QAAQ,CAAC;IAKL,KAAK,EAAE,IAAI;IACX,IAAI,EAAE,EAAE;IACR,MAAM,EAAE,CAAC;GAWZ;;;AATC,MAAM,CAAC,MAAM,MAAM,SAAS,EAAE,KAAK;EA3HzC,AAkHI,OAlHG,CAgHL,aAAa,CAEX,QAAQ,CAAC;IAUL,KAAK,EAAE,IAAI;IACX,IAAI,EAAE,GAAG;IACT,MAAM,EAAE,EAAE;GAMb;;;AAJC,MAAM,CAAC,MAAM,MAAM,SAAS,EAAE,KAAK;EAhIzC,AAkHI,OAlHG,CAgHL,aAAa,CAEX,QAAQ,CAAC;IAeL,IAAI,EAAE,EAAE;IACR,MAAM,EAAE,EAAE;GAEb;;;AApIL,AAqII,OArIG,CAgHL,aAAa,CAqBX,SAAS,CAAC;EACR,MAAM,EAAE,IAAI;EACZ,KAAK,EAAE,IAAI;EACX,aAAa,EAAE,GAAG;EAClB,KAAK,EAAE,IAAI;EACX,KAAK,EXrHE,OAAO;EWsHd,WAAW,EAAE,IAAI;CAUlB;;AArJL,AA4IM,OA5IC,CAgHL,aAAa,CAqBX,SAAS,AAON,MAAM,CAAC;EACN,KAAK,EXxHA,OAAO;CWyHb;;AA9IP,AA+IM,OA/IC,CAgHL,aAAa,CAqBX,SAAS,CAUP,IAAI,CAAC;EACH,SAAS,EAAE,IAAI;EACf,cAAc,EAAE,SAAS;EACzB,WAAW,EAAE,GAAG;EAChB,cAAc,EAAE,GAAG;CACpB;;AApJP,AAsJI,OAtJG,CAgHL,aAAa,CAsCX,SAAS,CAAC;EACR,KAAK,EXlIE,OAAO;EWmId,MAAM,EAAE,IAAI;EACZ,KAAK,EAAE,IAAI;EACX,aAAa,EAAE,GAAG;EAClB,KAAK,EAAE,KAAK;EACZ,YAAY,EAAE,IAAI;CAUnB;;AAtKL,AA6JM,OA7JC,CAgHL,aAAa,CAsCX,SAAS,AAON,MAAM,CAAC;EACN,KAAK,EXzIA,OAAO;CW0Ib;;AA/JP,AAgKM,OAhKC,CAgHL,aAAa,CAsCX,SAAS,CAUP,IAAI,CAAC;EACH,SAAS,EAAE,IAAI;EACf,cAAc,EAAE,SAAS;EACzB,WAAW,EAAE,GAAG;EAChB,cAAc,EAAE,GAAG;CACpB;;AArKP,AAuKI,OAvKG,CAgHL,aAAa,CAuDX,SAAS,CAAC;EACR,QAAQ,EAAE,QAAQ;EAClB,QAAQ,EAAE,QAAQ;EAClB,MAAM,EAAE,GAAG;EACX,KAAK,EAAE,IAAI;EACX,OAAO,EAAE,GAAG;CAoBb;;AAnBC,MAAM,CAAC,MAAM,MAAM,SAAS,EAAE,KAAK;EA7KzC,AAuKI,OAvKG,CAgHL,aAAa,CAuDX,SAAS,CAAC;IAON,MAAM,EAAE,KAAK;IACb,KAAK,EAAE,IAAI;GAiBd;;;AAfC,MAAM,CAAC,MAAM,MAAM,SAAS,EAAE,KAAK;EAjLzC,AAuKI,OAvKG,CAgHL,aAAa,CAuDX,SAAS,CAAC;IAWN,MAAM,EAAE,GAAG;IACX,KAAK,EAAE,IAAI;GAad;;;AAXC,MAAM,CAAC,MAAM,MAAM,SAAS,EAAE,KAAK;EArLzC,AAuKI,OAvKG,CAgHL,aAAa,CAuDX,SAAS,CAAC;IAeN,MAAM,EAAE,GAAG;GAUd;;;AARC,MAAM,CAAC,MAAM,MAAM,SAAS,EAAE,KAAK;EAxLzC,AAuKI,OAvKG,CAgHL,aAAa,CAuDX,SAAS,CAAC;IAkBN,MAAM,EAAE,GAAG;IACX,KAAK,EAAE,IAAI;GAMd;;;AAJC,MAAM,CAAC,MAAM,MAAM,SAAS,EAAE,KAAK;EA5LzC,AAuKI,OAvKG,CAgHL,aAAa,CAuDX,SAAS,CAAC;IAsBN,MAAM,EAAE,EAAE;IACV,KAAK,EAAE,IAAI;GAEd;;;AAhML,AAiMI,OAjMG,CAgHL,aAAa,CAiFX,QAAQ,CAAC;EACP,gBAAgB,EAAE,WAAW;CAW9B;;AA7ML,AAmMM,OAnMC,CAgHL,aAAa,CAiFX,QAAQ,AAEL,OAAO,CAAC;EACP,UAAU,EAAE,kBAAkB;CAC/B;;AArMP,AAsMM,OAtMC,CAgHL,aAAa,CAiFX,QAAQ,CAKN,IAAI,CAAC;EACH,MAAM,EAAE,SAAS;EACjB,KAAK,EAAE,KAAK;EACZ,SAAS,EAAE,GAAG;EACd,OAAO,EAAE,WAAW;EACpB,OAAO,EAAE,IAAI;CACd;;AAKP,AAAA,WAAW,CAAC;EACV,UAAU,EAAE,IAAI;CAiCjB;;AAlCD,AAEE,WAFS,CAET,QAAQ,CAAC;EACP,gBAAgB,EXlML,SAAS;EWmMpB,OAAO,EAAE,MAAM;CA6BhB;;AAjCH,AAMM,WANK,CAET,QAAQ,CAGN,SAAS,CACP,KAAK,CAAC;EACJ,KAAK,EXrMC,OAAO;EWsMb,SAAS,EAAE,IAAI;EACf,WAAW,EAAE,GAAG;EAChB,YAAY,EAAE,IAAI;CACnB;;AAXP,AAYM,WAZK,CAET,QAAQ,CAGN,SAAS,CAOP,WAAW,CAAC;EACV,gBAAgB,EAAE,WAAW;CAkB9B;;AA/BP,AAcQ,WAdG,CAET,QAAQ,CAGN,SAAS,CAOP,WAAW,CAET,eAAe,CAAC;EACd,SAAS,EAAE,IAAI;EACf,WAAW,EAAE,GAAG;CACjB;;AAjBT,AAoBQ,WApBG,CAET,QAAQ,CAGN,SAAS,CAOP,WAAW,CAQT,gBAAgB,CAAC;EAIf,SAAS,EAAE,IAAI;CAMhB;;AA9BT,AAqBU,WArBC,CAET,QAAQ,CAGN,SAAS,CAOP,WAAW,CAQT,gBAAgB,AACb,QAAQ,CAAC;EACR,OAAO,EAAE,IAAI;CACd;;AAvBX,AAyBU,WAzBC,CAET,QAAQ,CAGN,SAAS,CAOP,WAAW,CAQT,gBAAgB,CAKd,CAAC,CAAC;EACA,KAAK,EXtNJ,OAAO;EWuNR,eAAe,EAAE,IAAI;EACrB,SAAS,EAAE,IAAI;CAChB;;AAMX,AAAA,YAAY,CAAC;EACX,gBAAgB,EAAE,qCAAqC,EAAE,mCAAmC;EAC5F,eAAe,EAAE,MAAM;EACvB,MAAM,EAAE,IAAI;EACZ,eAAe,EAAE,KAAK;EACtB,KAAK,EAAE,IAAI;EACX,iBAAiB,EAAE,SAAS;EAC5B,mBAAmB,EAAE,MAAM;EAC3B,QAAQ,EAAE,QAAQ;EAClB,UAAU,EAAE,IAAI;CAajB;;AAtBD,AAUE,YAVU,CAUV,QAAQ,CAAC;EACP,KAAK,EAAE,IAAI;EACX,MAAM,EAAE,IAAI;EACZ,OAAO,EAAE,IAAI;EACb,eAAe,EAAE,MAAM;EACvB,WAAW,EAAE,MAAM;CAMpB;;AArBH,AAgBI,YAhBQ,CAUV,QAAQ,CAMN,UAAU,CAAC;EACT,SAAS,EAAE,IAAI;EACf,WAAW,EAAE,GAAG;EAChB,KAAK,EXjPE,IAAI;CWkPZ;;ACxQL,AAAA,OAAO,CAAC;EACJ,gBAAgB,EZkBN,OAAO;EYjBjB,OAAO,EAAE,MAAM;CAsMlB;;AArMG,MAAM,CAAC,MAAM,MAAM,SAAS,EAAE,KAAK;EAHvC,AAAA,OAAO,CAAC;IAIA,cAAc,EAAE,IAAI;IACpB,WAAW,EAAE,IAAI;GAmMxB;;;AAxMD,AASY,OATL,CAOH,QAAQ,CACJ,KAAK,CACD,aAAa,CAAC;EACV,SAAS,EAAE,KAAK;EAChB,aAAa,EAAE,IAAI;EACnB,WAAW,EAAE,CAAC;CAIjB;;AAhBb,AAagB,OAbT,CAOH,QAAQ,CACJ,KAAK,CACD,aAAa,CAIT,GAAG,CAAC;EACA,KAAK,EAAE,IAAI;CACd;;AAfjB,AAiBY,OAjBL,CAOH,QAAQ,CACJ,KAAK,CASD,CAAC,CAAC;EACE,WAAW,EAAE,IAAI;EACjB,SAAS,EAAE,IAAI;EACf,KAAK,EZER,IAAI;EYDD,cAAc,EAAE,IAAI;CACvB;;AAtBb,AAwBQ,OAxBD,CAOH,QAAQ,CAiBJ,eAAe,CAAC;EACZ,KAAK,EZHJ,IAAI;EYIL,cAAc,EAAE,GAAG;EACnB,SAAS,EAAE,IAAI;EACf,WAAW,EAAE,GAAG;CACnB;;AA7BT,AA8BQ,OA9BD,CAOH,QAAQ,CAuBJ,aAAa,CAAC;EACV,WAAW,EAAE,IAAI;EACjB,UAAU,EAAE,MAAM;EAClB,OAAO,EAAE,IAAI;EACb,eAAe,EAAE,KAAK;CAgEzB;;AAlGT,AAmCY,OAnCL,CAOH,QAAQ,CAuBJ,aAAa,CAKT,CAAC,CAAC;EACE,OAAO,EAAE,KAAK;EACd,KAAK,EZhBR,OAAO;EYiBJ,YAAY,EAAE,GAAG;CA2DpB;;AAjGb,AAuCgB,OAvCT,CAOH,QAAQ,CAuBJ,aAAa,CAKT,CAAC,CAIG,IAAI,CAAC;EACD,MAAM,EAAE,IAAI;EACZ,KAAK,EAAE,IAAI;EACX,SAAS,EAAE,IAAI;EACf,WAAW,EAAE,GAAG;EAChB,aAAa,EAAE,cAAc;EAC7B,KAAK,EZvBZ,IAAI;CYwBA;;AA9CjB,AAgDoB,OAhDb,CAOH,QAAQ,CAuBJ,aAAa,CAKT,CAAC,AAYI,UAAW,CAAA,CAAC,EACT,IAAI,CAAC;EACD,KAAK,EAAE,KAAkB,CAAC,UAAU;EACpC,UAAU,EAAE,OAAe,CAAC,UAAU;CAKzC;;AAvDrB,AAmDwB,OAnDjB,CAOH,QAAQ,CAuBJ,aAAa,CAKT,CAAC,AAYI,UAAW,CAAA,CAAC,EACT,IAAI,AAGC,MAAM,CAAC;EACJ,KAAK,EAAE,KAAkB,CAAC,UAAU;EACpC,UAAU,EZhCzB,OAAO,CYgCiC,UAAU;CACtC;;AAtDzB,AA0DoB,OA1Db,CAOH,QAAQ,CAuBJ,aAAa,CAKT,CAAC,AAsBI,UAAW,CAAA,CAAC,EACT,IAAI,CAAC;EACD,UAAU,EAAE,OAAiB,CAAC,UAAU;EACxC,KAAK,EAAE,KAAkB,CAAC,UAAU;CAKvC;;AAjErB,AA6DwB,OA7DjB,CAOH,QAAQ,CAuBJ,aAAa,CAKT,CAAC,AAsBI,UAAW,CAAA,CAAC,EACT,IAAI,AAGC,MAAM,CAAC;EACJ,KAAK,EAAE,KAAkB,CAAC,UAAU;EACpC,UAAU,EZ1CzB,OAAO,CY0CiC,UAAU;CACtC;;AAhEzB,AAoEoB,OApEb,CAOH,QAAQ,CAuBJ,aAAa,CAKT,CAAC,AAgCI,UAAW,CAAA,CAAC,EACT,IAAI,CAAC;EACD,UAAU,EAAE,OAAiB,CAAC,UAAU;EACxC,KAAK,EAAE,KAAkB,CAAC,UAAU;CAKvC;;AA3ErB,AAuEwB,OAvEjB,CAOH,QAAQ,CAuBJ,aAAa,CAKT,CAAC,AAgCI,UAAW,CAAA,CAAC,EACT,IAAI,AAGC,MAAM,CAAC;EACJ,KAAK,EAAE,KAAkB,CAAC,UAAU;EACpC,UAAU,EZpDzB,OAAO,CYoDiC,UAAU;CACtC;;AA1EzB,AA8EoB,OA9Eb,CAOH,QAAQ,CAuBJ,aAAa,CAKT,CAAC,AA0CI,UAAW,CAAA,CAAC,EACT,IAAI,CAAC;EACD,UAAU,EAAE,yBAAyB,CAAC,UAAU;EAChD,KAAK,EAAE,KAAkB,CAAC,UAAU;CAKvC;;AArFrB,AAiFwB,OAjFjB,CAOH,QAAQ,CAuBJ,aAAa,CAKT,CAAC,AA0CI,UAAW,CAAA,CAAC,EACT,IAAI,AAGC,MAAM,CAAC;EACJ,KAAK,EAAE,KAAkB,CAAC,UAAU;EACpC,UAAU,EZ9DzB,OAAO,CY8DiC,UAAU;CACtC;;AApFzB,AAwFoB,OAxFb,CAOH,QAAQ,CAuBJ,aAAa,CAKT,CAAC,AAoDI,UAAW,CAAA,CAAC,EACT,IAAI,CAAC;EACD,UAAU,EAAE,yBAAyB,CAAC,UAAU;EAChD,KAAK,EAAE,KAAkB,CAAC,UAAU;CAKvC;;AA/FrB,AA2FwB,OA3FjB,CAOH,QAAQ,CAuBJ,aAAa,CAKT,CAAC,AAoDI,UAAW,CAAA,CAAC,EACT,IAAI,AAGC,MAAM,CAAC;EACJ,KAAK,EAAE,KAAkB,CAAC,UAAU;EACpC,UAAU,EZxEzB,OAAO,CYwEiC,UAAU;CACtC;;AA9FzB,AAmGQ,OAnGD,CAOH,QAAQ,CA4FJ,aAAa,CAAC;EACV,UAAU,EAAE,IAAI;EAChB,UAAU,EAAE,IAAI;EAChB,YAAY,EAAE,GAAG;CACpB;;AAvGT,AAwGQ,OAxGD,CAOH,QAAQ,CAiGJ,aAAa,CAAC,CAAC,CAAC;EACZ,KAAK,EZ/EL,OAAO;EYgFP,eAAe,EAAE,IAAI;CAIxB;;AA9GT,AA2GY,OA3GL,CAOH,QAAQ,CAiGJ,aAAa,CAAC,CAAC,AAGV,MAAM,CAAC;EACJ,KAAK,EZ3FN,OAAO;CY4FT;;AA7Gb,AA+GQ,OA/GD,CAOH,QAAQ,CAwGJ,aAAa,CAAC,EAAE,CAAC;EACb,aAAa,EAAE,GAAG;CACrB;;AAEG,MAAM,CAAC,MAAM,MAAM,SAAS,EAAE,KAAK;EAnH/C,AAkHQ,OAlHD,CAOH,QAAQ,CA2GJ,UAAU,CAAC;IAEH,UAAU,EAAE,IAAI;GAEvB;;;AAEG,MAAM,CAAC,MAAM,MAAM,SAAS,EAAE,KAAK;EAxH/C,AAuHQ,OAvHD,CAOH,QAAQ,CAgHJ,UAAU,CAAC;IAEH,UAAU,EAAE,IAAI;GAEvB;;;AA3HT,AA4HQ,OA5HD,CAOH,QAAQ,CAqHJ,KAAK,CAAC;EACF,WAAW,EAAE,IAAI;CAsDpB;;AAnLT,AA8HY,OA9HL,CAOH,QAAQ,CAqHJ,KAAK,CAED,CAAC,CAAC;EACE,WAAW,EAAE,IAAI;EACjB,SAAS,EAAE,IAAI;EACf,KAAK,EZ3GR,IAAI;EY4GD,cAAc,EAAE,IAAI;CACvB;;AAnIb,AAoIY,OApIL,CAOH,QAAQ,CAqHJ,KAAK,CAQD,WAAW,CAAC;EACR,OAAO,EAAE,MAAM;CA6ClB;;AAlLb,AAsIgB,OAtIT,CAOH,QAAQ,CAqHJ,KAAK,CAQD,WAAW,CAEP,WAAW,CAAC,aAAa,CAAC;EACtB,YAAY,EAAE,QAAQ;EACtB,gBAAgB,EAAE,WAAW;EAC7B,KAAK,EZ1HV,OAAO;CY2HL;;AA1IjB,AA2IgB,OA3IT,CAOH,QAAQ,CAqHJ,KAAK,CAQD,WAAW,CAOP,aAAa,CAAC;EACV,OAAO,EAAE,MAAM;EACf,OAAO,EAAE,KAAK;EACd,KAAK,EAAE,IAAI;EACX,MAAM,EAAE,2BAA2B;EACnC,OAAO,EAAE,gBAAgB;EACzB,YAAY,EAAE,OAAO;EACrB,SAAS,EAAE,IAAI;EACf,WAAW,EAAE,GAAG;EAChB,WAAW,EAAE,GAAG;EAEhB,eAAe,EAAE,WAAW;EAC5B,MAAM,EAAE,SAAS;EACjB,aAAa,EAAE,CAAC;EAChB,YAAY,EAAE,WAAW;EACzB,mBAAmB,EZpI1B,IAAI,CYoIqC,UAAU;EAC5C,UAAU,EAAE,4DAA4D;EACxE,UAAU,EAAE,eAAe;CAI9B;;AAhKjB,AA6JoB,OA7Jb,CAOH,QAAQ,CAqHJ,KAAK,CAQD,WAAW,CAOP,aAAa,AAkBR,MAAM,CAAC;EACJ,YAAY,EZxIvB,IAAI,CYwIkC,UAAU;CACxC;;AA/JrB,AAiKgB,OAjKT,CAOH,QAAQ,CAqHJ,KAAK,CAQD,WAAW,CA6BP,WAAW,CAAC,sBAAsB,CAAC;EAC/B,OAAO,EAAE,CAAC;EACV,OAAO,EAAE,KAAK;EACd,KAAK,EAAE,QAAQ;EACf,MAAM,EAAE,QAAQ;EAChB,WAAW,EAAE,QAAQ;EACrB,UAAU,EAAE,MAAM;EAClB,cAAc,EAAE,IAAI;EACpB,KAAK,EAAE,OAAO;EACd,QAAQ,EAAE,QAAQ;EAClB,KAAK,EAAE,IAAI;CACd;;AA5KjB,AA+KgB,OA/KT,CAOH,QAAQ,CAqHJ,KAAK,CAQD,WAAW,CA2CP,WAAW,CAAC;EACR,QAAQ,EAAE,QAAQ;CACrB;;AAjLjB,AAoLQ,OApLD,CAOH,QAAQ,CA6KJ,UAAU,CAAC;EACP,KAAK,EAAE,IAAI;EACX,UAAU,EAAE,MAAM;EAClB,UAAU,EAAE,IAAI;CAenB;;AAtMT,AAwLY,OAxLL,CAOH,QAAQ,CA6KJ,UAAU,CAIN,EAAE,CAAC;EACC,MAAM,EAAE,CAAC;EACT,UAAU,EAAE,GAAG,CAAC,KAAK,CAAC,sBAAsB,CAAC,UAAU;CAC1D;;AA3Lb,AA4LY,OA5LL,CAOH,QAAQ,CA6KJ,UAAU,CAQN,KAAK,CAAC;EACF,WAAW,EAAE,IAAI;EACjB,KAAK,EZvKJ,OAAO;CY8KX;;AArMb,AA+LgB,OA/LT,CAOH,QAAQ,CA6KJ,UAAU,CAQN,KAAK,CAGD,CAAC,CAAC;EACE,KAAK,EZjLV,OAAO;CYkLL;;AAjMjB,AAkMgB,OAlMT,CAOH,QAAQ,CA6KJ,UAAU,CAQN,KAAK,CAMD,IAAI,CAAC;EACD,KAAK,EZpLV,OAAO;CYqLL;;ACpMjB,AAAA,QAAQ,CAAC;EACP,YAAY,EAAE,IAAI;CA4MnB;;AA7MD,AAEE,QAFM,CAEN,QAAQ,CAAC;EACP,OAAO,EAAE,SAAS;CAyMnB;;AA5MH,AAII,QAJI,CAEN,QAAQ,CAEN,IAAI,CAAC;EACH,aAAa,EAAE,IAAI;CAsMpB;;AA3ML,AAMM,QANE,CAEN,QAAQ,CAEN,IAAI,CAEF,QAAQ,CAAC;EACP,QAAQ,EAAE,QAAQ;CACnB;;AARP,AASM,QATE,CAEN,QAAQ,CAEN,IAAI,CAKF,IAAI,AAAA,QAAQ,CAAC,KAAK,CAAA,AAAA,IAAC,CAAK,MAAM,AAAX,EAAa;EAC9B,OAAO,EAAE,IAAI;EACb,SAAS,EAAE,IAAI;EACf,MAAM,EAAE,GAAG,CAAC,KAAK,CbgBH,IAAI;EaflB,KAAK,EAAE,IAAI;EACX,KAAK,EAAE,IAAI;EACX,UAAU,EAAE,OAAO;CACpB;;AAhBP,AAiBM,QAjBE,CAEN,QAAQ,CAEN,IAAI,CAaF,IAAI,AAAA,QAAQ,CAAC,MAAM,CAAC;EAClB,OAAO,EAAE,IAAI;EACb,UAAU,EAAE,WAAW;EACvB,KAAK,EbMD,OAAO;EaLX,SAAS,EAAE,IAAI;EACf,MAAM,EAAE,GAAG,CAAC,KAAK,CbMH,IAAI;EaLlB,WAAW,EAAE,IAAI;EACjB,MAAM,EAAE,OAAO;EACf,QAAQ,EAAE,QAAQ;EAClB,KAAK,EAAE,CAAC;EACR,OAAO,EAAE,GAAG;CACb;;AA5BP,AA6BM,QA7BE,CAEN,QAAQ,CAEN,IAAI,CAyBF,IAAI,AAAA,QAAQ,CAAC,MAAM,AAAA,MAAM,CAAC;EACxB,UAAU,EbVG,OAAO;CaWrB;;AA/BP,AAgCM,QAhCE,CAEN,QAAQ,CAEN,IAAI,CA4BF,IAAI,AAAA,QAAQ,AAAA,OAAO,CAAC;EAClB,OAAO,EAAE,EAAE;EACX,KAAK,EAAE,IAAI;EACX,OAAO,EAAE,KAAK;CACf;;AApCP,AAsCQ,QAtCA,CAEN,QAAQ,CAEN,IAAI,CAiCF,UAAU,CACR,KAAK,CAAC;EACJ,aAAa,EAAE,CAAC;EAChB,MAAM,EAAE,WAAW;CA4JpB;;AApMT,AAyCU,QAzCF,CAEN,QAAQ,CAEN,IAAI,CAiCF,UAAU,CACR,KAAK,CAGH,YAAY,CAAC;EACX,aAAa,EAAE,CAAC;EAChB,gBAAgB,EAAE,WAAW;EAC7B,OAAO,EAAE,MAAM;EACf,MAAM,EAAE,IAAI;CASb;;AAtDX,AA8CY,QA9CJ,CAEN,QAAQ,CAEN,IAAI,CAiCF,UAAU,CACR,KAAK,CAGH,YAAY,CAKV,SAAS,CAAC;EACR,KAAK,Eb5BL,OAAO;Ea6BP,SAAS,EAAE,IAAI;EACf,WAAW,EAAE,GAAG;EAChB,eAAe,EAAE,IAAI;EACrB,cAAc,EAAE,SAAS;EACzB,YAAY,EAAE,CAAC;CAChB;;AArDb,AAuDU,QAvDF,CAEN,QAAQ,CAEN,IAAI,CAiCF,UAAU,CACR,KAAK,CAiBH,UAAU,CAAC;EACT,YAAY,EAAE,CAAC;CA2IhB;;AAnMX,AA0Dc,QA1DN,CAEN,QAAQ,CAEN,IAAI,CAiCF,UAAU,CACR,KAAK,CAiBH,UAAU,CAER,OAAO,CACL,WAAW,CAAC;EACV,MAAM,EAAE,KAAK;EACb,UAAU,EAAE,MAAM;EAClB,UAAU,EAAE,IAAI;CAejB;;AA5Ef,AA8DgB,QA9DR,CAEN,QAAQ,CAEN,IAAI,CAiCF,UAAU,CACR,KAAK,CAiBH,UAAU,CAER,OAAO,CACL,WAAW,CAIT,gBAAgB,CAAC;EACf,MAAM,EAAE,IAAI;CAYb;;AA3EjB,AAgEkB,QAhEV,CAEN,QAAQ,CAEN,IAAI,CAiCF,UAAU,CACR,KAAK,CAiBH,UAAU,CAER,OAAO,CACL,WAAW,CAIT,gBAAgB,AAEb,MAAM,CAAC;EACN,gBAAgB,EAAE,SAAS;CAC5B;;AAlEnB,AAmEkB,QAnEV,CAEN,QAAQ,CAEN,IAAI,CAiCF,UAAU,CACR,KAAK,CAiBH,UAAU,CAER,OAAO,CACL,WAAW,CAIT,gBAAgB,CAKd,CAAC,CAAC;EACA,KAAK,Eb5Cb,OAAO;Ea6CC,eAAe,EAAE,IAAI;EACrB,SAAS,EAAE,IAAI;CAIhB;;AA1EnB,AAuEoB,QAvEZ,CAEN,QAAQ,CAEN,IAAI,CAiCF,UAAU,CACR,KAAK,CAiBH,UAAU,CAER,OAAO,CACL,WAAW,CAIT,gBAAgB,CAKd,CAAC,AAIE,MAAM,CAAC;EACN,KAAK,EbpDN,OAAO;CaqDP;;AAzErB,AAgFgB,QAhFR,CAEN,QAAQ,CAEN,IAAI,CAiCF,UAAU,CACR,KAAK,CAiBH,UAAU,CAuBR,OAAO,CACL,WAAW,CACT,gBAAgB,CAAC;EACf,MAAM,EAAE,IAAI;EACZ,KAAK,Eb1DX,OAAO;Ea2DD,eAAe,EAAE,IAAI;EACrB,SAAS,EAAE,IAAI;CAChB;;AArFjB,AAuFc,QAvFN,CAEN,QAAQ,CAEN,IAAI,CAiCF,UAAU,CACR,KAAK,CAiBH,UAAU,CAuBR,OAAO,CASL,KAAK,CAAC;EACJ,OAAO,EAAE,IAAI;EACb,SAAS,EAAE,IAAI;CAehB;;AAxGf,AA0FgB,QA1FR,CAEN,QAAQ,CAEN,IAAI,CAiCF,UAAU,CACR,KAAK,CAiBH,UAAU,CAuBR,OAAO,CASL,KAAK,CAGH,CAAC,CAAC;EACA,KAAK,EbnEX,OAAO;EaoED,SAAS,EAAE,IAAI;EACf,MAAM,EAAE,SAAS;EACjB,YAAY,Eb3EhB,OAAO;Ea4EH,OAAO,EAAE,QAAQ;EACjB,MAAM,EAAE,IAAI;EACZ,eAAe,EAAE,IAAI;CAMtB;;AAvGjB,AAkGkB,QAlGV,CAEN,QAAQ,CAEN,IAAI,CAiCF,UAAU,CACR,KAAK,CAiBH,UAAU,CAuBR,OAAO,CASL,KAAK,CAGH,CAAC,AAQE,MAAM,CAAC;EACN,gBAAgB,EblFrB,OAAO,CakF8B,UAAU;EAC1C,KAAK,Eb9EZ,IAAI;Ea+EG,YAAY,EbpFjB,OAAO;CaqFH;;AAtGnB,AAyGc,QAzGN,CAEN,QAAQ,CAEN,IAAI,CAiCF,UAAU,CACR,KAAK,CAiBH,UAAU,CAuBR,OAAO,CA2BL,MAAM,CAAC;EACL,kBAAkB,EAAE,SAAS;EAC7B,aAAa,EAAE,SAAS;EACxB,UAAU,EAAE,SAAS;CAiEtB;;AA7Kf,AA8GkB,QA9GV,CAEN,QAAQ,CAEN,IAAI,CAiCF,UAAU,CACR,KAAK,CAiBH,UAAU,CAuBR,OAAO,CA2BL,MAAM,CAIJ,cAAc,CACZ,GAAG,CAAC;EACF,OAAO,EAAE,YAAY;CACtB;;AAhHnB,AAiHkB,QAjHV,CAEN,QAAQ,CAEN,IAAI,CAiCF,UAAU,CACR,KAAK,CAiBH,UAAU,CAuBR,OAAO,CA2BL,MAAM,CAIJ,cAAc,CAIZ,KAAK,CAAA,AAAA,IAAC,CAAK,OAAO,AAAZ,EAAc;EAClB,OAAO,EAAE,IAAI;CAyDd;;AA3KnB,AAmHoB,QAnHZ,CAEN,QAAQ,CAEN,IAAI,CAiCF,UAAU,CACR,KAAK,CAiBH,UAAU,CAuBR,OAAO,CA2BL,MAAM,CAIJ,cAAc,CAIZ,KAAK,CAAA,AAAA,IAAC,CAAK,OAAO,AAAZ,IAEF,KAAK,CAAC;EACN,KAAK,EAAE,IAAI;EACX,SAAS,EAAE,IAAI;CAyBhB;;AA9IrB,AAsHsB,QAtHd,CAEN,QAAQ,CAEN,IAAI,CAiCF,UAAU,CACR,KAAK,CAiBH,UAAU,CAuBR,OAAO,CA2BL,MAAM,CAIJ,cAAc,CAIZ,KAAK,CAAA,AAAA,IAAC,CAAK,OAAO,AAAZ,IAEF,KAAK,CAGL,IAAI,CAAC;EACH,OAAO,EAAE,IAAI;EACb,eAAe,EAAE,MAAM;EACvB,WAAW,EAAE,MAAM;EACnB,KAAK,EAAE,IAAI;EACX,MAAM,EAAE,IAAI;EACZ,MAAM,EAAE,YAAY;EACpB,cAAc,EAAE,MAAM;EACtB,MAAM,EAAE,OAAO;EACf,aAAa,EAAE,GAAG;EAClB,MAAM,EAAE,iBAAiB;EACzB,UAAU,EAAE,CAAC,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC,CAAC,mBAAmB;EAC3C,iBAAiB,EAAE,SAAS;EAC5B,mBAAmB,EAAE,MAAM;EAC3B,UAAU,EAAE,MAAM;CASnB;;AA7IvB,AAsIwB,QAtIhB,CAEN,QAAQ,CAEN,IAAI,CAiCF,UAAU,CACR,KAAK,CAiBH,UAAU,CAuBR,OAAO,CA2BL,MAAM,CAIJ,cAAc,CAIZ,KAAK,CAAA,AAAA,IAAC,CAAK,OAAO,AAAZ,IAEF,KAAK,CAGL,IAAI,CAgBF,GAAG,CAAC;EACF,OAAO,EAAE,CAAC;EACV,kBAAkB,EAAE,SAAS;EAC7B,aAAa,EAAE,SAAS;EACxB,UAAU,EAAE,SAAS;EACrB,KAAK,EAAE,GAAG;CACX;;AA5IzB,AA+IoB,QA/IZ,CAEN,QAAQ,CAEN,IAAI,CAiCF,UAAU,CACR,KAAK,CAiBH,UAAU,CAuBR,OAAO,CA2BL,MAAM,CAIJ,cAAc,CAIZ,KAAK,CAAA,AAAA,IAAC,CAAK,OAAO,AAAZ,CA8BH,QAAQ,GAAG,KAAK,CAAC,IAAI,CAAC;EACrB,gBAAgB,EbnG5B,OAAO;CaoGI;;AAjJrB,AAkJoB,QAlJZ,CAEN,QAAQ,CAEN,IAAI,CAiCF,UAAU,CACR,KAAK,CAiBH,UAAU,CAuBR,OAAO,CA2BL,MAAM,CAIJ,cAAc,CAIZ,KAAK,CAAA,AAAA,IAAC,CAAK,OAAO,AAAZ,CAiCH,QAAQ,GAAG,KAAK,CAAC,IAAI,CAAC;EACrB,gBAAgB,EbrG5B,OAAO;CasGI;;AApJrB,AAqJoB,QArJZ,CAEN,QAAQ,CAEN,IAAI,CAiCF,UAAU,CACR,KAAK,CAiBH,UAAU,CAuBR,OAAO,CA2BL,MAAM,CAIJ,cAAc,CAIZ,KAAK,CAAA,AAAA,IAAC,CAAK,OAAO,AAAZ,CAoCH,QAAQ,GAAG,KAAK,CAAC,IAAI,CAAC;EACrB,gBAAgB,EbvG5B,OAAO;CawGI;;AAvJrB,AAwJoB,QAxJZ,CAEN,QAAQ,CAEN,IAAI,CAiCF,UAAU,CACR,KAAK,CAiBH,UAAU,CAuBR,OAAO,CA2BL,MAAM,CAIJ,cAAc,CAIZ,KAAK,CAAA,AAAA,IAAC,CAAK,OAAO,AAAZ,CAuCH,QAAQ,GAAG,KAAK,CAAC,IAAI,CAAC;EACrB,gBAAgB,EbzG5B,OAAO;Ca0GI;;AA1JrB,AA2JoB,QA3JZ,CAEN,QAAQ,CAEN,IAAI,CAiCF,UAAU,CACR,KAAK,CAiBH,UAAU,CAuBR,OAAO,CA2BL,MAAM,CAIJ,cAAc,CAIZ,KAAK,CAAA,AAAA,IAAC,CAAK,OAAO,AAAZ,CA0CH,QAAQ,GAAG,KAAK,CAAC,IAAI,CAAC;EACrB,gBAAgB,Eb7IvB,OAAO;Ca8ID;;AA7JrB,AA8JoB,QA9JZ,CAEN,QAAQ,CAEN,IAAI,CAiCF,UAAU,CACR,KAAK,CAiBH,UAAU,CAuBR,OAAO,CA2BL,MAAM,CAIJ,cAAc,CAIZ,KAAK,CAAA,AAAA,IAAC,CAAK,OAAO,AAAZ,CA6CH,QAAQ,GAAG,KAAK,CAAC,IAAI,CAAC;EACrB,gBAAgB,Eb1IzB,OAAO;Ca2IC;;AAhKrB,AAiKoB,QAjKZ,CAEN,QAAQ,CAEN,IAAI,CAiCF,UAAU,CACR,KAAK,CAiBH,UAAU,CAuBR,OAAO,CA2BL,MAAM,CAIJ,cAAc,CAIZ,KAAK,CAAA,AAAA,IAAC,CAAK,OAAO,AAAZ,CAgDH,QAAQ,GAAG,KAAK,CAAC,IAAI,CAAC;EACrB,gBAAgB,EblH5B,OAAO;CamHI;;AAnKrB,AAoKoB,QApKZ,CAEN,QAAQ,CAEN,IAAI,CAiCF,UAAU,CACR,KAAK,CAiBH,UAAU,CAuBR,OAAO,CA2BL,MAAM,CAIJ,cAAc,CAIZ,KAAK,CAAA,AAAA,IAAC,CAAK,OAAO,AAAZ,CAmDH,QAAQ,GAAG,KAAK,CAAC,IAAI,CAAC;EACrB,gBAAgB,EAAE,IAAI;CACvB;;AAtKrB,AAuKoB,QAvKZ,CAEN,QAAQ,CAEN,IAAI,CAiCF,UAAU,CACR,KAAK,CAiBH,UAAU,CAuBR,OAAO,CA2BL,MAAM,CAIJ,cAAc,CAIZ,KAAK,CAAA,AAAA,IAAC,CAAK,OAAO,AAAZ,CAsDH,QAAQ,GAAG,KAAK,CAAC,IAAI,CAAC,GAAG,CAAC;EACzB,OAAO,EAAE,YAAY;CAEtB;;AA1KrB,AA8Kc,QA9KN,CAEN,QAAQ,CAEN,IAAI,CAiCF,UAAU,CACR,KAAK,CAiBH,UAAU,CAuBR,OAAO,CAgGL,KAAK,CAAC;EACJ,OAAO,EAAE,IAAI;EACb,SAAS,EAAE,IAAI;CAiBhB;;AAjMf,AAiLgB,QAjLR,CAEN,QAAQ,CAEN,IAAI,CAiCF,UAAU,CACR,KAAK,CAiBH,UAAU,CAuBR,OAAO,CAgGL,KAAK,CAGH,CAAC,CAAC;EACA,KAAK,Eb1JX,OAAO;Ea2JD,SAAS,EAAE,IAAI;EACf,MAAM,EAAE,SAAS;EACjB,YAAY,Eb9Jb,OAAO;Ea+JN,OAAO,EAAE,QAAQ;EACjB,MAAM,EAAE,IAAI;EACZ,eAAe,EAAE,IAAI;EACrB,WAAW,EAAE,GAAG;EAChB,gBAAgB,EbnKjB,OAAO;CayKP;;AAhMjB,AA2LkB,QA3LV,CAEN,QAAQ,CAEN,IAAI,CAiCF,UAAU,CACR,KAAK,CAiBH,UAAU,CAuBR,OAAO,CAgGL,KAAK,CAGH,CAAC,AAUE,MAAM,CAAC;EACN,gBAAgB,EbvKvB,OAAO,CauK+B,UAAU;EACzC,KAAK,EbvKZ,IAAI;EawKG,YAAY,EbzKnB,OAAO;Ca0KD;;AA/LnB,AAsMM,QAtME,CAEN,QAAQ,CAEN,IAAI,CAkMF,SAAS,AAAA,KAAK,CAAC;EACb,MAAM,EAAE,SAAS;EACjB,YAAY,EAAE,WAAW;EACzB,mBAAmB,Eb7KL,IAAI,Ca6KwB,UAAU;CACrD;;AG1MP,AACI,aADS,CACT,WAAW,CAAC;EACR,QAAQ,EAAE,QAAQ;CAqCrB;;AAvCL,AAMoB,aANP,CACT,WAAW,AAEN,MAAM,CAEE,OAAG,AACC,OAAO,CAAC;EACL,KAAK,EAAE,eAAe;EACtB,UAAU,EAAE,OAAO;CACtB;;AATrB,AAaQ,aAbK,CACT,WAAW,CAYP,OAAO,CAAC;EACJ,KAAK,EAAE,UAAU;EACjB,SAAS,EAAE,KAAK;EAChB,OAAO,EAAE,YAAY;CAKxB;;AArBT,AAiBY,aAjBC,CACT,WAAW,CAYP,OAAO,CAIH,GAAG,CAAC;EACA,KAAK,EAAE,IAAI;EACX,OAAO,EAAE,YAAY;CACxB;;AApBb,AAsBQ,aAtBK,CACT,WAAW,CAqBP,WAAW,CAAC;EACR,QAAQ,EAAE,QAAQ;EAClB,KAAK,EAAE,IAAI;EACX,IAAI,EAAE,CAAC;EACP,GAAG,EAAE,KAAK;CAYb;;AAXG,MAAM,CAAC,MAAM,MAAM,SAAS,EAAE,KAAK;EA3B/C,AAsBQ,aAtBK,CACT,WAAW,CAqBP,WAAW,CAAC;IAMJ,IAAI,EAAE,IAAI;GAUjB;;;AARG,MAAM,CAAC,MAAM,MAAM,SAAS,EAAE,KAAK;EA9B/C,AAsBQ,aAtBK,CACT,WAAW,CAqBP,WAAW,CAAC;IASJ,QAAQ,EAAE,KAAK;GAOtB;;;AAtCT,AAiCY,aAjCC,CACT,WAAW,CAqBP,WAAW,CAWP,KAAK,CAAC;EACF,SAAS,EAAE,IAAI;EACf,KAAK,EhBhBP,OAAO;EgBiBL,WAAW,EAAE,GAAG;CACnB;;AArCb,AAwCI,aAxCS,CAwCT,YAAY,CAAC;EACT,QAAQ,EAAE,QAAQ;EAClB,UAAU,EAAE,MAAM;CAmCrB;;AAlCG,MAAM,CAAC,MAAM,MAAM,SAAS,EAAE,KAAK;EA3C3C,AAwCI,aAxCS,CAwCT,YAAY,CAAC;IAIL,UAAU,EAAE,CAAC;GAiCpB;;;AA/BG,MAAM,CAAC,MAAM,MAAM,SAAS,EAAE,KAAK;EA9C3C,AAwCI,aAxCS,CAwCT,YAAY,CAAC;IAOL,UAAU,EAAE,IAAI;GA8BvB;;;AA7EL,AAoDoB,aApDP,CAwCT,YAAY,AASP,MAAM,CAEE,OAAG,AACC,OAAO,CAAC;EACL,KAAK,EAAE,eAAe;EACtB,UAAU,EAAE,OAAO;CACtB;;AAvDrB,AA2DQ,aA3DK,CAwCT,YAAY,CAmBR,OAAO,CAAC;EACJ,SAAS,EAAE,KAAK;CAKnB;;AAjET,AA6DY,aA7DC,CAwCT,YAAY,CAmBR,OAAO,CAEH,GAAG,CAAC;EACA,KAAK,EAAE,IAAI;EACX,OAAO,EAAE,YAAY;CACxB;;AAhEb,AAkEQ,aAlEK,CAwCT,YAAY,CA0BR,WAAW,CAAC;EACR,WAAW,EAAE,IAAI;EACjB,KAAK,EAAE,IAAI;CAQd;;AA5ET,AAuEY,aAvEC,CAwCT,YAAY,CA0BR,WAAW,CAKP,KAAK,CAAC;EACF,SAAS,EAAE,IAAI;EACf,KAAK,EhBtDP,OAAO;EgBuDL,WAAW,EAAE,GAAG;CACnB;;AA3Eb,AA8EI,aA9ES,CA8ET,YAAY,CAAC;EACT,QAAQ,EAAE,QAAQ;EAClB,UAAU,EAAE,IAAI;CAsCnB;;AAtHL,AAoFoB,aApFP,CA8ET,YAAY,AAGP,MAAM,CAEE,OAAG,AACC,OAAO,CAAC;EACL,KAAK,EAAE,eAAe;EACtB,UAAU,EAAE,OAAO;CACtB;;AAvFrB,AA2FQ,aA3FK,CA8ET,YAAY,CAaR,OAAO,CAAC;EACJ,KAAK,EAAE,UAAU;EACjB,SAAS,EAAE,KAAK;EAChB,cAAc,EAAE,IAAI;CAKvB;;AAnGT,AA+FY,aA/FC,CA8ET,YAAY,CAaR,OAAO,CAIH,GAAG,CAAC;EACA,KAAK,EAAE,IAAI;EACX,OAAO,EAAE,YAAY;CACxB;;AAlGb,AAoGQ,aApGK,CA8ET,YAAY,CAsBR,WAAW,CAAC;EACR,QAAQ,EAAE,QAAQ;EAClB,KAAK,EAAE,IAAI;EACX,IAAI,EAAE,CAAC;EACP,GAAG,EAAE,KAAK;CAab;;AAZG,MAAM,CAAC,MAAM,MAAM,SAAS,EAAE,KAAK;EAzG/C,AAoGQ,aApGK,CA8ET,YAAY,CAsBR,WAAW,CAAC;IAMJ,IAAI,EAAE,MAAM;GAWnB;;;AATG,MAAM,CAAC,MAAM,MAAM,SAAS,EAAE,KAAK;EA5G/C,AAoGQ,aApGK,CA8ET,YAAY,CAsBR,WAAW,CAAC;IASJ,QAAQ,EAAE,KAAK;IACf,WAAW,EAAE,eAAe;GAOnC;;;AArHT,AAgHY,aAhHC,CA8ET,YAAY,CAsBR,WAAW,CAYP,KAAK,CAAC;EACF,SAAS,EAAE,IAAI;EACf,KAAK,EhB/FP,OAAO;EgBgGL,WAAW,EAAE,GAAG;CACnB;;ACpHb,AACE,YADU,CACV,KAAK,CAAC;EACJ,KAAK,EAAE,IAAI;EACX,MAAM,EAAE,SAAS;CAClB;;AAJH,AAKE,YALU,CAKV,OAAO,CAAC,SAAS,CAAC;EAChB,QAAQ,EAAE,QAAQ;EAClB,MAAM,EAAE,eAAe;EACvB,gBAAgB,EjBcP,IAAI;EiBbb,+GAA+G;EAC/G,aAAa,EAAE,GAAG;EAClB,eAAe,EAAE,MAAM;CACxB;;AAZH,AAaE,YAbU,CAaV,OAAO,CAAC,SAAS,CAAC,EAAE,CAAC;EACnB,MAAM,EAAE,cAAc;CACvB;;AAfH,AAgBE,YAhBU,CAgBV,OAAO,CAAC,SAAS,CAAC,EAAE,CAAC,CAAC,CAAC;EACrB,QAAQ,EAAE,QAAQ;EAClB,YAAY,EAAE,cAAc;EAC5B,OAAO,EAAE,oBAAoB;EAC7B,SAAS,EAAE,IAAI;EACf,MAAM,EAAE,eAAe;EACvB,KAAK,EjBHK,OAAO;EiBIjB,WAAW,EAAE,GAAG;CASjB;;AARC,MAAM,CAAC,MAAM,MAAM,SAAS,EAAE,KAAK;EAxBvC,AAgBE,YAhBU,CAgBV,OAAO,CAAC,SAAS,CAAC,EAAE,CAAC,CAAC,CAAC;IASnB,OAAO,EAAE,oBAAoB;IAC7B,SAAS,EAAE,IAAI;GAMlB;;;AAJC,MAAM,CAAC,MAAM,MAAM,SAAS,EAAE,KAAK;EA5BvC,AAgBE,YAhBU,CAgBV,OAAO,CAAC,SAAS,CAAC,EAAE,CAAC,CAAC,CAAC;IAanB,OAAO,EAAE,oBAAoB;IAC7B,SAAS,EAAE,IAAI;GAElB;;;AAhCH,AAiCE,YAjCU,CAiCV,OAAO,CAAC,SAAS,CAAC,CAAC,AAAA,MAAM,CAAC;EACxB,gBAAgB,EAAE,eAAe;EACjC,MAAM,EAAE,IAAI;CACb;;AApCH,AAqCE,YArCU,CAqCV,OAAO,CAAC,OAAO,CAAC;EACd,OAAO,EAAE,YAAY;EACrB,MAAM,EAAE,GAAG;EACX,aAAa,EAAE,GAAG;EAClB,gBAAgB,EjB1BL,OAAO;EiB2BlB,QAAQ,EAAE,QAAQ;EAClB,OAAO,EAAE,IAAI;EACb,MAAM,EAAE,CAAC;EACT,UAAU,EAAE,eAAe;CAI5B;;AAHC,MAAM,CAAC,MAAM,MAAM,SAAS,EAAE,KAAK;EA9CvC,AAqCE,YArCU,CAqCV,OAAO,CAAC,OAAO,CAAC;IAUZ,OAAO,EAAE,eAAe;GAE3B;;;AAjDH,AAkDE,YAlDU,CAkDV,OAAO,CAAC,SAAS,CAAC,OAAO,CAAC;EACxB,gBAAgB,EAAE,sBAAsB;EACxC,MAAM,EAAE,eAAe;EACvB,KAAK,EjBtCM,OAAO,CiBsCG,UAAU;CAChC;;AAtDH,AAuDE,YAvDU,CAuDV,YAAY,CAAC;EACX,WAAW,EAAE,IAAI;CAuOlB;;AAtOC,MAAM,CAAC,MAAM,MAAM,SAAS,EAAE,KAAK;EAzDvC,AAuDE,YAvDU,CAuDV,YAAY,CAAC;IAGT,WAAW,EAAE,IAAI;GAqOpB;;;AA/RH,AA6DM,YA7DM,CAuDV,YAAY,CAKV,SAAS,CACP,QAAQ,CAAC;EACP,QAAQ,EAAE,QAAQ;EAClB,aAAa,EAAE,IAAI;CA8NpB;;AA7RP,AAiEU,YAjEE,CAuDV,YAAY,CAKV,SAAS,CACP,QAAQ,AAGL,MAAM,CACL,MAAM,CAAC;EACL,KAAK,EAAE,cAAc;EACrB,OAAO,EAAE,YAAY;CAItB;;AAvEX,AAoEY,YApEA,CAuDV,YAAY,CAKV,SAAS,CACP,QAAQ,AAGL,MAAM,CACL,MAAM,CAGJ,EAAE,CAAC;EACD,OAAO,EAAE,gBAAgB;CAC1B;;AAtEb,AAwEU,YAxEE,CAuDV,YAAY,CAKV,SAAS,CACP,QAAQ,AAGL,MAAM,CAQL,aAAa,CAAC;EACZ,OAAO,EAAE,YAAY;CACtB;;AA1EX,AA2EU,YA3EE,CAuDV,YAAY,CAKV,SAAS,CACP,QAAQ,AAGL,MAAM,CAWL,SAAS,CAAC;EACR,GAAG,EAAE,eAAe;EACpB,OAAO,EAAE,YAAY;CACtB;;AA9EX,AA+EU,YA/EE,CAuDV,YAAY,CAKV,SAAS,CACP,QAAQ,AAGL,MAAM,CAeL,MAAM,CAAC;EACL,OAAO,EAAE,YAAY;CACtB;;AAjFX,AAmFQ,YAnFI,CAuDV,YAAY,CAKV,SAAS,CACP,QAAQ,CAsBN,YAAY,CAAC;EACX,SAAS,EAAE,KAAK;CA+FjB;;AAnLT,AAqFU,YArFE,CAuDV,YAAY,CAKV,SAAS,CACP,QAAQ,CAsBN,YAAY,CAEV,GAAG,CAAC;EACF,KAAK,EAAE,IAAI;CACZ;;AAvFX,AAwFU,YAxFE,CAuDV,YAAY,CAKV,SAAS,CACP,QAAQ,CAsBN,YAAY,CAKV,MAAM,CAAC;EACL,KAAK,EAAE,IAAI;EACX,MAAM,EAAE,IAAI;EAEZ,QAAQ,EAAE,QAAQ;EAClB,GAAG,EAAE,CAAC;EACN,OAAO,EAAE,IAAI;EACb,eAAe,EAAE,GAAG;EACpB,WAAW,EAAE,MAAM;EACnB,OAAO,EAAE,CAAC;EACV,KAAK,EAAE,CAAC;EACR,kBAAkB,EAAE,SAAS;EAC7B,aAAa,EAAE,SAAS;EACxB,UAAU,EAAE,SAAS;EACrB,OAAO,EAAE,CAAC;CAoDX;;AA1JX,AAuGY,YAvGA,CAuDV,YAAY,CAKV,SAAS,CACP,QAAQ,CAsBN,YAAY,CAKV,MAAM,CAeJ,EAAE,CAAC;EACD,YAAY,EAAE,CAAC;EACf,OAAO,EAAE,IAAI;EACb,QAAQ,EAAE,QAAQ;CA+CnB;;AAzJb,AA2Gc,YA3GF,CAuDV,YAAY,CAKV,SAAS,CACP,QAAQ,CAsBN,YAAY,CAKV,MAAM,CAeJ,EAAE,CAIA,EAAE,CAAC;EACD,UAAU,EjBtFb,IAAI;EiBuFD,OAAO,EAAE,GAAG;EACZ,aAAa,EAAE,GAAG;CA0CnB;;AAxJf,AAgHkB,YAhHN,CAuDV,YAAY,CAKV,SAAS,CACP,QAAQ,CAsBN,YAAY,CAKV,MAAM,CAeJ,EAAE,CAIA,EAAE,AAIC,MAAM,CACL,OAAO,CAAC;EACN,OAAO,EAAE,YAAY;CACtB;;AAlHnB,AAoHgB,YApHJ,CAuDV,YAAY,CAKV,SAAS,CACP,QAAQ,CAsBN,YAAY,CAKV,MAAM,CAeJ,EAAE,CAIA,EAAE,CASA,OAAO,CAAC;EACN,QAAQ,EAAE,QAAQ;EAClB,OAAO,EAAE,OAAO;EAChB,gBAAgB,EjBlGrB,OAAO;EiBmGF,KAAK,EjBlGV,IAAI;EiBmGC,OAAO,EAAE,GAAG;EACZ,GAAG,EAAE,IAAI;EACT,KAAK,EAAE,IAAI;EACX,kBAAkB,EAAE,SAAS;EAC7B,aAAa,EAAE,SAAS;EACxB,UAAU,EAAE,SAAS;EACrB,OAAO,EAAE,CAAC;CAWX;;AA1IjB,AAgIkB,YAhIN,CAuDV,YAAY,CAKV,SAAS,CACP,QAAQ,CAsBN,YAAY,CAKV,MAAM,CAeJ,EAAE,CAIA,EAAE,CASA,OAAO,AAYJ,OAAO,CAAC;EACP,OAAO,EAAE,GAAG;EACZ,gBAAgB,EAAE,IAAI;EACtB,MAAM,EAAE,GAAG;EACX,KAAK,EAAE,GAAG;EACV,QAAQ,EAAE,QAAQ;EAClB,GAAG,EAAE,IAAI;EACT,SAAS,EAAE,aAAa;EACxB,KAAK,EAAE,IAAI;CACZ;;AAzInB,AA2IgB,YA3IJ,CAuDV,YAAY,CAKV,SAAS,CACP,QAAQ,CAsBN,YAAY,CAKV,MAAM,CAeJ,EAAE,CAIA,EAAE,CAgCA,WAAW,CAAC;EACV,aAAa,EAAE,CAAC;CACjB;;AA7IjB,AA8IgB,YA9IJ,CAuDV,YAAY,CAKV,SAAS,CACP,QAAQ,CAsBN,YAAY,CAKV,MAAM,CAeJ,EAAE,CAIA,EAAE,CAmCA,CAAC,CAAC;EACA,KAAK,EjB1HV,OAAO;EiB2HF,eAAe,EAAE,IAAI;CACtB;;AAjJjB,AAkJgB,YAlJJ,CAuDV,YAAY,CAKV,SAAS,CACP,QAAQ,CAsBN,YAAY,CAKV,MAAM,CAeJ,EAAE,CAIA,EAAE,CAuCA,eAAe,CAAC;EACd,SAAS,EAAE,IAAI;CAChB;;AApJjB,AAqJgB,YArJJ,CAuDV,YAAY,CAKV,SAAS,CACP,QAAQ,CAsBN,YAAY,CAKV,MAAM,CAeJ,EAAE,CAIA,EAAE,CA0CA,IAAI,CAAC;EACH,SAAS,EAAE,IAAI;CAChB;;AAvJjB,AA2JU,YA3JE,CAuDV,YAAY,CAKV,SAAS,CACP,QAAQ,CAsBN,YAAY,CAwEV,IAAI,CAAC;EACH,QAAQ,EAAE,QAAQ;EAClB,GAAG,EAAE,IAAI;EACT,IAAI,EAAE,CAAC;EACP,gBAAgB,EjBzIf,IAAI;EiB0IL,KAAK,EjB3IJ,OAAO;EiB4IR,cAAc,EAAE,GAAG;EACnB,SAAS,EAAE,IAAI;EACf,WAAW,EAAE,GAAG;EAChB,OAAO,EAAE,QAAQ;EACjB,cAAc,EAAE,SAAS;CAC1B;;AAtKX,AAuKU,YAvKE,CAuDV,YAAY,CAKV,SAAS,CACP,QAAQ,CAsBN,YAAY,CAoFV,KAAK,CAAC;EACJ,QAAQ,EAAE,QAAQ;EAClB,GAAG,EAAE,IAAI;EACT,IAAI,EAAE,CAAC;EACP,gBAAgB,EjBtJf,OAAO;EiBuJR,KAAK,EjBtJJ,IAAI;EiBuJL,cAAc,EAAE,GAAG;EACnB,SAAS,EAAE,IAAI;EACf,WAAW,EAAE,GAAG;EAChB,OAAO,EAAE,QAAQ;EACjB,cAAc,EAAE,SAAS;CAC1B;;AAlLX,AAoLQ,YApLI,CAuDV,YAAY,CAKV,SAAS,CACP,QAAQ,CAuHN,YAAY,CAAC;EACX,WAAW,EAAE,IAAI;EACjB,QAAQ,EAAE,QAAQ;CAsGnB;;AA5RT,AAuLU,YAvLE,CAuDV,YAAY,CAKV,SAAS,CACP,QAAQ,CAuHN,YAAY,CAGV,SAAS,CAAC;EACR,KAAK,EjBvIP,OAAO;EiBwIL,QAAQ,EAAE,QAAQ;EAClB,GAAG,EAAE,KAAK;EACV,OAAO,EAAE,CAAC;EACV,SAAS,EAAE,IAAI;EACf,WAAW,EAAE,GAAG;EAChB,cAAc,EAAE,KAAK;EACrB,kBAAkB,EAAE,SAAS;EAC7B,aAAa,EAAE,SAAS;EACxB,UAAU,EAAE,SAAS;CACtB;;AAlMX,AAmMU,YAnME,CAuDV,YAAY,CAKV,SAAS,CACP,QAAQ,CAuHN,YAAY,CAeV,aAAa,CAAC;EACZ,KAAK,EjBjLH,OAAO;EiBkLT,SAAS,EAAE,IAAI;EACf,WAAW,EAAE,GAAG;EAChB,cAAc,EAAE,GAAG;EACnB,OAAO,EAAE,CAAC;EACV,kBAAkB,EAAE,SAAS;EAC7B,aAAa,EAAE,SAAS;EACxB,UAAU,EAAE,SAAS;CACtB;;AA5MX,AA6MU,YA7ME,CAuDV,YAAY,CAKV,SAAS,CACP,QAAQ,CAuHN,YAAY,CAyBV,OAAO,CAAC;EACN,OAAO,EAAE,IAAI;CASd;;AAvNX,AA+MY,YA/MA,CAuDV,YAAY,CAKV,SAAS,CACP,QAAQ,CAuHN,YAAY,CAyBV,OAAO,CAEL,CAAC,CAAC;EACA,SAAS,EAAE,IAAI;EACf,OAAO,EAAE,KAAK;EACd,YAAY,EAAE,GAAG;CAIlB;;AAtNb,AAmNc,YAnNF,CAuDV,YAAY,CAKV,SAAS,CACP,QAAQ,CAuHN,YAAY,CAyBV,OAAO,CAEL,CAAC,CAIC,GAAG,CAAC;EACF,KAAK,EAAE,IAAI;CACZ;;AArNf,AAwNU,YAxNE,CAuDV,YAAY,CAKV,SAAS,CACP,QAAQ,CAuHN,YAAY,CAoCV,MAAM,CAAC;EACL,KAAK,EjBtMH,OAAO;EiBuMT,SAAS,EAAE,IAAI;EACf,WAAW,EAAE,GAAG;EAChB,WAAW,EAAE,IAAI;CAClB;;AA7NX,AA8NU,YA9NE,CAuDV,YAAY,CAKV,SAAS,CACP,QAAQ,CAuHN,YAAY,CA0CV,MAAM,CAAC;EACL,QAAQ,EAAE,QAAQ;EAClB,MAAM,EAAE,GAAG;EACX,KAAK,EAAE,IAAI;EACX,OAAO,EAAE,GAAG;EACZ,OAAO,EAAE,CAAC;EACV,kBAAkB,EAAE,SAAS;EAC7B,aAAa,EAAE,SAAS;EACxB,UAAU,EAAE,SAAS;CAqDtB;;AA3RX,AAwOc,YAxOF,CAuDV,YAAY,CAKV,SAAS,CACP,QAAQ,CAuHN,YAAY,CA0CV,MAAM,CASJ,cAAc,CACZ,GAAG,CAAC;EACF,OAAO,EAAE,YAAY;CACtB;;AA1Of,AA2Oc,YA3OF,CAuDV,YAAY,CAKV,SAAS,CACP,QAAQ,CAuHN,YAAY,CA0CV,MAAM,CASJ,cAAc,CAIZ,KAAK,CAAA,AAAA,IAAC,CAAK,OAAO,AAAZ,EAAc;EAClB,OAAO,EAAE,IAAI;CA6Cd;;AAzRf,AA6OgB,YA7OJ,CAuDV,YAAY,CAKV,SAAS,CACP,QAAQ,CAuHN,YAAY,CA0CV,MAAM,CASJ,cAAc,CAIZ,KAAK,CAAA,AAAA,IAAC,CAAK,OAAO,AAAZ,IAEF,KAAK,CAAC;EACN,KAAK,EAAE,IAAI;EACX,SAAS,EAAE,IAAI;CAyBhB;;AAxQjB,AAgPkB,YAhPN,CAuDV,YAAY,CAKV,SAAS,CACP,QAAQ,CAuHN,YAAY,CA0CV,MAAM,CASJ,cAAc,CAIZ,KAAK,CAAA,AAAA,IAAC,CAAK,OAAO,AAAZ,IAEF,KAAK,CAGL,IAAI,CAAC;EACH,OAAO,EAAE,IAAI;EACb,eAAe,EAAE,MAAM;EACvB,WAAW,EAAE,MAAM;EACnB,KAAK,EAAE,IAAI;EACX,MAAM,EAAE,IAAI;EACZ,MAAM,EAAE,YAAY;EACpB,cAAc,EAAE,MAAM;EACtB,MAAM,EAAE,OAAO;EACf,aAAa,EAAE,GAAG;EAClB,MAAM,EAAE,iBAAiB;EACzB,UAAU,EAAE,CAAC,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC,CAAC,mBAAmB;EAC3C,iBAAiB,EAAE,SAAS;EAC5B,mBAAmB,EAAE,MAAM;EAC3B,UAAU,EAAE,MAAM;CASnB;;AAvQnB,AAgQoB,YAhQR,CAuDV,YAAY,CAKV,SAAS,CACP,QAAQ,CAuHN,YAAY,CA0CV,MAAM,CASJ,cAAc,CAIZ,KAAK,CAAA,AAAA,IAAC,CAAK,OAAO,AAAZ,IAEF,KAAK,CAGL,IAAI,CAgBF,GAAG,CAAC;EACF,OAAO,EAAE,CAAC;EACV,kBAAkB,EAAE,SAAS;EAC7B,aAAa,EAAE,SAAS;EACxB,UAAU,EAAE,SAAS;EACrB,KAAK,EAAE,GAAG;CACX;;AAtQrB,AAyQgB,YAzQJ,CAuDV,YAAY,CAKV,SAAS,CACP,QAAQ,CAuHN,YAAY,CA0CV,MAAM,CASJ,cAAc,CAIZ,KAAK,CAAA,AAAA,IAAC,CAAK,OAAO,AAAZ,CA8BH,QAAQ,GAAG,KAAK,CAAC,IAAI,CAAC;EACrB,gBAAgB,EjB7NxB,OAAO;CiB8NA;;AA3QjB,AA4QgB,YA5QJ,CAuDV,YAAY,CAKV,SAAS,CACP,QAAQ,CAuHN,YAAY,CA0CV,MAAM,CASJ,cAAc,CAIZ,KAAK,CAAA,AAAA,IAAC,CAAK,OAAO,AAAZ,CAiCH,QAAQ,GAAG,KAAK,CAAC,IAAI,CAAC;EACrB,gBAAgB,EjB/NxB,OAAO;CiBgOA;;AA9QjB,AA+QgB,YA/QJ,CAuDV,YAAY,CAKV,SAAS,CACP,QAAQ,CAuHN,YAAY,CA0CV,MAAM,CASJ,cAAc,CAIZ,KAAK,CAAA,AAAA,IAAC,CAAK,OAAO,AAAZ,CAoCH,QAAQ,GAAG,KAAK,CAAC,IAAI,CAAC;EACrB,gBAAgB,EjBjOxB,OAAO;CiBkOA;;AAjRjB,AAkRgB,YAlRJ,CAuDV,YAAY,CAKV,SAAS,CACP,QAAQ,CAuHN,YAAY,CA0CV,MAAM,CASJ,cAAc,CAIZ,KAAK,CAAA,AAAA,IAAC,CAAK,OAAO,AAAZ,CAuCH,QAAQ,GAAG,KAAK,CAAC,IAAI,CAAC;EACrB,gBAAgB,EjBnOxB,OAAO;CiBoOA;;AApRjB,AAqRgB,YArRJ,CAuDV,YAAY,CAKV,SAAS,CACP,QAAQ,CAuHN,YAAY,CA0CV,MAAM,CASJ,cAAc,CAIZ,KAAK,CAAA,AAAA,IAAC,CAAK,OAAO,AAAZ,CA0CH,QAAQ,GAAG,KAAK,CAAC,IAAI,CAAC,GAAG,CAAC;EACzB,OAAO,EAAE,YAAY;CAEtB;;AASjB,AAAA,cAAc,CAAC;EACb,iBAAiB,EAAE,mCAAmC;EACtD,SAAS,EAAE,mCAAmC;CAC/C;;AACD;;;;;oDAKoD;AACpD;;;;GAIG;AACH,kBAAkB,CAAlB,aAAkB;EAChB,EAAE;IACA,iBAAiB,EAAE,SAAS;IAC5B,SAAS,EAAE,SAAS;;EAEtB,IAAI;IACF,iBAAiB,EAAE,cAAc;IACjC,SAAS,EAAE,cAAc;;;;AAG7B,UAAU,CAAV,aAAU;EACR,EAAE;IACA,iBAAiB,EAAE,SAAS;IAC5B,SAAS,EAAE,SAAS;;EAEtB,IAAI;IACF,iBAAiB,EAAE,cAAc;IACjC,SAAS,EAAE,cAAc;;;;ACjU7B,AAAA,KAAK,CAAC;EACJ,gBAAgB,ElBiBH,SAAS;EkBhBtB,OAAO,EAAE,kBAAkB;EAC3B,KAAK,EAAE,IAAI;EACX,MAAM,EAAE,MAAM;CAgFf;;AA/EC,MAAM,CAAC,MAAM,MAAM,SAAS,EAAE,KAAK;EALrC,AAAA,KAAK,CAAC;IAMF,UAAU,EAAE,YAAY;GA8E3B;;;AApFD,AAQE,KARG,CAQH,QAAQ,CAAC;EACP,UAAU,EAAE,IAAI;EAChB,OAAO,EAAE,QAAQ;CAKlB;;AAJC,MAAM,CAAC,MAAM,MAAM,SAAS,EAAE,KAAK;EAXvC,AAQE,KARG,CAQH,QAAQ,CAAC;IAIL,UAAU,EAAE,YAAY;IACxB,OAAO,EAAE,MAAM;GAElB;;;AAfH,AAgBE,KAhBG,CAgBH,MAAM,CAAC;EACL,QAAQ,EAAE,QAAQ;CAkEnB;;AAnFH,AAkBI,KAlBC,CAgBH,MAAM,CAEJ,IAAI,CAAC;EACH,QAAQ,EAAE,QAAQ;EAClB,OAAO,EAAE,EAAE;EACX,IAAI,EAAE,KAAK;EACX,KAAK,EAAE,KAAK;EACZ,MAAM,EAAE,KAAK;EACb,gBAAgB,ElBRP,OAAO;CkBqBjB;;AAZC,MAAM,CAAC,MAAM,MAAM,SAAS,EAAE,MAAM;EAzB1C,AAkBI,KAlBC,CAgBH,MAAM,CAEJ,IAAI,CAAC;IAQD,KAAK,EAAE,KAAK;IACZ,MAAM,EAAE,KAAK;GAUhB;;;AARC,MAAM,CAAC,MAAM,MAAM,SAAS,EAAE,KAAK;EA7BzC,AAkBI,KAlBC,CAgBH,MAAM,CAEJ,IAAI,CAAC;IAYD,KAAK,EAAE,KAAK;IACZ,MAAM,EAAE,KAAK;GAMhB;;;AAJC,MAAM,CAAC,MAAM,MAAM,SAAS,EAAE,KAAK;EAjCzC,AAkBI,KAlBC,CAgBH,MAAM,CAEJ,IAAI,CAAC;IAgBD,KAAK,EAAE,KAAK;IACZ,MAAM,EAAE,KAAK;GAEhB;;;AArCL,AAsCI,KAtCC,CAgBH,MAAM,CAsBJ,IAAI,CAAC;EACH,SAAS,EAAE,IAAI;EACf,KAAK,ElBdC,OAAO;EkBeb,WAAW,EAAE,GAAG;CAYjB;;AAXC,MAAM,CAAC,MAAM,MAAM,SAAS,EAAE,KAAK;EA1CzC,AAsCI,KAtCC,CAgBH,MAAM,CAsBJ,IAAI,CAAC;IAKD,KAAK,ElBrBA,IAAI;GkB+BZ;;;AAPC,MAAM,CAAC,MAAM,MAAM,SAAS,EAAE,KAAK;EA9CzC,AAsCI,KAtCC,CAgBH,MAAM,CAsBJ,IAAI,CAAC;IASD,SAAS,EAAE,IAAI;IACf,WAAW,EAAE,IAAI;GAKpB;;;AAHC,MAAM,CAAC,MAAM,MAAM,SAAS,EAAE,MAAM;EAlD1C,AAsCI,KAtCC,CAgBH,MAAM,CAsBJ,IAAI,CAAC;IAaD,SAAS,EAAE,IAAI;GAElB;;;AArDL,AAuDI,KAvDC,CAgBH,MAAM,CAuCJ,MAAM,CAAC;EACL,SAAS,EAAE,IAAI;EACf,KAAK,ElB/BC,OAAO;EkBgCb,WAAW,EAAE,GAAG;CAWjB;;AAVC,MAAM,CAAC,MAAM,MAAM,SAAS,EAAE,KAAK;EA3DzC,AAuDI,KAvDC,CAgBH,MAAM,CAuCJ,MAAM,CAAC;IAKH,KAAK,ElBtCA,IAAI;GkB+CZ;;;AANC,MAAM,CAAC,MAAM,MAAM,SAAS,EAAE,KAAK;EA/DzC,AAuDI,KAvDC,CAgBH,MAAM,CAuCJ,MAAM,CAAC;IASH,SAAS,EAAE,IAAI;GAKlB;;;AAHC,MAAM,CAAC,MAAM,MAAM,SAAS,EAAE,MAAM;EAlE1C,AAuDI,KAvDC,CAgBH,MAAM,CAuCJ,MAAM,CAAC;IAYH,SAAS,EAAE,IAAI;GAElB;;;AArEL,AAuEI,KAvEC,CAgBH,MAAM,CAuDJ,IAAI,CAAC;EACH,SAAS,EAAE,IAAI;EACf,WAAW,EAAE,GAAG;EAChB,KAAK,ElBvDG,OAAO;EkBwDf,MAAM,EAAE,MAAM;CAOf;;AANC,MAAM,CAAC,MAAM,MAAM,SAAS,EAAE,MAAM;EA5E1C,AAuEI,KAvEC,CAgBH,MAAM,CAuDJ,IAAI,CAAC;IAMD,SAAS,EAAE,IAAI;GAKlB;;;AAHC,MAAM,CAAC,MAAM,MAAM,SAAS,EAAE,KAAK;EA/EzC,AAuEI,KAvEC,CAgBH,MAAM,CAuDJ,IAAI,CAAC;IASD,MAAM,EAAE,MAAM;GAEjB;;;AAGL,AAAA,aAAa,CAAC;EACZ,SAAS,EAAE,KAAK;EAChB,QAAQ,EAAE,QAAQ;EAClB,OAAO,EAAE,CAAC;CAkDX;;AAjDC,MAAM,CAAC,MAAM,MAAM,SAAS,EAAE,MAAM;EAJtC,AAAA,aAAa,CAAC;IAKV,SAAS,EAAE,KAAK;GAgDnB;;;AA9CC,MAAM,CAAC,MAAM,MAAM,SAAS,EAAE,KAAK;EAPrC,AAAA,aAAa,CAAC;IAQV,SAAS,EAAE,KAAK;IAChB,MAAM,EAAE,IAAI;IACZ,UAAU,EAAE,IAAI;IAChB,aAAa,EAAE,IAAI;GA0CtB;;;AArDD,AAaE,aAbW,CAaX,IAAI,CAAC;EACH,QAAQ,EAAE,QAAQ;EAClB,OAAO,EAAE,GAAG;EACZ,KAAK,EAAE,KAAK;EACZ,MAAM,EAAE,KAAK;EACb,aAAa,EAAE,GAAG;EAClB,gBAAgB,ElBrFN,OAAO;EkBsFjB,GAAG,EAAE,GAAG;EACR,KAAK,EAAE,CAAC;EACR,OAAO,EAAE,GAAG;EACZ,WAAW,EAAE,IAAI;EACjB,UAAU,EAAE,MAAM;EAClB,KAAK,ElBxFI,IAAI;CkBgHd;;AAvBC,MAAM,CAAC,MAAM,MAAM,SAAS,EAAE,KAAK;EA1BvC,AAaE,aAbW,CAaX,IAAI,CAAC;IAcD,GAAG,EAAE,IAAI;IACT,KAAK,EAAE,IAAI;GAqBd;;;AAnBC,MAAM,CAAC,MAAM,MAAM,SAAS,EAAE,KAAK;EA9BvC,AAaE,aAbW,CAaX,IAAI,CAAC;IAkBD,GAAG,EAAE,IAAI;IACT,KAAK,EAAE,IAAI;GAiBd;;;AAfC,MAAM,CAAC,MAAM,MAAM,SAAS,EAAE,KAAK;EAlCvC,AAaE,aAbW,CAaX,IAAI,CAAC;IAsBD,GAAG,EAAE,IAAI;IACT,KAAK,EAAE,KAAK;GAaf;;;AAjDH,AAsCI,aAtCS,CAaX,IAAI,CAyBF,GAAG,CAAC;EACF,SAAS,EAAE,IAAI;EACf,UAAU,EAAE,MAAM;EAClB,KAAK,EAAE,IAAI;EACX,aAAa,EAAE,CAAC;EAChB,OAAO,EAAE,CAAC;CACX;;AA5CL,AA6CI,aA7CS,CAaX,IAAI,CAgCF,MAAM,CAAC;EACL,SAAS,EAAE,IAAI;EACf,WAAW,EAAE,GAAG;CACjB;;AAhDL,AAkDE,aAlDW,CAkDX,GAAG,CAAC;EACF,KAAK,EAAE,IAAI;CACZ;;AAEH,AAEI,QAFI,CACN,KAAK,CACH,SAAS,CAAC;EACR,QAAQ,EAAE,QAAQ;EAOlB,OAAO,EAAE,CAAC;CAYX;;AAtBL,AAWM,QAXE,CACN,KAAK,CACH,SAAS,CASP,MAAM,CAAC;EACL,KAAK,ElBvGH,OAAO;EkBwGT,SAAS,EAAE,IAAI;EACf,WAAW,EAAE,GAAG;EAChB,cAAc,EAAE,SAAS;EACzB,cAAc,EAAE,GAAG;EACnB,aAAa,EAAE,IAAI;CAIpB;;AAHC,MAAM,CAAC,MAAM,MAAM,SAAS,EAAE,KAAK;EAlB3C,AAWM,QAXE,CACN,KAAK,CACH,SAAS,CASP,MAAM,CAAC;IAQH,aAAa,EAAE,IAAI;GAEtB;;;AArBP,AAuBI,QAvBI,CACN,KAAK,CAsBH,GAAG,CAAC;EACF,KAAK,ElBhJG,OAAO;EkBiJf,SAAS,EAAE,IAAI;EACf,WAAW,EAAE,GAAG;EAChB,cAAc,EAAE,SAAS;EACzB,aAAa,EAAE,IAAI;CAIpB;;AAHC,MAAM,CAAC,MAAM,MAAM,SAAS,EAAE,MAAM;EA7B1C,AAuBI,QAvBI,CACN,KAAK,CAsBH,GAAG,CAAC;IAOA,SAAS,EAAE,IAAI;GAElB;;;AAhCL,AAiCI,QAjCI,CACN,KAAK,CAgCH,UAAU,CAAC;EACT,KAAK,EAAE,IAAI;EACX,aAAa,EAAE,GAAG;EAClB,WAAW,EAAE,IAAI;CAIlB;;AAxCL,AAyCI,QAzCI,CACN,KAAK,CAwCH,KAAK,CAAC;EACJ,KAAK,EAAE,IAAI;EACX,OAAO,EAAE,KAAK;CACf;;AA5CL,AA6CI,QA7CI,CACN,KAAK,CA4CH,UAAU,CAAC,IAAI,CAAC;EACd,KAAK,ElBpKE,OAAO;EkBqKd,SAAS,EAAE,IAAI;EACf,WAAW,EAAE,GAAG;EAChB,UAAU,EAAE,MAAM;EAClB,KAAK,EAAE,GAAG;EAEV,KAAK,EAAE,IAAI;EACX,aAAa,EAAE,IAAI;CAUpB;;AATC,MAAM,CAAC,MAAM,MAAM,SAAS,EAAE,MAAM;EAtD1C,AA6CI,QA7CI,CACN,KAAK,CA4CH,UAAU,CAAC,IAAI,CAAC;IAUZ,SAAS,EAAE,IAAI;GAQlB;;;AANC,MAAM,CAAC,MAAM,MAAM,SAAS,EAAE,KAAK;EAzDzC,AA6CI,QA7CI,CACN,KAAK,CA4CH,UAAU,CAAC,IAAI,CAAC;IAaZ,SAAS,EAAE,IAAI;GAKlB;;;AAHC,MAAM,CAAC,MAAM,MAAM,SAAS,EAAE,KAAK;EA5DzC,AA6CI,QA7CI,CACN,KAAK,CA4CH,UAAU,CAAC,IAAI,CAAC;IAgBZ,SAAS,EAAE,IAAI;GAElB;;;AC1ML,AAAA,MAAM,CAAC;EACH,MAAM,EAAE,OAAO;EACf,WAAW,EAAE,IAAI;CAkDpB;;AAjDG,MAAM,CAAC,MAAM,MAAM,SAAS,EAAE,KAAK;EAHvC,AAAA,MAAM,CAAC;IAIC,WAAW,EAAE,CAAC;GAgDrB;;;AApDD,AAOQ,MAPF,CAMF,QAAQ,CACJ,QAAQ,CAAC;EACL,OAAO,EAAE,IAAI;EACb,qBAAqB,EAAE,WAAW;CAcrC;;AAbG,MAAM,CAAC,MAAM,MAAM,SAAS,EAAE,KAAK;EAV/C,AAOQ,MAPF,CAMF,QAAQ,CACJ,QAAQ,CAAC;IAID,qBAAqB,EAAE,OAAO;IAC9B,aAAa,EAAE,IAAI;GAW1B;;;AATG,MAAM,CAAC,MAAM,MAAM,SAAS,EAAE,KAAK;EAd/C,AAOQ,MAPF,CAMF,QAAQ,CACJ,QAAQ,CAAC;IAQD,qBAAqB,EAAE,GAAG;GAQjC;;;AAvBT,AAiBY,MAjBN,CAMF,QAAQ,CACJ,QAAQ,CAUJ,UAAU,CAAC;EACP,SAAS,EAAE,KAAK;CAInB;;AAtBb,AAmBgB,MAnBV,CAMF,QAAQ,CACJ,QAAQ,CAUJ,UAAU,CAEN,GAAG,CAAC;EACA,KAAK,EAAE,IAAI;CACd;;AArBjB,AAwBQ,MAxBF,CAMF,QAAQ,CAkBJ,SAAS,CAAC;EACN,KAAK,EAAE,IAAI;EACX,MAAM,EAAE,IAAI;CAwBf;;AAlDT,AA2BY,MA3BN,CAMF,QAAQ,CAkBJ,SAAS,CAGL,SAAS,CAAC;EACN,KAAK,EAAE,IAAI;EACX,MAAM,EAAE,IAAI;EACZ,OAAO,EAAE,IAAI;EACb,cAAc,EAAE,MAAM;EACtB,eAAe,EAAE,MAAM;CAC1B;;AAjCb,AAkCY,MAlCN,CAMF,QAAQ,CAkBJ,SAAS,CAUL,EAAE,CAAC;EACC,KAAK,EnBhBP,OAAO;EmBiBL,SAAS,EAAE,IAAI;EACf,WAAW,EAAE,GAAG;EAChB,cAAc,EAAE,IAAI;CACvB;;AAvCb,AAwCY,MAxCN,CAMF,QAAQ,CAkBJ,SAAS,CAgBL,CAAC,CAAC;EACE,WAAW,EAAE,IAAI;EACjB,SAAS,EAAE,IAAI;CAClB;;AA3Cb,AA4CY,MA5CN,CAMF,QAAQ,CAkBJ,SAAS,CAoBL,IAAI,CAAC;EACD,UAAU,EAAE,IAAI;EAChB,KAAK,EnB9BN,OAAO;EmB+BN,SAAS,EAAE,IAAI;EACf,WAAW,EAAE,GAAG;CACnB;;ACjDb,AAAA,WAAW,CAAC;EACR,aAAa,EAAE,IAAI;CA4CtB;;AA3CG,MAAM,CAAC,MAAM,MAAM,SAAS,EAAE,KAAK;EAFvC,AAAA,WAAW,CAAC;IAGJ,aAAa,EAAE,IAAI;GA0C1B;;;AAxCG,MAAM,CAAC,MAAM,MAAM,SAAS,EAAE,KAAK;EALvC,AAAA,WAAW,CAAC;IAMJ,aAAa,EAAE,IAAI;GAuC1B;;;AAnCW,MAAM,CAAC,MAAM,MAAM,SAAS,EAAE,KAAK;EAV/C,AASQ,WATG,CAQP,QAAQ,CACJ,UAAU,CAAC;IAEH,OAAO,EAAE,iBAAiB;GAgCjC;;;AA3CT,AAaY,WAbD,CAQP,QAAQ,CACJ,UAAU,CAIN,KAAK,CAAC;EACF,MAAM,EAAE,IAAI;CA4Bf;;AA1Cb,AAkB4B,WAlBjB,CAQP,QAAQ,CACJ,UAAU,CAIN,KAAK,AAEA,MAAM,CAEE,OAAG,AACC,OAAO,CAAC;EACL,KAAK,EAAE,eAAe;EACtB,UAAU,EAAE,OAAO;CACtB;;AArB7B,AAyBgB,WAzBL,CAQP,QAAQ,CACJ,UAAU,CAIN,KAAK,CAYD,UAAU,CAAC;EACP,OAAO,EAAE,SAAS;EAClB,UAAU,EAAE,KAAK;EACjB,UAAU,EAAE,WAAW;CAa1B;;AAzCjB,AA6BoB,WA7BT,CAQP,QAAQ,CACJ,UAAU,CAIN,KAAK,CAYD,UAAU,CAIN,QAAQ,CAAC;EACL,gBAAgB,EpBR3B,IAAI;EoBSO,OAAO,EAAE,SAAS;CACrB;;AAhCrB,AAiCoB,WAjCT,CAQP,QAAQ,CACJ,UAAU,CAIN,KAAK,CAYD,UAAU,CAQN,CAAC,CAAC;EACE,SAAS,EAAE,IAAI;EACf,aAAa,EAAE,IAAI;CACtB;;AApCrB,AAqCoB,WArCT,CAQP,QAAQ,CACJ,UAAU,CAIN,KAAK,CAYD,UAAU,CAYN,WAAW,CAAC;EACR,SAAS,EAAE,IAAI;EACf,WAAW,EAAE,GAAG;CACnB;;ACxCrB,AAAA,KAAK,CAAC;EACJ,MAAM,EAAE,MAAM;CAyWf;;AAxWC,MAAM,CAAC,MAAM,MAAM,SAAS,EAAE,KAAK;EAFrC,AAAA,KAAK,CAAC;IAGF,MAAM,EAAE,MAAM;GAuWjB;;;AA1WD,AAKE,KALG,CAKH,IAAI,CAAC;EACH,KAAK,EAAE,IAAI;EACX,eAAe,EAAE,aAAa;EAC9B,OAAO,EAAE,MAAM;CAqFhB;;AApFC,MAAM,CAAC,MAAM,MAAM,SAAS,EAAE,KAAK;EATvC,AAKE,KALG,CAKH,IAAI,CAAC;IAKD,OAAO,EAAE,gBAAgB;GAmF5B;;;AAjFC,MAAM,CAAC,MAAM,MAAM,SAAS,EAAE,KAAK;EAZvC,AAKE,KALG,CAKH,IAAI,CAAC;IAQD,YAAY,EAAE,IAAI;GAgFrB;;;AA7FH,AAeI,KAfC,CAKH,IAAI,CAUF,KAAK,CAAC;EACJ,SAAS,EAAE,IAAI;EACf,cAAc,EAAE,KAAK;CAOtB;;AANC,MAAM,CAAC,MAAM,MAAM,SAAS,EAAE,KAAK;EAlBzC,AAeI,KAfC,CAKH,IAAI,CAUF,KAAK,CAAC;IAIF,SAAS,EAAE,IAAI;GAKlB;;;AAHC,MAAM,CAAC,MAAM,MAAM,SAAS,EAAE,KAAK;EArBzC,AAeI,KAfC,CAKH,IAAI,CAUF,KAAK,CAAC;IAOF,aAAa,EAAE,IAAI;GAEtB;;;AAxBL,AA0BM,KA1BD,CAKH,IAAI,CAoBF,MAAM,CACJ,OAAO,CAAC;EACN,OAAO,EAAE,IAAI;EACb,cAAc,EAAE,MAAM;EACtB,QAAQ,EAAE,QAAQ;EAClB,KAAK,EAAE,KAAK;EACZ,MAAM,EAAE,IAAI;CACb;;AAhCP,AAiCM,KAjCD,CAKH,IAAI,CAoBF,MAAM,CAQJ,OAAO,CAAC;EACN,OAAO,EAAE,aAAa;EACtB,UAAU,EAAE,IAAI;EAChB,OAAO,EAAE,IAAI;EACb,WAAW,EAAE,MAAM;EACnB,UAAU,EAAE,KAAkB;EAC9B,UAAU,EAAE,cAAc;EAC1B,QAAQ,EAAE,QAAQ;EAClB,GAAG,EAAE,CAAC;EACN,KAAK,EAAE,IAAI;EACX,cAAc,EAAE,IAAI;EACpB,KAAK,EAAE,CAAC;EACR,OAAO,EAAE,CAAC;EACV,UAAU,EAAE,2BAA2B;EACvC,UAAU,EAAE,UAAU;EACtB,QAAQ,EAAE,MAAM;EAChB,WAAW,EAAE,MAAM;CACpB;;AAlDP,AAmDM,KAnDD,CAKH,IAAI,CAoBF,MAAM,CA0BJ,OAAO,AAAA,MAAM,CAAC;EACZ,UAAU,EAAE,OAAkB;CAC/B;;AArDP,AAsDM,KAtDD,CAKH,IAAI,CAoBF,MAAM,CA6BJ,OAAO,AAAA,MAAM,CAAC,OAAO,CAAC;EACpB,QAAQ,EAAE,QAAQ;EAClB,cAAc,EAAE,GAAG;CACpB;;AAzDP,AA0DM,KA1DD,CAKH,IAAI,CAoBF,MAAM,CAiCJ,KAAK,CAAC;EACJ,OAAO,EAAE,CAAC;EACV,QAAQ,EAAE,QAAQ;EAClB,IAAI,EAAE,QAAQ;CACf;;AA9DP,AA+DM,KA/DD,CAKH,IAAI,CAoBF,MAAM,CAsCJ,KAAK,AAAA,QAAQ,GAAG,KAAK,CAAC;EACpB,KAAK,EAAE,CAAC;EACR,OAAO,EAAE,CAAC;EACV,UAAU,ErB5CL,IAAI;EqB6CT,MAAM,EAAE,SAAS;EACjB,YAAY,ErBxCE,IAAI;EqByClB,QAAQ,EAAE,QAAQ;CACnB;;AAtEP,AAuEM,KAvED,CAKH,IAAI,CAoBF,MAAM,CA8CJ,KAAK,AAAA,QAAQ,GAAG,KAAK,AAAA,MAAM,CAAC;EAC1B,OAAO,EAAE,EAAE;EACX,KAAK,EAAE,CAAC;EACR,MAAM,EAAE,CAAC;EACT,WAAW,EAAE,qBAAqB;EAClC,YAAY,EAAE,qBAAqB;EACnC,UAAU,EAAE,eAAe;EAC3B,QAAQ,EAAE,QAAQ;EAClB,KAAK,EAAE,IAAI;EACX,GAAG,EAAE,iBAAiB;EACtB,cAAc,EAAE,IAAI;EACpB,OAAO,EAAE,CAAC;CACX;;AAnFP,AAoFM,KApFD,CAKH,IAAI,CAoBF,MAAM,CA2DJ,KAAK,AAAA,QAAQ,GAAG,KAAK,AAAA,OAAO,CAAC;EAC3B,QAAQ,EAAE,QAAQ;EAClB,KAAK,EAAE,CAAC;EACR,MAAM,EAAE,IAAI;EACZ,KAAK,EAAE,IAAI;EACX,OAAO,EAAE,EAAE;EACX,UAAU,ErBvEJ,OAAO;CqBwEd;;AA3FP,AA8FE,KA9FG,CA8FH,GAAG,CAAC;EACF,WAAW,EAAE,IAAI;CAClB;;AAhGH,AAkGI,KAlGC,CAiGH,aAAa,CACX,QAAQ,CAAC;EACP,QAAQ,EAAE,QAAQ;EAClB,aAAa,EAAE,IAAI;CA8NpB;;AAlUL,AAsGQ,KAtGH,CAiGH,aAAa,CACX,QAAQ,AAGL,MAAM,CACL,MAAM,CAAC;EACL,KAAK,EAAE,cAAc;EACrB,OAAO,EAAE,YAAY;CAItB;;AA5GT,AAyGU,KAzGL,CAiGH,aAAa,CACX,QAAQ,AAGL,MAAM,CACL,MAAM,CAGJ,EAAE,CAAC;EACD,OAAO,EAAE,gBAAgB;CAC1B;;AA3GX,AA6GQ,KA7GH,CAiGH,aAAa,CACX,QAAQ,AAGL,MAAM,CAQL,aAAa,CAAC;EACZ,OAAO,EAAE,YAAY;CACtB;;AA/GT,AAgHQ,KAhHH,CAiGH,aAAa,CACX,QAAQ,AAGL,MAAM,CAWL,SAAS,CAAC;EACR,GAAG,EAAE,eAAe;EACpB,OAAO,EAAE,YAAY;CACtB;;AAnHT,AAoHQ,KApHH,CAiGH,aAAa,CACX,QAAQ,AAGL,MAAM,CAeL,MAAM,CAAC;EACL,OAAO,EAAE,YAAY;CACtB;;AAtHT,AAwHM,KAxHD,CAiGH,aAAa,CACX,QAAQ,CAsBN,YAAY,CAAC;EACX,SAAS,EAAE,KAAK;CA+FjB;;AAxNP,AA0HQ,KA1HH,CAiGH,aAAa,CACX,QAAQ,CAsBN,YAAY,CAEV,GAAG,CAAC;EACF,KAAK,EAAE,IAAI;CACZ;;AA5HT,AA6HQ,KA7HH,CAiGH,aAAa,CACX,QAAQ,CAsBN,YAAY,CAKV,MAAM,CAAC;EACL,KAAK,EAAE,IAAI;EACX,MAAM,EAAE,IAAI;EAEZ,QAAQ,EAAE,QAAQ;EAClB,GAAG,EAAE,CAAC;EACN,OAAO,EAAE,IAAI;EACb,eAAe,EAAE,GAAG;EACpB,WAAW,EAAE,MAAM;EACnB,OAAO,EAAE,CAAC;EACV,KAAK,EAAE,CAAC;EACR,kBAAkB,EAAE,SAAS;EAC7B,aAAa,EAAE,SAAS;EACxB,UAAU,EAAE,SAAS;EACrB,OAAO,EAAE,CAAC;CAoDX;;AA/LT,AA4IU,KA5IL,CAiGH,aAAa,CACX,QAAQ,CAsBN,YAAY,CAKV,MAAM,CAeJ,EAAE,CAAC;EACD,YAAY,EAAE,CAAC;EACf,OAAO,EAAE,IAAI;EACb,QAAQ,EAAE,QAAQ;CA+CnB;;AA9LX,AAgJY,KAhJP,CAiGH,aAAa,CACX,QAAQ,CAsBN,YAAY,CAKV,MAAM,CAeJ,EAAE,CAIA,EAAE,CAAC;EACD,UAAU,ErB3HX,IAAI;EqB4HH,OAAO,EAAE,GAAG;EACZ,aAAa,EAAE,GAAG;CA0CnB;;AA7Lb,AAqJgB,KArJX,CAiGH,aAAa,CACX,QAAQ,CAsBN,YAAY,CAKV,MAAM,CAeJ,EAAE,CAIA,EAAE,AAIC,MAAM,CACL,OAAO,CAAC;EACN,OAAO,EAAE,YAAY;CACtB;;AAvJjB,AAyJc,KAzJT,CAiGH,aAAa,CACX,QAAQ,CAsBN,YAAY,CAKV,MAAM,CAeJ,EAAE,CAIA,EAAE,CASA,OAAO,CAAC;EACN,QAAQ,EAAE,QAAQ;EAClB,OAAO,EAAE,OAAO;EAChB,gBAAgB,ErBvInB,OAAO;EqBwIJ,KAAK,ErBvIR,IAAI;EqBwID,OAAO,EAAE,GAAG;EACZ,GAAG,EAAE,IAAI;EACT,KAAK,EAAE,IAAI;EACX,kBAAkB,EAAE,SAAS;EAC7B,aAAa,EAAE,SAAS;EACxB,UAAU,EAAE,SAAS;EACrB,OAAO,EAAE,CAAC;CAWX;;AA/Kf,AAqKgB,KArKX,CAiGH,aAAa,CACX,QAAQ,CAsBN,YAAY,CAKV,MAAM,CAeJ,EAAE,CAIA,EAAE,CASA,OAAO,AAYJ,OAAO,CAAC;EACP,OAAO,EAAE,GAAG;EACZ,gBAAgB,EAAE,IAAI;EACtB,MAAM,EAAE,GAAG;EACX,KAAK,EAAE,GAAG;EACV,QAAQ,EAAE,QAAQ;EAClB,GAAG,EAAE,IAAI;EACT,SAAS,EAAE,aAAa;EACxB,KAAK,EAAE,IAAI;CACZ;;AA9KjB,AAgLc,KAhLT,CAiGH,aAAa,CACX,QAAQ,CAsBN,YAAY,CAKV,MAAM,CAeJ,EAAE,CAIA,EAAE,CAgCA,WAAW,CAAC;EACV,aAAa,EAAE,CAAC;CACjB;;AAlLf,AAmLc,KAnLT,CAiGH,aAAa,CACX,QAAQ,CAsBN,YAAY,CAKV,MAAM,CAeJ,EAAE,CAIA,EAAE,CAmCA,CAAC,CAAC;EACA,KAAK,ErB/JR,OAAO;EqBgKJ,eAAe,EAAE,IAAI;CACtB;;AAtLf,AAuLc,KAvLT,CAiGH,aAAa,CACX,QAAQ,CAsBN,YAAY,CAKV,MAAM,CAeJ,EAAE,CAIA,EAAE,CAuCA,eAAe,CAAC;EACd,SAAS,EAAE,IAAI;CAChB;;AAzLf,AA0Lc,KA1LT,CAiGH,aAAa,CACX,QAAQ,CAsBN,YAAY,CAKV,MAAM,CAeJ,EAAE,CAIA,EAAE,CA0CA,IAAI,CAAC;EACH,SAAS,EAAE,IAAI;CAChB;;AA5Lf,AAgMQ,KAhMH,CAiGH,aAAa,CACX,QAAQ,CAsBN,YAAY,CAwEV,IAAI,CAAC;EACH,QAAQ,EAAE,QAAQ;EAClB,GAAG,EAAE,IAAI;EACT,IAAI,EAAE,CAAC;EACP,gBAAgB,ErB9Kb,IAAI;EqB+KP,KAAK,ErBhLF,OAAO;EqBiLV,cAAc,EAAE,GAAG;EACnB,SAAS,EAAE,IAAI;EACf,WAAW,EAAE,GAAG;EAChB,OAAO,EAAE,QAAQ;EACjB,cAAc,EAAE,SAAS;CAC1B;;AA3MT,AA4MQ,KA5MH,CAiGH,aAAa,CACX,QAAQ,CAsBN,YAAY,CAoFV,KAAK,CAAC;EACJ,QAAQ,EAAE,QAAQ;EAClB,GAAG,EAAE,IAAI;EACT,IAAI,EAAE,CAAC;EACP,gBAAgB,ErB3Lb,OAAO;EqB4LV,KAAK,ErB3LF,IAAI;EqB4LP,cAAc,EAAE,GAAG;EACnB,SAAS,EAAE,IAAI;EACf,WAAW,EAAE,GAAG;EAChB,OAAO,EAAE,QAAQ;EACjB,cAAc,EAAE,SAAS;CAC1B;;AAvNT,AAyNM,KAzND,CAiGH,aAAa,CACX,QAAQ,CAuHN,YAAY,CAAC;EACX,WAAW,EAAE,IAAI;EACjB,QAAQ,EAAE,QAAQ;CAsGnB;;AAjUP,AA4NQ,KA5NH,CAiGH,aAAa,CACX,QAAQ,CAuHN,YAAY,CAGV,SAAS,CAAC;EACR,KAAK,ErB5KL,OAAO;EqB6KP,QAAQ,EAAE,QAAQ;EAClB,GAAG,EAAE,KAAK;EACV,OAAO,EAAE,CAAC;EACV,SAAS,EAAE,IAAI;EACf,WAAW,EAAE,GAAG;EAChB,cAAc,EAAE,KAAK;EACrB,kBAAkB,EAAE,SAAS;EAC7B,aAAa,EAAE,SAAS;EACxB,UAAU,EAAE,SAAS;CACtB;;AAvOT,AAwOQ,KAxOH,CAiGH,aAAa,CACX,QAAQ,CAuHN,YAAY,CAeV,aAAa,CAAC;EACZ,KAAK,ErBtND,OAAO;EqBuNX,SAAS,EAAE,IAAI;EACf,WAAW,EAAE,GAAG;EAChB,cAAc,EAAE,GAAG;EACnB,OAAO,EAAE,CAAC;EACV,kBAAkB,EAAE,SAAS;EAC7B,aAAa,EAAE,SAAS;EACxB,UAAU,EAAE,SAAS;CACtB;;AAjPT,AAkPQ,KAlPH,CAiGH,aAAa,CACX,QAAQ,CAuHN,YAAY,CAyBV,OAAO,CAAC;EACN,OAAO,EAAE,IAAI;CASd;;AA5PT,AAoPU,KApPL,CAiGH,aAAa,CACX,QAAQ,CAuHN,YAAY,CAyBV,OAAO,CAEL,CAAC,CAAC;EACA,SAAS,EAAE,IAAI;EACf,OAAO,EAAE,KAAK;EACd,YAAY,EAAE,GAAG;CAIlB;;AA3PX,AAwPY,KAxPP,CAiGH,aAAa,CACX,QAAQ,CAuHN,YAAY,CAyBV,OAAO,CAEL,CAAC,CAIC,GAAG,CAAC;EACF,KAAK,EAAE,IAAI;CACZ;;AA1Pb,AA6PQ,KA7PH,CAiGH,aAAa,CACX,QAAQ,CAuHN,YAAY,CAoCV,MAAM,CAAC;EACL,KAAK,ErB3OD,OAAO;EqB4OX,SAAS,EAAE,IAAI;EACf,WAAW,EAAE,GAAG;EAChB,WAAW,EAAE,IAAI;CAClB;;AAlQT,AAmQQ,KAnQH,CAiGH,aAAa,CACX,QAAQ,CAuHN,YAAY,CA0CV,MAAM,CAAC;EACL,QAAQ,EAAE,QAAQ;EAClB,MAAM,EAAE,GAAG;EACX,KAAK,EAAE,IAAI;EACX,OAAO,EAAE,GAAG;EACZ,OAAO,EAAE,CAAC;EACV,kBAAkB,EAAE,SAAS;EAC7B,aAAa,EAAE,SAAS;EACxB,UAAU,EAAE,SAAS;CAqDtB;;AAhUT,AA6QY,KA7QP,CAiGH,aAAa,CACX,QAAQ,CAuHN,YAAY,CA0CV,MAAM,CASJ,cAAc,CACZ,GAAG,CAAC;EACF,OAAO,EAAE,YAAY;CACtB;;AA/Qb,AAgRY,KAhRP,CAiGH,aAAa,CACX,QAAQ,CAuHN,YAAY,CA0CV,MAAM,CASJ,cAAc,CAIZ,KAAK,CAAA,AAAA,IAAC,CAAK,OAAO,AAAZ,EAAc;EAClB,OAAO,EAAE,IAAI;CA6Cd;;AA9Tb,AAkRc,KAlRT,CAiGH,aAAa,CACX,QAAQ,CAuHN,YAAY,CA0CV,MAAM,CASJ,cAAc,CAIZ,KAAK,CAAA,AAAA,IAAC,CAAK,OAAO,AAAZ,IAEF,KAAK,CAAC;EACN,KAAK,EAAE,IAAI;EACX,SAAS,EAAE,IAAI;CAyBhB;;AA7Sf,AAqRgB,KArRX,CAiGH,aAAa,CACX,QAAQ,CAuHN,YAAY,CA0CV,MAAM,CASJ,cAAc,CAIZ,KAAK,CAAA,AAAA,IAAC,CAAK,OAAO,AAAZ,IAEF,KAAK,CAGL,IAAI,CAAC;EACH,OAAO,EAAE,IAAI;EACb,eAAe,EAAE,MAAM;EACvB,WAAW,EAAE,MAAM;EACnB,KAAK,EAAE,IAAI;EACX,MAAM,EAAE,IAAI;EACZ,MAAM,EAAE,YAAY;EACpB,cAAc,EAAE,MAAM;EACtB,MAAM,EAAE,OAAO;EACf,aAAa,EAAE,GAAG;EAClB,MAAM,EAAE,iBAAiB;EACzB,UAAU,EAAE,CAAC,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC,CAAC,mBAAmB;EAC3C,iBAAiB,EAAE,SAAS;EAC5B,mBAAmB,EAAE,MAAM;EAC3B,UAAU,EAAE,MAAM;CASnB;;AA5SjB,AAqSkB,KArSb,CAiGH,aAAa,CACX,QAAQ,CAuHN,YAAY,CA0CV,MAAM,CASJ,cAAc,CAIZ,KAAK,CAAA,AAAA,IAAC,CAAK,OAAO,AAAZ,IAEF,KAAK,CAGL,IAAI,CAgBF,GAAG,CAAC;EACF,OAAO,EAAE,CAAC;EACV,kBAAkB,EAAE,SAAS;EAC7B,aAAa,EAAE,SAAS;EACxB,UAAU,EAAE,SAAS;EACrB,KAAK,EAAE,GAAG;CACX;;AA3SnB,AA8Sc,KA9ST,CAiGH,aAAa,CACX,QAAQ,CAuHN,YAAY,CA0CV,MAAM,CASJ,cAAc,CAIZ,KAAK,CAAA,AAAA,IAAC,CAAK,OAAO,AAAZ,CA8BH,QAAQ,GAAG,KAAK,CAAC,IAAI,CAAC;EACrB,gBAAgB,ErBlQtB,OAAO;CqBmQF;;AAhTf,AAiTc,KAjTT,CAiGH,aAAa,CACX,QAAQ,CAuHN,YAAY,CA0CV,MAAM,CASJ,cAAc,CAIZ,KAAK,CAAA,AAAA,IAAC,CAAK,OAAO,AAAZ,CAiCH,QAAQ,GAAG,KAAK,CAAC,IAAI,CAAC;EACrB,gBAAgB,ErBpQtB,OAAO;CqBqQF;;AAnTf,AAoTc,KApTT,CAiGH,aAAa,CACX,QAAQ,CAuHN,YAAY,CA0CV,MAAM,CASJ,cAAc,CAIZ,KAAK,CAAA,AAAA,IAAC,CAAK,OAAO,AAAZ,CAoCH,QAAQ,GAAG,KAAK,CAAC,IAAI,CAAC;EACrB,gBAAgB,ErBtQtB,OAAO;CqBuQF;;AAtTf,AAuTc,KAvTT,CAiGH,aAAa,CACX,QAAQ,CAuHN,YAAY,CA0CV,MAAM,CASJ,cAAc,CAIZ,KAAK,CAAA,AAAA,IAAC,CAAK,OAAO,AAAZ,CAuCH,QAAQ,GAAG,KAAK,CAAC,IAAI,CAAC;EACrB,gBAAgB,ErBxQtB,OAAO;CqByQF;;AAzTf,AA0Tc,KA1TT,CAiGH,aAAa,CACX,QAAQ,CAuHN,YAAY,CA0CV,MAAM,CASJ,cAAc,CAIZ,KAAK,CAAA,AAAA,IAAC,CAAK,OAAO,AAAZ,CA0CH,QAAQ,GAAG,KAAK,CAAC,IAAI,CAAC,GAAG,CAAC;EACzB,OAAO,EAAE,YAAY;CAEtB;;AA7Tf,AAoUE,KApUG,CAoUH,qBAAqB,CAAC;EACpB,UAAU,EAAE,MAAM;EAClB,OAAO,EAAE,IAAI;EACb,MAAM,EAAE,IAAI;EACZ,WAAW,EAAE,IAAI;CAiClB;;AAzWH,AA0UM,KA1UD,CAoUH,qBAAqB,CAKnB,WAAW,CACT,UAAU,AAAA,OAAO,CAAC,UAAU,CAAC;EAC3B,KAAK,ErBpRL,OAAO;EqBqRP,gBAAgB,ErB5TT,OAAO;CqB6Tf;;AA7UP,AA+UQ,KA/UH,CAoUH,qBAAqB,CAKnB,WAAW,CAKT,UAAU,CACR,UAAU,CAAC;EACT,KAAK,ErB1RP,OAAO;EqB2RL,gBAAgB,ErB1RlB,OAAO;EqB2RL,MAAM,EAAE,CAAC;EACT,SAAS,EAAE,IAAI;EACf,WAAW,EAAE,GAAG;EAChB,MAAM,EAAE,SAAS;EACjB,MAAM,EAAE,CAAC;EACT,aAAa,EAAE,CAAC;EAChB,YAAY,ErB9TV,OAAO;EqB+TT,MAAM,EAAE,IAAI;EACZ,KAAK,EAAE,IAAI;EACX,UAAU,EAAE,IAAI;EAChB,OAAO,EAAE,QAAQ;CAKlB;;AAjWT,AA6VU,KA7VL,CAoUH,qBAAqB,CAKnB,WAAW,CAKT,UAAU,CACR,UAAU,AAcP,MAAM,CAAC;EACN,KAAK,ErBvST,OAAO;EqBwSH,gBAAgB,ErB/Ub,OAAO;CqBgVX;;AAhWX,AAmWU,KAnWL,CAoUH,qBAAqB,CAKnB,WAAW,CAKT,UAAU,AAoBP,UAAW,CAAA,CAAC,EACX,UAAU,CAAC;EACT,gBAAgB,EAAE,sBAAsB;CACzC;;ACrWX,AAAA,KAAK,CAAC;EACF,UAAU,EAAE,KAAK;EACjB,aAAa,EAAE,IAAI;CA0CtB;;AAzCG,MAAM,CAAC,MAAM,MAAM,SAAS,EAAE,KAAK;EAHvC,AAAA,KAAK,CAAC;IAIE,aAAa,EAAE,IAAI;GAwC1B;;;AArCO,MAAM,CAAC,MAAM,MAAM,SAAS,EAAE,KAAK;EAP3C,AAMI,KANC,CAMD,QAAQ,CAAC;IAED,OAAO,EAAE,MAAM;GAmCtB;;;AA3CL,AAWY,KAXP,CAMD,QAAQ,CAIJ,UAAU,CACN,KAAK,CAAC;EACF,MAAM,EAAE,IAAI;EACZ,aAAa,EAAE,IAAI;CA4BtB;;AAzCb,AAiB4B,KAjBvB,CAMD,QAAQ,CAIJ,UAAU,CACN,KAAK,AAGA,MAAM,CAEE,OAAG,AACC,OAAO,CAAC;EACL,KAAK,EAAE,eAAe;EACtB,UAAU,EAAE,OAAO;CACtB;;AApB7B,AAwBgB,KAxBX,CAMD,QAAQ,CAIJ,UAAU,CACN,KAAK,CAaD,UAAU,CAAC;EACP,OAAO,EAAE,SAAS;EAClB,UAAU,EAAE,KAAK;EACjB,UAAU,EAAE,WAAW;CAa1B;;AAxCjB,AA4BoB,KA5Bf,CAMD,QAAQ,CAIJ,UAAU,CACN,KAAK,CAaD,UAAU,CAIN,QAAQ,CAAC;EACL,gBAAgB,EtBP3B,IAAI;EsBQO,OAAO,EAAE,SAAS;CACrB;;AA/BrB,AAgCoB,KAhCf,CAMD,QAAQ,CAIJ,UAAU,CACN,KAAK,CAaD,UAAU,CAQN,CAAC,CAAC;EACE,SAAS,EAAE,IAAI;EACf,aAAa,EAAE,IAAI;CACtB;;AAnCrB,AAoCoB,KApCf,CAMD,QAAQ,CAIJ,UAAU,CACN,KAAK,CAaD,UAAU,CAYN,WAAW,CAAC;EACR,SAAS,EAAE,IAAI;EACf,WAAW,EAAE,GAAG;CACnB;;ACvCrB,AAAA,QAAQ,CAAC;EACL,UAAU,EAAE,IAAI;EAChB,aAAa,EAAE,IAAI;CAwGtB;;AA1GD,AAIQ,QAJA,CAGJ,IAAI,CACA,eAAe,CAAC;EACZ,QAAQ,EAAE,MAAM;EAChB,cAAc,EAAE,MAAM;EACtB,QAAQ,EAAE,QAAQ;EAClB,MAAM,EAAE,KAAK;CAIhB;;AAHG,MAAM,CAAC,MAAM,MAAM,SAAS,EAAE,KAAK;EAT/C,AAIQ,QAJA,CAGJ,IAAI,CACA,eAAe,CAAC;IAMR,MAAM,EAAE,KAAK;GAEpB;;;AAZT,AAaQ,QAbA,CAGJ,IAAI,CAUA,eAAe,CAAC,MAAM,CAAC;EACnB,IAAI,EAAE,CAAC;EACP,GAAG,EAAE,CAAC;EACN,MAAM,EAAE,IAAI;EACZ,KAAK,EAAE,IAAI;EACX,QAAQ,EAAE,QAAQ;CACrB;;AAnBT,AAqBI,QArBI,CAqBJ,aAAa,CAAC;EACV,UAAU,EAAE,KAAK;CAmFpB;;AAlFG,MAAM,CAAC,MAAM,MAAM,SAAS,EAAE,KAAK;EAvB3C,AAqBI,QArBI,CAqBJ,aAAa,CAAC;IAGN,UAAU,EAAE,IAAI;GAiFvB;;;AAzGL,AA2BY,QA3BJ,CAqBJ,aAAa,CAKT,gBAAgB,CACZ,UAAU,CAAC;EACP,aAAa,EAAE,IAAI;CAatB;;AAzCb,AA6BgB,QA7BR,CAqBJ,aAAa,CAKT,gBAAgB,CACZ,UAAU,CAEN,IAAI,CAAC;EACD,KAAK,EvBfV,OAAO;EuBgBF,cAAc,EAAE,SAAS;EACzB,cAAc,EAAE,GAAG;EACnB,SAAS,EAAE,IAAI;CAClB;;AAlCjB,AAmCgB,QAnCR,CAqBJ,aAAa,CAKT,gBAAgB,CACZ,UAAU,CAQN,KAAK,CAAC;EACF,KAAK,EvBjBX,OAAO;EuBkBD,cAAc,EAAE,UAAU;EAC1B,WAAW,EAAE,GAAG;EAChB,SAAS,EAAE,IAAI;CAClB;;AAxCjB,AA0CY,QA1CJ,CAqBJ,aAAa,CAKT,gBAAgB,CAgBZ,IAAI,CAAC;EACD,SAAS,EAAE,IAAI;CAClB;;AA5Cb,AA6CY,QA7CJ,CAqBJ,aAAa,CAKT,gBAAgB,CAmBZ,QAAQ,CAAC;EACL,UAAU,EAAE,IAAI;CAiBnB;;AA/Db,AA+CgB,QA/CR,CAqBJ,aAAa,CAKT,gBAAgB,CAmBZ,QAAQ,CAEJ,QAAQ,CAAC;EACL,cAAc,EAAE,IAAI;CAcvB;;AA9DjB,AAiDoB,QAjDZ,CAqBJ,aAAa,CAKT,gBAAgB,CAmBZ,QAAQ,CAEJ,QAAQ,CAEJ,GAAG,CAAC;EACA,KAAK,EvB/Bf,OAAO;EuBgCG,SAAS,EAAE,IAAI;EACf,WAAW,EAAE,GAAG;EAChB,cAAc,EAAE,IAAI;CACvB;;AAtDrB,AAuDoB,QAvDZ,CAqBJ,aAAa,CAKT,gBAAgB,CAmBZ,QAAQ,CAEJ,QAAQ,CAQJ,KAAK,CAAC;EACF,SAAS,EAAE,IAAI;CAClB;;AAzDrB,AA0DoB,QA1DZ,CAqBJ,aAAa,CAKT,gBAAgB,CAmBZ,QAAQ,CAEJ,QAAQ,CAWJ,CAAC,CAAC;EACE,KAAK,EvBnCjB,OAAO;EuBoCK,SAAS,EAAE,IAAI;CAClB;;AAML,MAAM,CAAC,MAAM,MAAM,SAAS,EAAE,KAAK;EAnEnD,AAkEY,QAlEJ,CAqBJ,aAAa,CA4CT,aAAa,CACT,IAAI,CAAC;IAEG,UAAU,EAAE,IAAI;GAmCvB;;;AAvGb,AAsEgB,QAtER,CAqBJ,aAAa,CA4CT,aAAa,CACT,IAAI,CAIA,WAAW,CAAC;EACR,aAAa,EAAE,IAAI;CAatB;;AApFjB,AAwEoB,QAxEZ,CAqBJ,aAAa,CA4CT,aAAa,CACT,IAAI,CAIA,WAAW,CAEP,aAAa,CAAC;EACV,aAAa,EAAE,CAAC;EAChB,MAAM,EAAE,2BAA2B;EACnC,OAAO,EAAE,gBAAgB;EACzB,UAAU,EAAE,eAAe;CAO9B;;AAnFrB,AA6EwB,QA7EhB,CAqBJ,aAAa,CA4CT,aAAa,CACT,IAAI,CAIA,WAAW,CAEP,aAAa,AAKR,MAAM,CAAC;EACJ,KAAK,EAAE,OAAO;EACd,gBAAgB,EAAE,IAAI;EACtB,YAAY,EvBjEzB,OAAO;EuBkEM,OAAO,EAAE,CAAC;CACb;;AAlFzB,AAqFgB,QArFR,CAqBJ,aAAa,CA4CT,aAAa,CACT,IAAI,CAmBA,QAAQ,CAAC;EAEL,OAAO,EAAE,SAAS;CACrB;;AAxFjB,AAyFgB,QAzFR,CAqBJ,aAAa,CA4CT,aAAa,CACT,IAAI,CAuBA,IAAI,CAAC;EACD,MAAM,EAAE,SAAS;EACjB,YAAY,EAAE,WAAW;EACzB,gBAAgB,EvBhEd,IAAI,CuBgEiC,UAAU;EACjD,kBAAkB,EvBjEhB,IAAI,CuBiEmC,UAAU;EACnD,mBAAmB,EvBlEjB,IAAI,CuBkEoC,UAAU;EACpD,iBAAiB,EvBnEf,IAAI,CuBmEkC,UAAU;CAOrD;;AAtGjB,AAgGoB,QAhGZ,CAqBJ,aAAa,CA4CT,aAAa,CACT,IAAI,CAuBA,IAAI,AAOC,MAAM,CAAC;EACJ,KAAK,EAAE,OAAO;EACd,gBAAgB,EAAE,IAAI;EACtB,YAAY,EvBpFrB,OAAO,CuBoF8B,UAAU;EACtC,OAAO,EAAE,CAAC;CACb;;ACrGrB,AAAA,MAAM,CAAC;EACH,MAAM,EAAE,OAAO;CAkMlB;;AAjMG,MAAM,CAAC,MAAM,MAAM,SAAS,EAAE,KAAK;EAFvC,AAAA,MAAM,CAAC;IAGC,MAAM,EAAE,MAAM;GAgMrB;;;AAnMD,AAKI,MALE,CAKF,UAAU,CAAC;EACP,KAAK,EAAE,IAAI;EACX,aAAa,EAAE,IAAI;CAItB;;AAXL,AAQQ,MARF,CAKF,UAAU,CAGN,GAAG,CAAC;EACA,KAAK,EAAE,IAAI;CACd;;AAVT,AAaQ,MAbF,CAYF,aAAa,CACT,cAAc,CAAC;EACX,WAAW,EAAE,IAAI;CAUpB;;AAxBT,AAeY,MAfN,CAYF,aAAa,CACT,cAAc,CAEV,WAAW,CAAC;EACR,KAAK,ExBGP,OAAO;EwBFL,WAAW,EAAE,GAAG;EAChB,SAAS,EAAE,IAAI;CAClB;;AAnBb,AAoBY,MApBN,CAYF,aAAa,CACT,cAAc,CAOV,CAAC,CAAC;EACE,WAAW,EAAE,IAAI;EACjB,WAAW,EAAE,KAAK;CACrB;;AAvBb,AA0BI,MA1BE,CA0BF,YAAY,CAAC;EAIT,UAAU,EAAE,KAAK;CAwEpB;;AA3EG,MAAM,CAAC,MAAM,MAAM,SAAS,EAAE,KAAK;EA3B3C,AA0BI,MA1BE,CA0BF,YAAY,CAAC;IAEL,UAAU,EAAE,IAAI;GA0EvB;;;AAtGL,AA+BQ,MA/BF,CA0BF,YAAY,CAKR,QAAQ,CAAC;EACL,OAAO,EAAE,IAAI;EACb,qBAAqB,EAAE,OAAO;CAoEjC;;AAnEG,MAAM,CAAC,MAAM,MAAM,SAAS,EAAE,KAAK;EAlC/C,AA+BQ,MA/BF,CA0BF,YAAY,CAKR,QAAQ,CAAC;IAID,qBAAqB,EAAE,GAAG;GAkEjC;;;AArGT,AAqCY,MArCN,CA0BF,YAAY,CAKR,QAAQ,CAMJ,MAAM,CAAC;EACH,gBAAgB,ExBpBjB,SAAS;CwByEX;;AApDG,MAAM,CAAC,MAAM,MAAM,SAAS,EAAE,KAAK;EAvCnD,AAqCY,MArCN,CA0BF,YAAY,CAKR,QAAQ,CAMJ,MAAM,CAAC;IAGC,OAAO,EAAE,OAAO;GAmDvB;;;AAjDG,MAAM,CAAC,MAAM,MAAM,SAAS,EAAE,KAAK;EA1CnD,AAqCY,MArCN,CA0BF,YAAY,CAKR,QAAQ,CAMJ,MAAM,CAAC;IAMC,OAAO,EAAE,MAAM;GAgDtB;;;AA3Fb,AA6CgB,MA7CV,CA0BF,YAAY,CAKR,QAAQ,CAMJ,MAAM,CAQF,QAAQ,CAAC;EACL,OAAO,EAAE,IAAI;EACb,eAAe,EAAE,MAAM;EACvB,WAAW,EAAE,MAAM;EACnB,MAAM,EAAE,IAAI;CAyCf;;AA1FjB,AAkDoB,MAlDd,CA0BF,YAAY,CAKR,QAAQ,CAMJ,MAAM,CAQF,QAAQ,CAKJ,QAAQ,CAAC;EACL,UAAU,EAAE,MAAM;EAClB,KAAK,EAAE,GAAG;CAqCb;;AAzFrB,AAqDwB,MArDlB,CA0BF,YAAY,CAKR,QAAQ,CAMJ,MAAM,CAQF,QAAQ,CAKJ,QAAQ,CAGJ,IAAI,CAAC;EACD,KAAK,ExBNvB,OAAO;EwBOW,SAAS,EAAE,IAAI;CAClB;;AAxDzB,AAyDwB,MAzDlB,CA0BF,YAAY,CAKR,QAAQ,CAMJ,MAAM,CAQF,QAAQ,CAKJ,QAAQ,CAOJ,CAAC,CAAC;EACE,KAAK,ExBvCnB,OAAO;EwBwCO,SAAS,EAAE,IAAI;EACf,UAAU,EAAE,MAAM;EAClB,WAAW,EAAE,IAAI;EACjB,WAAW,EAAE,IAAI;CACpB;;AA/DzB,AAgEwB,MAhElB,CA0BF,YAAY,CAKR,QAAQ,CAMJ,MAAM,CAQF,QAAQ,CAKJ,QAAQ,CAcJ,WAAW,CAAC;EACR,OAAO,EAAE,IAAI;EACb,UAAU,EAAE,IAAI;EAChB,eAAe,EAAE,MAAM;CAqB1B;;AAxFzB,AAoE4B,MApEtB,CA0BF,YAAY,CAKR,QAAQ,CAMJ,MAAM,CAQF,QAAQ,CAKJ,QAAQ,CAcJ,WAAW,CAIP,MAAM,CAAC;EACH,KAAK,EAAE,IAAI;EAKX,YAAY,EAAE,IAAI;CACrB;;AA3E7B,AAsEgC,MAtE1B,CA0BF,YAAY,CAKR,QAAQ,CAMJ,MAAM,CAQF,QAAQ,CAKJ,QAAQ,CAcJ,WAAW,CAIP,MAAM,CAEF,GAAG,CAAC;EACA,KAAK,EAAE,IAAI;EACX,aAAa,EAAE,GAAG;CACrB;;AAzEjC,AA4E4B,MA5EtB,CA0BF,YAAY,CAKR,QAAQ,CAMJ,MAAM,CAQF,QAAQ,CAKJ,QAAQ,CAcJ,WAAW,CAYP,KAAK,CAAC;EACF,KAAK,ExB1DvB,OAAO;EwB2DW,SAAS,EAAE,IAAI;EACf,WAAW,EAAE,GAAG;CACnB;;AAhF7B,AAiF4B,MAjFtB,CA0BF,YAAY,CAKR,QAAQ,CAMJ,MAAM,CAQF,QAAQ,CAKJ,QAAQ,CAcJ,WAAW,CAiBP,KAAK,CAAC;EACF,KAAK,ExB3DpB,OAAO;EwB4DQ,UAAU,EAAE,MAAM;EAClB,WAAW,EAAE,GAAG;EAChB,UAAU,EAAE,eAAe;EAC3B,SAAS,EAAE,IAAI;CAClB;;AAvF7B,AA4FY,MA5FN,CA0BF,YAAY,CAKR,QAAQ,CA6DJ,SAAS,CAAC;EACN,KAAK,EAAE,IAAI;CAOd;;AANG,MAAM,CAAC,MAAM,MAAM,SAAS,EAAE,KAAK;EA9FnD,AA4FY,MA5FN,CA0BF,YAAY,CAKR,QAAQ,CA6DJ,SAAS,CAAC;IAGF,KAAK,EAAE,KAAK;GAKnB;;;AApGb,AAiGgB,MAjGV,CA0BF,YAAY,CAKR,QAAQ,CA6DJ,SAAS,CAKL,GAAG,CAAC;EACA,KAAK,EAAE,IAAI;CACd;;AAnGjB,AAwGI,MAxGE,CAwGF,QAAQ,CAAC;EACL,UAAU,EAAE,IAAI;EAChB,aAAa,EAAE,IAAI;CA4BtB;;AA3BG,MAAM,CAAC,MAAM,MAAM,SAAS,EAAE,KAAK;EA3G3C,AAwGI,MAxGE,CAwGF,QAAQ,CAAC;IAID,MAAM,EAAE,MAAM;GA0BrB;;;AAtIL,AA8GQ,MA9GF,CAwGF,QAAQ,CAMJ,MAAM,CAAC;EACH,OAAO,EAAE,IAAI;EACb,eAAe,EAAE,MAAM;CAa1B;;AAZG,MAAM,CAAC,MAAM,MAAM,SAAS,EAAE,KAAK;EAjH/C,AA8GQ,MA9GF,CAwGF,QAAQ,CAMJ,MAAM,CAAC;IAIC,aAAa,EAAE,IAAI;IACnB,eAAe,EAAE,UAAU;GAUlC;;;AA7HT,AAqHY,MArHN,CAwGF,QAAQ,CAMJ,MAAM,CAOF,CAAC,CAAC;EACE,SAAS,EAAE,IAAI;EACf,WAAW,EAAE,GAAG;EAChB,WAAW,EAAE,IAAI;CAIpB;;AAHG,MAAM,CAAC,MAAM,MAAM,SAAS,EAAE,KAAK;EAzHnD,AAqHY,MArHN,CAwGF,QAAQ,CAMJ,MAAM,CAOF,CAAC,CAAC;IAKM,SAAS,EAAE,IAAI;GAEtB;;;AA5Hb,AA8HQ,MA9HF,CAwGF,QAAQ,CAsBJ,UAAU,CAAC;EACP,SAAS,EAAE,IAAI;EACf,WAAW,EAAE,GAAG;EAChB,WAAW,EAAE,IAAI;CAIpB;;AAHG,MAAM,CAAC,MAAM,MAAM,SAAS,EAAE,KAAK;EAlI/C,AA8HQ,MA9HF,CAwGF,QAAQ,CAsBJ,UAAU,CAAC;IAKH,SAAS,EAAE,IAAI;GAEtB;;;AArIT,AAuII,MAvIE,CAuIF,GAAG,CAAC;EACA,OAAO,EAAE,MAAM;EACf,MAAM,EAAE,qBAAqB;EAC7B,mBAAmB,EAAE,oBAAoB,CAAC,UAAU;CAMvD;;AALG,MAAM,CAAC,MAAM,MAAM,SAAS,EAAE,KAAK;EA3I3C,AAuII,MAvIE,CAuIF,GAAG,CAAC;IAKI,WAAW,EAAE,IAAI;IACjB,cAAc,EAAE,IAAI;IACpB,MAAM,EAAE,SAAS;GAExB;;;AAhJL,AAmJQ,MAnJF,CAkJF,KAAK,CACD,aAAa,CAAC;EACV,WAAW,EAAE,IAAI;EACjB,cAAc,EAAE,IAAI;CA0BvB;;AAzBG,MAAM,CAAC,MAAM,MAAM,SAAS,EAAE,KAAK;EAtJ/C,AAmJQ,MAnJF,CAkJF,KAAK,CACD,aAAa,CAAC;IAIN,cAAc,EAAE,IAAI;GAwB3B;;;AA/KT,AA0JgB,MA1JV,CAkJF,KAAK,CACD,aAAa,CAMT,UAAU,CACN,KAAK,CAAC;EACF,MAAM,EAAE,CAAC;CAkBZ;;AA7KjB,AA4JoB,MA5Jd,CAkJF,KAAK,CACD,aAAa,CAMT,UAAU,CACN,KAAK,CAED,aAAa,CAAC;EACV,aAAa,EAAE,CAAC;CACnB;;AA9JrB,AA+JoB,MA/Jd,CAkJF,KAAK,CACD,aAAa,CAMT,UAAU,CACN,KAAK,CAKD,UAAU,CAAC;EACP,UAAU,EAAE,IAAI;EAChB,YAAY,EAAE,CAAC;CAWlB;;AA5KrB,AAkKwB,MAlKlB,CAkJF,KAAK,CACD,aAAa,CAMT,UAAU,CACN,KAAK,CAKD,UAAU,CAGN,WAAW,CAAC;EACR,SAAS,EAAE,IAAI;EACf,WAAW,EAAE,GAAG;EAChB,cAAc,EAAE,CAAC;CACpB;;AAtKzB,AAuKwB,MAvKlB,CAkJF,KAAK,CACD,aAAa,CAMT,UAAU,CACN,KAAK,CAKD,UAAU,CAQN,UAAU,CAAC;EACP,SAAS,EAAE,IAAI;EACf,KAAK,ExB9ItB,OAAO;EwB+IU,cAAc,EAAE,SAAS;CAC5B;;AA3KzB,AAoLY,MApLN,CAkLF,QAAQ,CACJ,eAAe,CACX,YAAY,CAAC;EACT,KAAK,EAAE,KAAK;EACZ,SAAS,EAAE,KAAK;EAChB,MAAM,EAAE,IAAI;EACZ,cAAc,EAAE,IAAI;CAQvB;;AAhMb,AAyLgB,MAzLV,CAkLF,QAAQ,CACJ,eAAe,CACX,YAAY,CAKR,GAAG,CAAC;EACA,KAAK,EAAE,IAAI;EACX,MAAM,EAAE,eAAe;CAI1B;;AA/LjB,AA4LoB,MA5Ld,CAkLF,QAAQ,CACJ,eAAe,CACX,YAAY,CAKR,GAAG,AAGE,MAAM,CAAC;EACJ,MAAM,EAAE,aAAa;CACxB;;AC9LrB,AAAA,aAAa,CAAC;EACZ,UAAU,EAAE,IAAI;EAChB,cAAc,EAAE,KAAK;EAIrB,gBAAgB,EzBYH,SAAS;CyBwHvB;;AAvIC,MAAM,CAAC,MAAM,MAAM,SAAS,EAAE,KAAK;EAHrC,AAAA,aAAa,CAAC;IAIV,cAAc,EAAE,KAAK;GAsIxB;;;AA1ID,AAQI,aARS,CAOX,QAAQ,CACN,IAAI,CAAC;EACH,MAAM,EAAE,IAAI;CACb;;AAVL,AAWI,aAXS,CAOX,QAAQ,CAIN,WAAW,CAAC;EACV,gBAAgB,EAAE,WAAW;EAC7B,OAAO,EAAE,iBAAiB;CAkB3B;;AA/BL,AAcM,aAdO,CAOX,QAAQ,CAIN,WAAW,CAGT,eAAe,CAAC;EACd,SAAS,EAAE,IAAI;EACf,WAAW,EAAE,GAAG;CACjB;;AAjBP,AAoBM,aApBO,CAOX,QAAQ,CAIN,WAAW,CAST,gBAAgB,CAAC;EAIf,SAAS,EAAE,IAAI;CAMhB;;AA9BP,AAqBQ,aArBK,CAOX,QAAQ,CAIN,WAAW,CAST,gBAAgB,AACb,QAAQ,CAAC;EACR,OAAO,EAAE,IAAI;CACd;;AAvBT,AAyBQ,aAzBK,CAOX,QAAQ,CAIN,WAAW,CAST,gBAAgB,CAKd,CAAC,CAAC;EACA,KAAK,EzBLF,OAAO;EyBMV,eAAe,EAAE,IAAI;EACrB,SAAS,EAAE,IAAI;CAChB;;AA7BT,AAkCE,aAlCW,CAkCX,OAAO,CAAC;EACN,QAAQ,EAAE,QAAQ;CAsGnB;;AAzIH,AAoCI,aApCS,CAkCX,OAAO,CAEL,MAAM,CAAC;EACL,KAAK,EAAE,IAAI;CAiBZ;;AAtDL,AAsCM,aAtCO,CAkCX,OAAO,CAEL,MAAM,CAEJ,KAAK,CAAC;EACJ,KAAK,EAAE,KAAK;EACZ,MAAM,EAAE,eAAe;EAQvB,KAAK,EAAE,IAAI;EACX,qBAAqB,EAAE,GAAG;EAC1B,kBAAkB,EAAE,GAAG;EACvB,aAAa,EAAE,GAAG;EAClB,UAAU,EAAE,MAAM;CACnB;;AAZC,MAAM,CAAC,MAAM,MAAM,SAAS,EAAE,KAAK;EAzC3C,AAsCM,aAtCO,CAkCX,OAAO,CAEL,MAAM,CAEJ,KAAK,CAAC;IAIF,KAAK,EAAE,IAAI;GAWd;;;AArDP,AA4CQ,aA5CK,CAkCX,OAAO,CAEL,MAAM,CAEJ,KAAK,CAMH,GAAG,CAAC;EACF,KAAK,EAAE,IAAI;CACZ;;AA9CT,AAuDI,aAvDS,CAkCX,OAAO,CAqBL,MAAM,CAAC;EACL,QAAQ,EAAE,QAAQ;EAClB,MAAM,EAAE,MAAM;CA0Cf;;AAzCC,MAAM,CAAC,MAAM,MAAM,SAAS,EAAE,KAAK;EA1DzC,AAuDI,aAvDS,CAkCX,OAAO,CAqBL,MAAM,CAAC;IAIH,MAAM,EAAE,MAAM;GAwCjB;;;AAtCC,MAAM,CAAC,MAAM,MAAM,SAAS,EAAE,KAAK;EA7DzC,AAuDI,aAvDS,CAkCX,OAAO,CAqBL,MAAM,CAAC;IAOH,MAAM,EAAE,KAAK;GAqChB;;;AAnGL,AAoEM,aApEO,CAkCX,OAAO,CAqBL,MAAM,CAaJ,KAAK,CAAC;EACJ,UAAU,EAAE,OAAO;EACnB,MAAM,EAAE,GAAG;EACX,KAAK,EAAE,IAAI;EACX,qBAAqB,EAAE,GAAG;EAC1B,kBAAkB,EAAE,GAAG;EACvB,aAAa,EAAE,GAAG;EAClB,UAAU,EAAE,MAAM;EAClB,MAAM,EAAE,OAAO;CAkBhB;;AAjBC,MAAM,CAAC,MAAM,MAAM,SAAS,EAAE,KAAK;EA7E3C,AAoEM,aApEO,CAkCX,OAAO,CAqBL,MAAM,CAaJ,KAAK,CAAC;IAUF,KAAK,EAAE,KAAK;GAgBf;;;AAdC,MAAM,CAAC,MAAM,MAAM,SAAS,EAAE,KAAK;EAhF3C,AAoEM,aApEO,CAkCX,OAAO,CAqBL,MAAM,CAaJ,KAAK,CAAC;IAaF,KAAK,EAAE,KAAK;GAaf;;;AAXC,MAAM,CAAC,MAAM,MAAM,SAAS,EAAE,KAAK;EAnF3C,AAoEM,aApEO,CAkCX,OAAO,CAqBL,MAAM,CAaJ,KAAK,CAAC;IAgBF,KAAK,EAAE,KAAK;GAUf;;;AARC,MAAM,CAAC,MAAM,MAAM,SAAS,EAAE,KAAK;EAtF3C,AAoEM,aApEO,CAkCX,OAAO,CAqBL,MAAM,CAaJ,KAAK,CAAC;IAmBF,KAAK,EAAE,IAAI;GAOd;;;AA9FP,AAyFQ,aAzFK,CAkCX,OAAO,CAqBL,MAAM,CAaJ,KAAK,CAqBH,GAAG,CAAC;EACF,KAAK,EAAE,eAAe;CACvB;;AA3FT,AA+FM,aA/FO,CAkCX,OAAO,CAqBL,MAAM,CAwCJ,QAAQ,CAAC,KAAK,CAAC;EACb,MAAM,EAAE,SAAS;EACjB,YAAY,EzBjFL,OAAO;CyBkFf;;AAlGP,AAqGM,aArGO,CAkCX,OAAO,CAkEL,UAAU,CACR,QAAQ,CAAC;EACP,wDAAwD;CAOzD;;AA7GP,AAuGQ,aAvGK,CAkCX,OAAO,CAkEL,UAAU,CACR,QAAQ,EAEN,AAAA,KAAC,EAAO,MAAM,AAAb,EAAe;EACd,UAAU,EAAE,aAAa;CAI1B;;AA5GT,AAyGU,aAzGG,CAkCX,OAAO,CAkEL,UAAU,CACR,QAAQ,EAEN,AAAA,KAAC,EAAO,MAAM,AAAb,CAEE,SAAS,AAAA,MAAM,CAAC;EACf,gBAAgB,EAAE,OAAO;CAC1B;;AA3GX,AAgHM,aAhHO,CAkCX,OAAO,CA6EL,MAAM,AAAA,UAAU,CACd,QAAQ,CAAC;EACP,OAAO,EAAE,eAAe;CACzB;;AAlHP,AAqHI,aArHS,CAkCX,OAAO,CAmFL,MAAM,AAAA,UAAU,CAAC;EACf,QAAQ,EAAE,QAAQ;CAkBnB;;AAxIL,AAuHM,aAvHO,CAkCX,OAAO,CAmFL,MAAM,AAAA,UAAU,CAEd,SAAS;AAvHf,aAAa,CAkCX,OAAO,CAmFL,MAAM,AAAA,UAAU,CAGd,SAAS,CAAC;EACR,KAAK,EAAE,IAAI;EACX,MAAM,EAAE,IAAI;EACZ,UAAU,EAAE,KAAK;EACjB,QAAQ,EAAE,QAAQ;EAClB,GAAG,EAAE,GAAG;CAIT;;AAjIP,AA8HQ,aA9HK,CAkCX,OAAO,CAmFL,MAAM,AAAA,UAAU,CAEd,SAAS,AAON,MAAM;AA9Hf,aAAa,CAkCX,OAAO,CAmFL,MAAM,AAAA,UAAU,CAGd,SAAS,AAMN,MAAM,CAAC;EACN,gBAAgB,EAAE,sBAAsB;CACzC;;AAhIT,AAkIM,aAlIO,CAkCX,OAAO,CAmFL,MAAM,AAAA,UAAU,CAad,SAAS,CAAC;EACR,IAAI,EAAE,IAAI;CACX;;AApIP,AAqIM,aArIO,CAkCX,OAAO,CAmFL,MAAM,AAAA,UAAU,CAgBd,SAAS,CAAC;EACR,KAAK,EAAE,IAAI;CACZ;;AAIP,AAAA,gBAAgB,CAAC;EACf,WAAW,EAAE,IAAI;CAihBlB;;AAlhBD,AAGI,gBAHY,CAEd,QAAQ,CACN,OAAO,CAAC;EACN,UAAU,EAAE,MAAM;EAClB,KAAK,EzB7HG,OAAO;EyB8Hf,WAAW,EAAE,GAAG;EAChB,cAAc,EAAE,IAAI;CACrB;;AARL,AASI,gBATY,CAEd,QAAQ,CAON,OAAO,CAAC;EACN,OAAO,EAAE,IAAI;EACb,eAAe,EAAE,MAAM;EACvB,aAAa,EAAE,GAAG;CASnB;;AArBL,AAaM,gBAbU,CAEd,QAAQ,CAON,OAAO,CAIL,CAAC,CAAC;EACA,SAAS,EAAE,IAAI;EACf,OAAO,EAAE,KAAK;EACd,YAAY,EAAE,GAAG;CAIlB;;AApBP,AAiBQ,gBAjBQ,CAEd,QAAQ,CAON,OAAO,CAIL,CAAC,CAIC,GAAG,CAAC;EACF,KAAK,EAAE,IAAI;CACZ;;AAnBT,AAsBI,gBAtBY,CAEd,QAAQ,CAoBN,GAAG,CAAC;EACF,OAAO,EAAE,IAAI;EACb,eAAe,EAAE,MAAM;EACvB,WAAW,EAAE,MAAM;CAgBpB;;AAzCL,AA0BM,gBA1BU,CAEd,QAAQ,CAoBN,GAAG,CAID,MAAM,CAAC;EACL,KAAK,EzBnJC,OAAO;EyBoJb,SAAS,EAAE,IAAI;EACf,WAAW,EAAE,GAAG;EAChB,WAAW,EAAE,IAAI;EACjB,YAAY,EAAE,IAAI;CACnB;;AAhCP,AAiCM,gBAjCU,CAEd,QAAQ,CAoBN,GAAG,CAWD,UAAU,CAAC;EACT,KAAK,EzBlJF,OAAO;EyBmJV,SAAS,EAAE,IAAI;EACf,WAAW,EAAE,GAAG;EAChB,WAAW,EAAE,IAAI;EACjB,YAAY,EAAE,IAAI;EAClB,eAAe,EAAE,YAAY;CAC9B;;AAxCP,AA0CI,gBA1CY,CAEd,QAAQ,CAwCN,IAAI,CAAC;EACH,UAAU,EAAE,IAAI;EAChB,SAAS,EAAE,IAAI;EACf,WAAW,EAAE,IAAI;EACjB,UAAU,EAAE,MAAM;CACnB;;AA/CL,AAgDI,gBAhDY,CAEd,QAAQ,CA8CN,IAAI,CAAC;EACH,UAAU,EAAE,IAAI;EAChB,OAAO,EAAE,IAAI;EACb,eAAe,EAAE,YAAY;EAsB7B,uDAAuD;CA8ExD;;AAnGC,MAAM,CAAC,MAAM,MAAM,SAAS,EAAE,KAAK;EApDzC,AAgDI,gBAhDY,CAEd,QAAQ,CA8CN,IAAI,CAAC;IAKD,OAAO,EAAE,KAAK;IACd,UAAU,EAAE,MAAM;GAiGrB;;;AAvJL,AAwDM,gBAxDU,CAEd,QAAQ,CA8CN,IAAI,CAQF,CAAC,CAAC;EACA,SAAS,EAAE,IAAI;EACf,WAAW,EAAE,GAAG;EAChB,YAAY,EAAE,IAAI;EAClB,UAAU,EAAE,iBAAiB;CAC9B;;AA7DP,AA8DM,gBA9DU,CAEd,QAAQ,CA8CN,IAAI,CAcF,IAAI,CAAC;EACH,MAAM,EAAE,IAAI;EACZ,aAAa,EAAE,CAAC;EAChB,OAAO,EAAE,IAAI;EACb,OAAO,EAAE,QAAQ;EACjB,gBAAgB,EAAE,WAAW;EAC7B,MAAM,EAAE,OAAO;EACf,SAAS,EAAE,IAAI;EACf,MAAM,EAAE,SAAS;EACjB,YAAY,EzBtLE,IAAI;CyBuLnB;;AAxEP,AA0EM,gBA1EU,CAEd,QAAQ,CA8CN,IAAI,CA0BF,OAAO;AA1Eb,gBAAgB,CAEd,QAAQ,CA8CN,IAAI,CA2BF,IAAI,AAAA,MAAM,CAAC;EACT,gBAAgB,EAAE,OAAe;EACjC,KAAK,EAAE,KAAK;CACb;;AA9EP,AA+EM,gBA/EU,CAEd,QAAQ,CA8CN,IAAI,CA+BF,MAAM,CAAC;EACL,kBAAkB,EAAE,SAAS;EAC7B,aAAa,EAAE,SAAS;EACxB,UAAU,EAAE,SAAS;CAoEtB;;AAnEC,MAAM,CAAC,MAAM,MAAM,SAAS,EAAE,KAAK;EAnF3C,AA+EM,gBA/EU,CAEd,QAAQ,CA8CN,IAAI,CA+BF,MAAM,CAAC;IAKH,UAAU,EAAE,IAAI;GAkEnB;;;AAtJP,AAuFU,gBAvFM,CAEd,QAAQ,CA8CN,IAAI,CA+BF,MAAM,CAOJ,cAAc,CACZ,GAAG,CAAC;EACF,OAAO,EAAE,YAAY;CACtB;;AAzFX,AA0FU,gBA1FM,CAEd,QAAQ,CA8CN,IAAI,CA+BF,MAAM,CAOJ,cAAc,CAIZ,KAAK,CAAA,AAAA,IAAC,CAAK,OAAO,AAAZ,EAAc;EAClB,OAAO,EAAE,IAAI;CAyDd;;AApJX,AA4FY,gBA5FI,CAEd,QAAQ,CA8CN,IAAI,CA+BF,MAAM,CAOJ,cAAc,CAIZ,KAAK,CAAA,AAAA,IAAC,CAAK,OAAO,AAAZ,IAEF,KAAK,CAAC;EACN,KAAK,EAAE,IAAI;EACX,SAAS,EAAE,IAAI;CAyBhB;;AAvHb,AA+Fc,gBA/FE,CAEd,QAAQ,CA8CN,IAAI,CA+BF,MAAM,CAOJ,cAAc,CAIZ,KAAK,CAAA,AAAA,IAAC,CAAK,OAAO,AAAZ,IAEF,KAAK,CAGL,IAAI,CAAC;EACH,OAAO,EAAE,IAAI;EACb,eAAe,EAAE,MAAM;EACvB,WAAW,EAAE,MAAM;EACnB,KAAK,EAAE,IAAI;EACX,MAAM,EAAE,IAAI;EACZ,MAAM,EAAE,YAAY;EACpB,cAAc,EAAE,MAAM;EACtB,MAAM,EAAE,OAAO;EACf,aAAa,EAAE,GAAG;EAClB,MAAM,EAAE,iBAAiB;EACzB,UAAU,EAAE,CAAC,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC,CAAC,mBAAmB;EAC3C,iBAAiB,EAAE,SAAS;EAC5B,mBAAmB,EAAE,MAAM;EAC3B,UAAU,EAAE,MAAM;CASnB;;AAtHf,AA+GgB,gBA/GA,CAEd,QAAQ,CA8CN,IAAI,CA+BF,MAAM,CAOJ,cAAc,CAIZ,KAAK,CAAA,AAAA,IAAC,CAAK,OAAO,AAAZ,IAEF,KAAK,CAGL,IAAI,CAgBF,GAAG,CAAC;EACF,OAAO,EAAE,CAAC;EACV,kBAAkB,EAAE,SAAS;EAC7B,aAAa,EAAE,SAAS;EACxB,UAAU,EAAE,SAAS;EACrB,KAAK,EAAE,GAAG;CACX;;AArHjB,AAwHY,gBAxHI,CAEd,QAAQ,CA8CN,IAAI,CA+BF,MAAM,CAOJ,cAAc,CAIZ,KAAK,CAAA,AAAA,IAAC,CAAK,OAAO,AAAZ,CA8BH,QAAQ,GAAG,KAAK,CAAC,IAAI,CAAC;EACrB,gBAAgB,EzBvNpB,OAAO;CyBwNJ;;AA1Hb,AA2HY,gBA3HI,CAEd,QAAQ,CA8CN,IAAI,CA+BF,MAAM,CAOJ,cAAc,CAIZ,KAAK,CAAA,AAAA,IAAC,CAAK,OAAO,AAAZ,CAiCH,QAAQ,GAAG,KAAK,CAAC,IAAI,CAAC;EACrB,gBAAgB,EzBzNpB,OAAO;CyB0NJ;;AA7Hb,AA8HY,gBA9HI,CAEd,QAAQ,CA8CN,IAAI,CA+BF,MAAM,CAOJ,cAAc,CAIZ,KAAK,CAAA,AAAA,IAAC,CAAK,OAAO,AAAZ,CAoCH,QAAQ,GAAG,KAAK,CAAC,IAAI,CAAC;EACrB,gBAAgB,EzB3NpB,OAAO;CyB4NJ;;AAhIb,AAiIY,gBAjII,CAEd,QAAQ,CA8CN,IAAI,CA+BF,MAAM,CAOJ,cAAc,CAIZ,KAAK,CAAA,AAAA,IAAC,CAAK,OAAO,AAAZ,CAuCH,QAAQ,GAAG,KAAK,CAAC,IAAI,CAAC;EACrB,gBAAgB,EzB7NpB,OAAO;CyB8NJ;;AAnIb,AAoIY,gBApII,CAEd,QAAQ,CA8CN,IAAI,CA+BF,MAAM,CAOJ,cAAc,CAIZ,KAAK,CAAA,AAAA,IAAC,CAAK,OAAO,AAAZ,CA0CH,QAAQ,GAAG,KAAK,CAAC,IAAI,CAAC;EACrB,gBAAgB,EzBjQf,OAAO;CyBkQT;;AAtIb,AAuIY,gBAvII,CAEd,QAAQ,CA8CN,IAAI,CA+BF,MAAM,CAOJ,cAAc,CAIZ,KAAK,CAAA,AAAA,IAAC,CAAK,OAAO,AAAZ,CA6CH,QAAQ,GAAG,KAAK,CAAC,IAAI,CAAC;EACrB,gBAAgB,EzB9PjB,OAAO;CyB+PP;;AAzIb,AA0IY,gBA1II,CAEd,QAAQ,CA8CN,IAAI,CA+BF,MAAM,CAOJ,cAAc,CAIZ,KAAK,CAAA,AAAA,IAAC,CAAK,OAAO,AAAZ,CAgDH,QAAQ,GAAG,KAAK,CAAC,IAAI,CAAC;EACrB,gBAAgB,EzBtOpB,OAAO;CyBuOJ;;AA5Ib,AA6IY,gBA7II,CAEd,QAAQ,CA8CN,IAAI,CA+BF,MAAM,CAOJ,cAAc,CAIZ,KAAK,CAAA,AAAA,IAAC,CAAK,OAAO,AAAZ,CAmDH,QAAQ,GAAG,KAAK,CAAC,IAAI,CAAC;EACrB,gBAAgB,EAAE,IAAI;CACvB;;AA/Ib,AAgJY,gBAhJI,CAEd,QAAQ,CA8CN,IAAI,CA+BF,MAAM,CAOJ,cAAc,CAIZ,KAAK,CAAA,AAAA,IAAC,CAAK,OAAO,AAAZ,CAsDH,QAAQ,GAAG,KAAK,CAAC,IAAI,CAAC,GAAG,CAAC;EACzB,OAAO,EAAE,YAAY;CAEtB;;AAnJb,AAwJI,gBAxJY,CAEd,QAAQ,CAsJN,KAAK,CAAC;EACJ,OAAO,EAAE,IAAI;EACb,eAAe,EAAE,MAAM;EACvB,WAAW,EAAE,IAAI;CAoBlB;;AA/KL,AA4JM,gBA5JU,CAEd,QAAQ,CAsJN,KAAK,CAIH,YAAY,CAAC;EACX,YAAY,EAAE,IAAI;EAClB,KAAK,EAAE,KAAK;EACZ,MAAM,EAAE,SAAS;EACjB,WAAW,EAAE,IAAI;EACjB,YAAY,EzBhRE,IAAI;CyB6RnB;;AA9KP,AAmKU,gBAnKM,CAEd,QAAQ,CAsJN,KAAK,CAIH,YAAY,CAMV,gBAAgB,CACd,CAAC,CAAC;EACA,KAAK,EzB1RJ,OAAO;CyB2RT;;AArKX,AAuKQ,gBAvKQ,CAEd,QAAQ,CAsJN,KAAK,CAIH,YAAY,CAWV,SAAS,CAAC;EACR,UAAU,EAAE,MAAM;EAClB,MAAM,EAAE,WAAW;EACnB,SAAS,EAAE,IAAI;EACf,WAAW,EAAE,GAAG;EAChB,gBAAgB,EAAE,WAAW;CAC9B;;AA7KT,AAgLI,gBAhLY,CAEd,QAAQ,CA8KN,OAAO,CAAC;EACN,OAAO,EAAE,IAAI;EACb,eAAe,EAAE,MAAM;EACvB,WAAW,EAAE,IAAI;CAoBlB;;AAnBC,MAAM,CAAC,MAAM,MAAM,SAAS,EAAE,KAAK;EApLzC,AAgLI,gBAhLY,CAEd,QAAQ,CA8KN,OAAO,CAAC;IAKJ,OAAO,EAAE,gBAAgB;IACzB,UAAU,EAAE,MAAM;GAiBrB;;;AAvML,AAwLM,gBAxLU,CAEd,QAAQ,CA8KN,OAAO,CAQL,CAAC,CAAC;EAQA,SAAS,EAAE,IAAI;EACf,KAAK,EzBvTA,OAAO;EyBwTZ,cAAc,EAAE,SAAS;EACzB,eAAe,EAAE,IAAI;EACrB,cAAc,EAAE,GAAG;EACnB,YAAY,EAAE,IAAI;CACnB;;AAbC,MAAM,CAAC,MAAM,MAAM,SAAS,EAAE,KAAK;EAzL3C,AAwLM,gBAxLU,CAEd,QAAQ,CA8KN,OAAO,CAQL,CAAC,CAAC;IAEE,OAAO,EAAE,gBAAgB;IACzB,UAAU,EAAE,MAAM;GAWrB;EAtMP,AA4LU,gBA5LM,CAEd,QAAQ,CA8KN,OAAO,CAQL,CAAC,AAII,YAAY,CAAC;IACZ,cAAc,EAAE,IAAI;GACrB;;;AA9LX,AAwMI,gBAxMY,CAEd,QAAQ,CAsMN,GAAG,CAAC;EACF,WAAW,EAAE,IAAI;EACjB,QAAQ,EAAE,QAAQ;EAClB,UAAU,EAAE,MAAM;CA+BnB;;AA1OL,AA4MM,gBA5MU,CAEd,QAAQ,CAsMN,GAAG,AAIA,OAAO,CAAC;EACP,QAAQ,EAAE,QAAQ;EAClB,IAAI,EAAE,CAAC;EACP,KAAK,EAAE,CAAC;EACR,GAAG,EAAE,IAAI;EACT,MAAM,EAAE,GAAG;EACX,KAAK,EAAE,KAAK;EACZ,UAAU,EAAE,OAAO;EACnB,OAAO,EAAE,EAAE;EACX,OAAO,EAAE,EAAE;EACX,MAAM,EAAE,MAAM;CAUf;;AATC,MAAM,CAAC,MAAM,MAAM,SAAS,EAAE,KAAK;EAvN3C,AA4MM,gBA5MU,CAEd,QAAQ,CAsMN,GAAG,AAIA,OAAO,CAAC;IAYL,KAAK,EAAE,KAAK;GAQf;;;AANC,MAAM,CAAC,MAAM,MAAM,SAAS,EAAE,KAAK;EA1N3C,AA4MM,gBA5MU,CAEd,QAAQ,CAsMN,GAAG,AAIA,OAAO,CAAC;IAeL,KAAK,EAAE,KAAK;GAKf;;;AAHC,MAAM,CAAC,MAAM,MAAM,SAAS,EAAE,KAAK;EA7N3C,AA4MM,gBA5MU,CAEd,QAAQ,CAsMN,GAAG,AAIA,OAAO,CAAC;IAkBL,OAAO,EAAE,IAAI;GAEhB;;;AAhOP,AAiOM,gBAjOU,CAEd,QAAQ,CAsMN,GAAG,CAyBD,IAAI,CAAC;EACH,gBAAgB,EzBvVX,IAAI;EyBwVT,SAAS,EAAE,IAAI;EACf,WAAW,EAAE,GAAG;EAChB,OAAO,EAAE,MAAM;CAIhB;;AAHC,MAAM,CAAC,MAAM,MAAM,SAAS,EAAE,KAAK;EAtO3C,AAiOM,gBAjOU,CAEd,QAAQ,CAsMN,GAAG,CAyBD,IAAI,CAAC;IAMD,SAAS,EAAE,IAAI;GAElB;;;AAzOP,AA2OI,gBA3OY,CAEd,QAAQ,CAyON,QAAQ,CAAC;EACP,SAAS,EAAE,KAAK;EAChB,MAAM,EAAE,IAAI;EACZ,WAAW,EAAE,IAAI;CAIlB;;AAlPL,AA+OM,gBA/OU,CAEd,QAAQ,CAyON,QAAQ,CAIN,GAAG,CAAC;EACF,KAAK,EAAE,IAAI;CACZ;;AAjPP,AAmPI,gBAnPY,CAEd,QAAQ,CAiPN,MAAM,CAAC;EACL,UAAU,EAAE,IAAI;CAgBjB;;AApQL,AAqPM,gBArPU,CAEd,QAAQ,CAiPN,MAAM,CAEJ,EAAE,CAAC;EACD,YAAY,EAAE,CAAC;EACf,UAAU,EAAE,MAAM;CAYnB;;AAnQP,AAwPQ,gBAxPQ,CAEd,QAAQ,CAiPN,MAAM,CAEJ,EAAE,CAGA,EAAE,CAAC;EACD,KAAK,EzB/WF,OAAO;EyBgXV,SAAS,EAAE,IAAI;EACf,WAAW,EAAE,GAAG;EAChB,cAAc,EAAE,IAAI;CAMrB;;AAlQT,AA6PU,gBA7PM,CAEd,QAAQ,CAiPN,MAAM,CAEJ,EAAE,CAGA,EAAE,CAKA,IAAI,CAAC;EACH,KAAK,EzB9WN,OAAO;EyB+WN,SAAS,EAAE,IAAI;EACf,WAAW,EAAE,iBAAiB;CAC/B;;AAjQX,AAqQI,gBArQY,CAEd,QAAQ,CAmQN,YAAY,CAAC;EACX,UAAU,EAAE,IAAI;CAqCjB;;AA3SL,AAwQQ,gBAxQQ,CAEd,QAAQ,CAmQN,YAAY,CAEV,GAAG,CACD,SAAS,CAAC;EACR,eAAe,EAAE,MAAM;CAQxB;;AAjRT,AA0QU,gBA1QM,CAEd,QAAQ,CAmQN,YAAY,CAEV,GAAG,CACD,SAAS,CAEP,SAAS,CAAC;EACR,KAAK,EzB3XN,OAAO;EyB4XN,SAAS,EAAE,IAAI;EACf,WAAW,EAAE,GAAG;EAChB,MAAM,EAAE,MAAM;EACd,gBAAgB,EAAE,WAAW;CAC9B;;AAhRX,AAmRM,gBAnRU,CAEd,QAAQ,CAmQN,YAAY,CAcV,SAAS,CAAC,SAAS,AAAA,KAAK,CAAC,SAAS;AAnRxC,gBAAgB,CAEd,QAAQ,CAmQN,YAAY,CAeV,SAAS,CAAC,SAAS,AAAA,OAAO,CAAC;EACzB,MAAM,EAAE,SAAS;EACjB,aAAa,EAAE,CAAC;EAChB,YAAY,EAAE,WAAW;EACzB,mBAAmB,EzBpZZ,OAAO,CyBoZqB,UAAU;CAC9C;;AAzRP,AA0RM,gBA1RU,CAEd,QAAQ,CAmQN,YAAY,CAqBV,YAAY,CAAC;EACX,UAAU,EAAE,IAAI;EAChB,cAAc,EAAE,IAAI;CAcrB;;AA1SP,AA8RU,gBA9RM,CAEd,QAAQ,CAmQN,YAAY,CAqBV,YAAY,CAGV,SAAS,CACP,IAAI,CAAC;EACH,KAAK,EzBrZJ,OAAO;EyBsZR,SAAS,EAAE,IAAI;EACf,WAAW,EAAE,GAAG;EAChB,WAAW,EAAE,IAAI;CAClB;;AAnSX,AAqSQ,gBArSQ,CAEd,QAAQ,CAmQN,YAAY,CAqBV,YAAY,CAWV,GAAG,CAAC;EACF,SAAS,EAAE,IAAI;EACf,WAAW,EAAE,IAAI;EACjB,WAAW,EAAE,IAAI;CAClB;;AAzST,AA4SI,gBA5SY,CAEd,QAAQ,CA0SN,QAAQ,CAAC;EACP,WAAW,EAAE,IAAI;EACjB,cAAc,EAAE,IAAI;CAkOrB;;AAhhBL,AA+SM,gBA/SU,CAEd,QAAQ,CA0SN,QAAQ,CAGN,QAAQ,CAAC;EACP,QAAQ,EAAE,QAAQ;EAClB,aAAa,EAAE,IAAI;CA8NpB;;AA/gBP,AAmTU,gBAnTM,CAEd,QAAQ,CA0SN,QAAQ,CAGN,QAAQ,AAGL,MAAM,CACL,MAAM,CAAC;EACL,KAAK,EAAE,cAAc;EACrB,OAAO,EAAE,YAAY;CAItB;;AAzTX,AAsTY,gBAtTI,CAEd,QAAQ,CA0SN,QAAQ,CAGN,QAAQ,AAGL,MAAM,CACL,MAAM,CAGJ,EAAE,CAAC;EACD,OAAO,EAAE,gBAAgB;CAC1B;;AAxTb,AA0TU,gBA1TM,CAEd,QAAQ,CA0SN,QAAQ,CAGN,QAAQ,AAGL,MAAM,CAQL,aAAa,CAAC;EACZ,OAAO,EAAE,YAAY;CACtB;;AA5TX,AA6TU,gBA7TM,CAEd,QAAQ,CA0SN,QAAQ,CAGN,QAAQ,AAGL,MAAM,CAWL,SAAS,CAAC;EACR,GAAG,EAAE,eAAe;EACpB,OAAO,EAAE,YAAY;CACtB;;AAhUX,AAiUU,gBAjUM,CAEd,QAAQ,CA0SN,QAAQ,CAGN,QAAQ,AAGL,MAAM,CAeL,MAAM,CAAC;EACL,OAAO,EAAE,YAAY;CACtB;;AAnUX,AAqUQ,gBArUQ,CAEd,QAAQ,CA0SN,QAAQ,CAGN,QAAQ,CAsBN,YAAY,CAAC;EACX,SAAS,EAAE,KAAK;CA+FjB;;AAraT,AAuUU,gBAvUM,CAEd,QAAQ,CA0SN,QAAQ,CAGN,QAAQ,CAsBN,YAAY,CAEV,GAAG,CAAC;EACF,KAAK,EAAE,IAAI;CACZ;;AAzUX,AA0UU,gBA1UM,CAEd,QAAQ,CA0SN,QAAQ,CAGN,QAAQ,CAsBN,YAAY,CAKV,MAAM,CAAC;EACL,KAAK,EAAE,IAAI;EACX,MAAM,EAAE,IAAI;EAEZ,QAAQ,EAAE,QAAQ;EAClB,GAAG,EAAE,CAAC;EACN,OAAO,EAAE,IAAI;EACb,eAAe,EAAE,GAAG;EACpB,WAAW,EAAE,MAAM;EACnB,OAAO,EAAE,CAAC;EACV,KAAK,EAAE,CAAC;EACR,kBAAkB,EAAE,SAAS;EAC7B,aAAa,EAAE,SAAS;EACxB,UAAU,EAAE,SAAS;EACrB,OAAO,EAAE,CAAC;CAoDX;;AA5YX,AAyVY,gBAzVI,CAEd,QAAQ,CA0SN,QAAQ,CAGN,QAAQ,CAsBN,YAAY,CAKV,MAAM,CAeJ,EAAE,CAAC;EACD,YAAY,EAAE,CAAC;EACf,OAAO,EAAE,IAAI;EACb,QAAQ,EAAE,QAAQ;CA+CnB;;AA3Yb,AA6Vc,gBA7VE,CAEd,QAAQ,CA0SN,QAAQ,CAGN,QAAQ,CAsBN,YAAY,CAKV,MAAM,CAeJ,EAAE,CAIA,EAAE,CAAC;EACD,UAAU,EzBndb,IAAI;EyBodD,OAAO,EAAE,GAAG;EACZ,aAAa,EAAE,GAAG;CA0CnB;;AA1Yf,AAkWkB,gBAlWF,CAEd,QAAQ,CA0SN,QAAQ,CAGN,QAAQ,CAsBN,YAAY,CAKV,MAAM,CAeJ,EAAE,CAIA,EAAE,AAIC,MAAM,CACL,OAAO,CAAC;EACN,OAAO,EAAE,YAAY;CACtB;;AApWnB,AAsWgB,gBAtWA,CAEd,QAAQ,CA0SN,QAAQ,CAGN,QAAQ,CAsBN,YAAY,CAKV,MAAM,CAeJ,EAAE,CAIA,EAAE,CASA,OAAO,CAAC;EACN,QAAQ,EAAE,QAAQ;EAClB,OAAO,EAAE,OAAO;EAChB,gBAAgB,EzB/drB,OAAO;EyBgeF,KAAK,EzB/dV,IAAI;EyBgeC,OAAO,EAAE,GAAG;EACZ,GAAG,EAAE,IAAI;EACT,KAAK,EAAE,IAAI;EACX,kBAAkB,EAAE,SAAS;EAC7B,aAAa,EAAE,SAAS;EACxB,UAAU,EAAE,SAAS;EACrB,OAAO,EAAE,CAAC;CAWX;;AA5XjB,AAkXkB,gBAlXF,CAEd,QAAQ,CA0SN,QAAQ,CAGN,QAAQ,CAsBN,YAAY,CAKV,MAAM,CAeJ,EAAE,CAIA,EAAE,CASA,OAAO,AAYJ,OAAO,CAAC;EACP,OAAO,EAAE,GAAG;EACZ,gBAAgB,EAAE,IAAI;EACtB,MAAM,EAAE,GAAG;EACX,KAAK,EAAE,GAAG;EACV,QAAQ,EAAE,QAAQ;EAClB,GAAG,EAAE,IAAI;EACT,SAAS,EAAE,aAAa;EACxB,KAAK,EAAE,IAAI;CACZ;;AA3XnB,AA6XgB,gBA7XA,CAEd,QAAQ,CA0SN,QAAQ,CAGN,QAAQ,CAsBN,YAAY,CAKV,MAAM,CAeJ,EAAE,CAIA,EAAE,CAgCA,WAAW,CAAC;EACV,aAAa,EAAE,CAAC;CACjB;;AA/XjB,AAgYgB,gBAhYA,CAEd,QAAQ,CA0SN,QAAQ,CAGN,QAAQ,CAsBN,YAAY,CAKV,MAAM,CAeJ,EAAE,CAIA,EAAE,CAmCA,CAAC,CAAC;EACA,KAAK,EzBvfV,OAAO;EyBwfF,eAAe,EAAE,IAAI;CACtB;;AAnYjB,AAoYgB,gBApYA,CAEd,QAAQ,CA0SN,QAAQ,CAGN,QAAQ,CAsBN,YAAY,CAKV,MAAM,CAeJ,EAAE,CAIA,EAAE,CAuCA,eAAe,CAAC;EACd,SAAS,EAAE,IAAI;CAChB;;AAtYjB,AAuYgB,gBAvYA,CAEd,QAAQ,CA0SN,QAAQ,CAGN,QAAQ,CAsBN,YAAY,CAKV,MAAM,CAeJ,EAAE,CAIA,EAAE,CA0CA,IAAI,CAAC;EACH,SAAS,EAAE,IAAI;CAChB;;AAzYjB,AA6YU,gBA7YM,CAEd,QAAQ,CA0SN,QAAQ,CAGN,QAAQ,CAsBN,YAAY,CAwEV,IAAI,CAAC;EACH,QAAQ,EAAE,QAAQ;EAClB,GAAG,EAAE,IAAI;EACT,IAAI,EAAE,CAAC;EACP,gBAAgB,EzBtgBf,IAAI;EyBugBL,KAAK,EzBxgBJ,OAAO;EyBygBR,cAAc,EAAE,GAAG;EACnB,SAAS,EAAE,IAAI;EACf,WAAW,EAAE,GAAG;EAChB,OAAO,EAAE,QAAQ;EACjB,cAAc,EAAE,SAAS;CAC1B;;AAxZX,AAyZU,gBAzZM,CAEd,QAAQ,CA0SN,QAAQ,CAGN,QAAQ,CAsBN,YAAY,CAoFV,KAAK,CAAC;EACJ,QAAQ,EAAE,QAAQ;EAClB,GAAG,EAAE,IAAI;EACT,IAAI,EAAE,CAAC;EACP,gBAAgB,EzBnhBf,OAAO;EyBohBR,KAAK,EzBnhBJ,IAAI;EyBohBL,cAAc,EAAE,GAAG;EACnB,SAAS,EAAE,IAAI;EACf,WAAW,EAAE,GAAG;EAChB,OAAO,EAAE,QAAQ;EACjB,cAAc,EAAE,SAAS;CAC1B;;AApaX,AAsaQ,gBAtaQ,CAEd,QAAQ,CA0SN,QAAQ,CAGN,QAAQ,CAuHN,YAAY,CAAC;EACX,WAAW,EAAE,IAAI;EACjB,QAAQ,EAAE,QAAQ;CAsGnB;;AA9gBT,AAyaU,gBAzaM,CAEd,QAAQ,CA0SN,QAAQ,CAGN,QAAQ,CAuHN,YAAY,CAGV,SAAS,CAAC;EACR,KAAK,EzBpgBP,OAAO;EyBqgBL,QAAQ,EAAE,QAAQ;EAClB,GAAG,EAAE,KAAK;EACV,OAAO,EAAE,CAAC;EACV,SAAS,EAAE,IAAI;EACf,WAAW,EAAE,GAAG;EAChB,cAAc,EAAE,KAAK;EACrB,kBAAkB,EAAE,SAAS;EAC7B,aAAa,EAAE,SAAS;EACxB,UAAU,EAAE,SAAS;CACtB;;AApbX,AAqbU,gBArbM,CAEd,QAAQ,CA0SN,QAAQ,CAGN,QAAQ,CAuHN,YAAY,CAeV,aAAa,CAAC;EACZ,KAAK,EzB9iBH,OAAO;EyB+iBT,SAAS,EAAE,IAAI;EACf,WAAW,EAAE,GAAG;EAChB,cAAc,EAAE,GAAG;EACnB,OAAO,EAAE,CAAC;EACV,kBAAkB,EAAE,SAAS;EAC7B,aAAa,EAAE,SAAS;EACxB,UAAU,EAAE,SAAS;CACtB;;AA9bX,AA+bU,gBA/bM,CAEd,QAAQ,CA0SN,QAAQ,CAGN,QAAQ,CAuHN,YAAY,CAyBV,OAAO,CAAC;EACN,OAAO,EAAE,IAAI;CASd;;AAzcX,AAicY,gBAjcI,CAEd,QAAQ,CA0SN,QAAQ,CAGN,QAAQ,CAuHN,YAAY,CAyBV,OAAO,CAEL,CAAC,CAAC;EACA,SAAS,EAAE,IAAI;EACf,OAAO,EAAE,KAAK;EACd,YAAY,EAAE,GAAG;CAIlB;;AAxcb,AAqcc,gBArcE,CAEd,QAAQ,CA0SN,QAAQ,CAGN,QAAQ,CAuHN,YAAY,CAyBV,OAAO,CAEL,CAAC,CAIC,GAAG,CAAC;EACF,KAAK,EAAE,IAAI;CACZ;;AAvcf,AA0cU,gBA1cM,CAEd,QAAQ,CA0SN,QAAQ,CAGN,QAAQ,CAuHN,YAAY,CAoCV,MAAM,CAAC;EACL,KAAK,EzBnkBH,OAAO;EyBokBT,SAAS,EAAE,IAAI;EACf,WAAW,EAAE,GAAG;EAChB,WAAW,EAAE,IAAI;CAClB;;AA/cX,AAgdU,gBAhdM,CAEd,QAAQ,CA0SN,QAAQ,CAGN,QAAQ,CAuHN,YAAY,CA0CV,MAAM,CAAC;EACL,QAAQ,EAAE,QAAQ;EAClB,MAAM,EAAE,GAAG;EACX,KAAK,EAAE,IAAI;EACX,OAAO,EAAE,GAAG;EACZ,OAAO,EAAE,CAAC;EACV,kBAAkB,EAAE,SAAS;EAC7B,aAAa,EAAE,SAAS;EACxB,UAAU,EAAE,SAAS;CAqDtB;;AA7gBX,AA0dc,gBA1dE,CAEd,QAAQ,CA0SN,QAAQ,CAGN,QAAQ,CAuHN,YAAY,CA0CV,MAAM,CASJ,cAAc,CACZ,GAAG,CAAC;EACF,OAAO,EAAE,YAAY;CACtB;;AA5df,AA6dc,gBA7dE,CAEd,QAAQ,CA0SN,QAAQ,CAGN,QAAQ,CAuHN,YAAY,CA0CV,MAAM,CASJ,cAAc,CAIZ,KAAK,CAAA,AAAA,IAAC,CAAK,OAAO,AAAZ,EAAc;EAClB,OAAO,EAAE,IAAI;CA6Cd;;AA3gBf,AA+dgB,gBA/dA,CAEd,QAAQ,CA0SN,QAAQ,CAGN,QAAQ,CAuHN,YAAY,CA0CV,MAAM,CASJ,cAAc,CAIZ,KAAK,CAAA,AAAA,IAAC,CAAK,OAAO,AAAZ,IAEF,KAAK,CAAC;EACN,KAAK,EAAE,IAAI;EACX,SAAS,EAAE,IAAI;CAyBhB;;AA1fjB,AAkekB,gBAleF,CAEd,QAAQ,CA0SN,QAAQ,CAGN,QAAQ,CAuHN,YAAY,CA0CV,MAAM,CASJ,cAAc,CAIZ,KAAK,CAAA,AAAA,IAAC,CAAK,OAAO,AAAZ,IAEF,KAAK,CAGL,IAAI,CAAC;EACH,OAAO,EAAE,IAAI;EACb,eAAe,EAAE,MAAM;EACvB,WAAW,EAAE,MAAM;EACnB,KAAK,EAAE,IAAI;EACX,MAAM,EAAE,IAAI;EACZ,MAAM,EAAE,YAAY;EACpB,cAAc,EAAE,MAAM;EACtB,MAAM,EAAE,OAAO;EACf,aAAa,EAAE,GAAG;EAClB,MAAM,EAAE,iBAAiB;EACzB,UAAU,EAAE,CAAC,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC,CAAC,mBAAmB;EAC3C,iBAAiB,EAAE,SAAS;EAC5B,mBAAmB,EAAE,MAAM;EAC3B,UAAU,EAAE,MAAM;CASnB;;AAzfnB,AAkfoB,gBAlfJ,CAEd,QAAQ,CA0SN,QAAQ,CAGN,QAAQ,CAuHN,YAAY,CA0CV,MAAM,CASJ,cAAc,CAIZ,KAAK,CAAA,AAAA,IAAC,CAAK,OAAO,AAAZ,IAEF,KAAK,CAGL,IAAI,CAgBF,GAAG,CAAC;EACF,OAAO,EAAE,CAAC;EACV,kBAAkB,EAAE,SAAS;EAC7B,aAAa,EAAE,SAAS;EACxB,UAAU,EAAE,SAAS;EACrB,KAAK,EAAE,GAAG;CACX;;AAxfrB,AA2fgB,gBA3fA,CAEd,QAAQ,CA0SN,QAAQ,CAGN,QAAQ,CAuHN,YAAY,CA0CV,MAAM,CASJ,cAAc,CAIZ,KAAK,CAAA,AAAA,IAAC,CAAK,OAAO,AAAZ,CA8BH,QAAQ,GAAG,KAAK,CAAC,IAAI,CAAC;EACrB,gBAAgB,EzB1lBxB,OAAO;CyB2lBA;;AA7fjB,AA8fgB,gBA9fA,CAEd,QAAQ,CA0SN,QAAQ,CAGN,QAAQ,CAuHN,YAAY,CA0CV,MAAM,CASJ,cAAc,CAIZ,KAAK,CAAA,AAAA,IAAC,CAAK,OAAO,AAAZ,CAiCH,QAAQ,GAAG,KAAK,CAAC,IAAI,CAAC;EACrB,gBAAgB,EzB5lBxB,OAAO;CyB6lBA;;AAhgBjB,AAigBgB,gBAjgBA,CAEd,QAAQ,CA0SN,QAAQ,CAGN,QAAQ,CAuHN,YAAY,CA0CV,MAAM,CASJ,cAAc,CAIZ,KAAK,CAAA,AAAA,IAAC,CAAK,OAAO,AAAZ,CAoCH,QAAQ,GAAG,KAAK,CAAC,IAAI,CAAC;EACrB,gBAAgB,EzB9lBxB,OAAO;CyB+lBA;;AAngBjB,AAogBgB,gBApgBA,CAEd,QAAQ,CA0SN,QAAQ,CAGN,QAAQ,CAuHN,YAAY,CA0CV,MAAM,CASJ,cAAc,CAIZ,KAAK,CAAA,AAAA,IAAC,CAAK,OAAO,AAAZ,CAuCH,QAAQ,GAAG,KAAK,CAAC,IAAI,CAAC;EACrB,gBAAgB,EzBhmBxB,OAAO;CyBimBA;;AAtgBjB,AAugBgB,gBAvgBA,CAEd,QAAQ,CA0SN,QAAQ,CAGN,QAAQ,CAuHN,YAAY,CA0CV,MAAM,CASJ,cAAc,CAIZ,KAAK,CAAA,AAAA,IAAC,CAAK,OAAO,AAAZ,CA0CH,QAAQ,GAAG,KAAK,CAAC,IAAI,CAAC,GAAG,CAAC;EACzB,OAAO,EAAE,YAAY;CAEtB;;ACrpBjB,AAAA,KAAK,CAAC;EACJ,UAAU,EAAE,IAAI;EAChB,aAAa,EAAE,IAAI;CA2OpB;;AA7OD,AAGE,KAHG,CAGH,cAAc,CAAC;EACb,QAAQ,EAAE,IAAI;CAsHf;;AA1HH,AAOI,KAPC,CAGH,cAAc,CAIZ,MAAM,CAAC;EACL,UAAU,EAAE,IAAI;CAiHjB;;AAzHL,AASM,KATD,CAGH,cAAc,CAIZ,MAAM,CAEJ,KAAK,CAAC;EACJ,gBAAgB,EAAE,WAAW;CAO9B;;AAjBP,AAWQ,KAXH,CAGH,cAAc,CAIZ,MAAM,CAEJ,KAAK,CAEH,EAAE,CAAC;EACD,SAAS,EAAE,IAAI;EACf,UAAU,EAAE,WAAW;EACvB,aAAa,EAAE,cAAc;EAC7B,cAAc,EAAE,IAAI;CACrB;;AAhBT,AAmBQ,KAnBH,CAGH,cAAc,CAIZ,MAAM,CAWJ,KAAK,CACH,SAAS,CAAC;EACR,OAAO,EAAE,IAAI;EACb,WAAW,EAAE,MAAM;EACnB,cAAc,EAAE,IAAI;EACpB,UAAU,EAAE,IAAI;CAuBjB;;AAtBC,MAAM,CAAC,MAAM,MAAM,SAAS,EAAE,KAAK;EAxB7C,AAmBQ,KAnBH,CAGH,cAAc,CAIZ,MAAM,CAWJ,KAAK,CACH,SAAS,CAAC;IAMN,OAAO,EAAE,KAAK;GAqBjB;;;AA9CT,AA2BU,KA3BL,CAGH,cAAc,CAIZ,MAAM,CAWJ,KAAK,CACH,SAAS,CAQP,QAAQ,CAAC;EACP,SAAS,EAAE,KAAK;CAOjB;;AANC,MAAM,CAAC,MAAM,MAAM,SAAS,EAAE,KAAK;EA7B/C,AA2BU,KA3BL,CAGH,cAAc,CAIZ,MAAM,CAWJ,KAAK,CACH,SAAS,CAQP,QAAQ,CAAC;IAGL,SAAS,EAAE,KAAK;GAKnB;;;AAnCX,AAgCY,KAhCP,CAGH,cAAc,CAIZ,MAAM,CAWJ,KAAK,CACH,SAAS,CAQP,QAAQ,CAKN,GAAG,CAAC;EACF,KAAK,EAAE,IAAI;CACZ;;AAlCb,AAoCU,KApCL,CAGH,cAAc,CAIZ,MAAM,CAWJ,KAAK,CACH,SAAS,CAiBP,EAAE,CAAC;EACD,KAAK,E1BlBH,OAAO;E0BmBT,SAAS,EAAE,IAAI;EACf,YAAY,EAAE,IAAI;CAMnB;;AALC,MAAM,CAAC,MAAM,MAAM,SAAS,EAAE,KAAK;EAxC/C,AAoCU,KApCL,CAGH,cAAc,CAIZ,MAAM,CAWJ,KAAK,CACH,SAAS,CAiBP,EAAE,CAAC;IAKC,SAAS,EAAE,IAAI;IACf,YAAY,EAAE,GAAG;IACjB,UAAU,EAAE,IAAI;GAEnB;;;AA7CX,AA+CQ,KA/CH,CAGH,cAAc,CAIZ,MAAM,CAWJ,KAAK,CA6BH,GAAG,CAAC;EACF,SAAS,EAAE,IAAI;EACf,WAAW,EAAE,GAAG;CACjB;;AAlDT,AAmDQ,KAnDH,CAGH,cAAc,CAIZ,MAAM,CAWJ,KAAK,CAiCH,EAAE,CAAC;EACD,cAAc,EAAE,MAAM;CAmEvB;;AAvHT,AAqDU,KArDL,CAGH,cAAc,CAIZ,MAAM,CAWJ,KAAK,CAiCH,EAAE,CAEA,OAAO,CAAC;EACN,QAAQ,EAAE,QAAQ;CACnB;;AAvDX,AAwDU,KAxDL,CAGH,cAAc,CAIZ,MAAM,CAWJ,KAAK,CAiCH,EAAE,CAKA,SAAS,CAAC;EACR,QAAQ,EAAE,QAAQ;EAClB,GAAG,EAAE,KAAK;EACV,IAAI,EAAE,IAAI;CAKX;;AAJC,MAAM,CAAC,MAAM,MAAM,SAAS,EAAE,KAAK;EA5D/C,AAwDU,KAxDL,CAGH,cAAc,CAIZ,MAAM,CAWJ,KAAK,CAiCH,EAAE,CAKA,SAAS,CAAC;IAKN,YAAY,EAAE,IAAI;IAClB,IAAI,EAAE,IAAI;GAEb;;;AAhEX,AAiEU,KAjEL,CAGH,cAAc,CAIZ,MAAM,CAWJ,KAAK,CAiCH,EAAE,CAcA,KAAK,CAAA,AAAA,IAAC,CAAK,QAAQ,AAAb,CAAc,2BAA2B;AAjEzD,KAAK,CAGH,cAAc,CAIZ,MAAM,CAWJ,KAAK,CAiCH,EAAE,CAeA,KAAK,CAAA,AAAA,IAAC,CAAK,QAAQ,AAAb,CAAc,2BAA2B,CAAC;EAC9C,kBAAkB,EAAE,IAAI;EACxB,MAAM,EAAE,CAAC;CACV;;AArEX,AAsEU,KAtEL,CAGH,cAAc,CAIZ,MAAM,CAWJ,KAAK,CAiCH,EAAE,CAmBA,KAAK,CAAA,AAAA,IAAC,CAAK,QAAQ,AAAb,EAAe;EACnB,eAAe,EAAE,SAAS;CAC3B;;AAxEX,AAyEU,KAzEL,CAGH,cAAc,CAIZ,MAAM,CAWJ,KAAK,CAiCH,EAAE,CAsBA,SAAS,CAAC,KAAK,CAAC;EACd,KAAK,EAAE,IAAI;EACX,MAAM,EAAE,IAAI;EACZ,WAAW,EAAE,IAAI;EACjB,OAAO,EAAE,KAAK;EACd,OAAO,EAAE,CAAC;EACV,MAAM,EAAE,CAAC;EACT,YAAY,EAAE,IAAI;EAClB,MAAM,EAAE,cAAc;CACvB;;AAlFX,AAmFU,KAnFL,CAGH,cAAc,CAIZ,MAAM,CAWJ,KAAK,CAiCH,EAAE,CAgCA,SAAS,CAAC,KAAK,AAAA,MAAM,CAAC;EACpB,OAAO,EAAE,CAAC;CACX;;AArFX,AAsFU,KAtFL,CAGH,cAAc,CAIZ,MAAM,CAWJ,KAAK,CAiCH,EAAE,CAmCA,aAAa,CAAC;EACZ,KAAK,EAAE,IAAI;EACX,QAAQ,EAAE,QAAQ;EAClB,MAAM,EAAE,IAAI;CACb;;AA1FX,AA2FU,KA3FL,CAGH,cAAc,CAIZ,MAAM,CAWJ,KAAK,CAiCH,EAAE,CAwCA,gBAAgB,CAAC;EACf,QAAQ,EAAE,QAAQ;EAClB,MAAM,EAAE,OAAO;EACf,WAAW,EAAE,cAAc;EAC3B,KAAK,EAAE,IAAI;EACX,UAAU,EAAE,MAAM;EAClB,KAAK,EAAE,IAAI;EACX,SAAS,EAAE,IAAI;EACf,WAAW,EAAE,GAAG;EAChB,iBAAiB,EAAE,iBAAiB;EACpC,SAAS,EAAE,iBAAiB;EAC5B,mBAAmB,EAAE,IAAI;EACzB,gBAAgB,EAAE,IAAI;EACtB,eAAe,EAAE,IAAI;EACrB,cAAc,EAAE,IAAI;EACpB,WAAW,EAAE,IAAI;CAClB;;AA3GX,AA4GU,KA5GL,CAGH,cAAc,CAIZ,MAAM,CAWJ,KAAK,CAiCH,EAAE,CAyDA,gBAAgB,AAAA,YAAY,CAAC;EAC3B,QAAQ,EAAE,QAAQ;EAClB,MAAM,EAAE,GAAG;EACX,GAAG,EAAE,KAAK;EACV,aAAa,EAAE,cAAc;CAC9B;;AAjHX,AAkHU,KAlHL,CAGH,cAAc,CAIZ,MAAM,CAWJ,KAAK,CAiCH,EAAE,CA+DA,gBAAgB,AAAA,cAAc,CAAC;EAC7B,QAAQ,EAAE,QAAQ;EAClB,MAAM,EAAE,IAAI;EACZ,MAAM,EAAE,GAAG;CACZ;;AAtHX,AA2HE,KA3HG,CA2HH,aAAa,CAAC;EACZ,UAAU,EAAE,IAAI;CA4BjB;;AAxJH,AA6HI,KA7HC,CA2HH,aAAa,CAEX,YAAY,CAAC;EACX,KAAK,EAAE,IAAI;EACX,MAAM,EAAE,IAAI;EACZ,aAAa,EAAE,CAAC;CAgBjB;;AAfC,MAAM,CAAC,MAAM,MAAM,SAAS,EAAE,KAAK;EAjIzC,AA6HI,KA7HC,CA2HH,aAAa,CAEX,YAAY,CAAC;IAKT,WAAW,EAAE,IAAI;GAcpB;;;AAhJL,AAoIM,KApID,CA2HH,aAAa,CAEX,YAAY,CAOV,aAAa,CAAC;EACZ,aAAa,EAAE,CAAC;EAChB,MAAM,EAAE,IAAI;CACb;;AAvIP,AAwIM,KAxID,CA2HH,aAAa,CAEX,YAAY,CAWV,iBAAiB,CAAC;EAChB,aAAa,EAAE,CAAC;EAChB,gBAAgB,E1BvHV,OAAO;E0BwHb,OAAO,EAAE,MAAM;EACf,KAAK,E1BrFL,OAAO;E0BsFP,MAAM,EAAE,SAAS;EACjB,WAAW,EAAE,GAAG;CACjB;;AA/IP,AAiJI,KAjJC,CA2HH,aAAa,CAsBX,aAAa,AAAA,MAAM,CAAC;EAClB,KAAK,EAAE,OAAO;EACd,gBAAgB,EAAE,IAAI;EACtB,YAAY,E1BjIJ,OAAO;E0BkIf,OAAO,EAAE,CAAC;EACV,UAAU,EAAE,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,MAAM,CAAC,yBAAyB;CACnD;;AAvJL,AAyJE,KAzJG,CAyJH,cAAc,CAAC;EACb,UAAU,EAAE,IAAI;CAgBjB;;AA1KH,AA2JI,KA3JC,CAyJH,cAAc,CAEZ,MAAM,CAAC;EACL,OAAO,EAAE,IAAI;EACb,eAAe,EAAE,aAAa;EAC9B,OAAO,EAAE,MAAM;CAChB;;AA/JL,AAgKI,KAhKC,CAyJH,cAAc,CAOZ,GAAG,CAAC;EACF,UAAU,EAAE,IAAI;EAChB,OAAO,EAAE,IAAI;EACb,qBAAqB,EAAE,OAAO;EAC9B,eAAe,EAAE,IAAI;CAKtB;;AAJC,MAAM,CAAC,MAAM,MAAM,SAAS,EAAE,KAAK;EArKzC,AAgKI,KAhKC,CAyJH,cAAc,CAOZ,GAAG,CAAC;IAMA,YAAY,EAAE,IAAI;IAClB,qBAAqB,EAAE,GAAG;GAE7B;;;AAzKL,AA2KE,KA3KG,CA2KH,KAAK,CAAC;EACJ,eAAe,EAAE,aAAa;EAC9B,UAAU,EAAE,IAAI;EAChB,OAAO,EAAE,MAAM;CAKhB;;AAnLH,AA+KI,KA/KC,CA2KH,KAAK,CAIH,KAAK,CAAC;EACJ,YAAY,EAAE,IAAI;EAClB,WAAW,EAAE,GAAG;CACjB;;AAlLL,AAoLE,KApLG,CAoLH,QAAQ,CAAC;EAaP,6CAA6C;EAM7C,kCAAkC;EAUlC,gDAAgD;EAIhD,6DAA6D;EAI7D,qEAAqE;EAMrE,kDAAkD;EAIlD,sCAAsC;CASvC;;AA5OH,AAqLI,KArLC,CAoLH,QAAQ,CACN,GAAG,CAAC;EACF,OAAO,EAAE,KAAK;EACd,QAAQ,EAAE,QAAQ;EAClB,YAAY,EAAE,IAAI;EAClB,aAAa,EAAE,IAAI;EACnB,MAAM,EAAE,OAAO;EACf,SAAS,EAAE,IAAI;EACf,mBAAmB,EAAE,IAAI;EACzB,gBAAgB,EAAE,IAAI;EACtB,eAAe,EAAE,IAAI;EACrB,WAAW,EAAE,IAAI;CAClB;;AAhML,AAkMI,KAlMC,CAoLH,QAAQ,CAcN,GAAG,CAAC,KAAK,CAAC;EACR,QAAQ,EAAE,QAAQ;EAClB,OAAO,EAAE,CAAC;EACV,MAAM,EAAE,OAAO;CAChB;;AAtML,AAwMI,KAxMC,CAoLH,QAAQ,CAoBN,UAAU,CAAC;EACT,QAAQ,EAAE,QAAQ;EAClB,GAAG,EAAE,CAAC;EACN,IAAI,EAAE,CAAC;EACP,MAAM,EAAE,IAAI;EACZ,KAAK,EAAE,IAAI;EACX,gBAAgB,EAAE,OAAkB;EACpC,aAAa,EAAE,GAAG;CACnB;;AAhNL,AAkNI,KAlNC,CAoLH,QAAQ,CA8BN,GAAG,AAAA,MAAM,CAAC,KAAK,GAAG,UAAU,CAAC;EAC3B,gBAAgB,EAAE,sBAAsB;CACzC;;AApNL,AAsNI,KAtNC,CAoLH,QAAQ,CAkCN,GAAG,CAAC,KAAK,AAAA,QAAQ,GAAG,UAAU,CAAC;EAC7B,gBAAgB,EAAE,OAAO;CAC1B;;AAxNL,AA0NI,KA1NC,CAoLH,QAAQ,CAsCN,UAAU,AAAA,MAAM,CAAC;EACf,OAAO,EAAE,EAAE;EACX,QAAQ,EAAE,QAAQ;EAClB,OAAO,EAAE,IAAI;CACd;;AA9NL,AAgOI,KAhOC,CAoLH,QAAQ,CA4CN,GAAG,CAAC,KAAK,AAAA,QAAQ,GAAG,UAAU,AAAA,MAAM,CAAC;EACnC,OAAO,EAAE,KAAK;CACf;;AAlOL,AAoOI,KApOC,CAoLH,QAAQ,CAgDN,GAAG,CAAC,UAAU,AAAA,MAAM,CAAC;EACnB,GAAG,EAAE,GAAG;EACR,IAAI,EAAE,GAAG;EACT,KAAK,EAAE,GAAG;EACV,MAAM,EAAE,GAAG;EACX,aAAa,EAAE,GAAG;EAClB,UAAU,EAAE,sBAAsB;CACnC;;AC3OL,AAAA,SAAS,CAAC;EACN,aAAa,EAAE,KAAK;CAwMvB;;AAzMD,AAWI,SAXK,CAWL,QAAQ,CAAC;EACL,UAAU,EAAE,IAAI;EAChB,KAAK,EAAE,IAAI;CACd;;AAdL,AAeI,SAfK,CAeL,KAAK,CAAC;EACF,OAAO,EAAE,IAAI;EACb,qBAAqB,EAAE,OAAO;EAC9B,MAAM,EAAE,MAAM;EACd,UAAU,EAAE,GAAG,CAAC,GAAG,CAAC,IAAI,CAAC,GAAG,CAAC,kBAAkB;EAhB/C,qBAAqB,EAiBE,GAAG;EAhB1B,kBAAkB,EAgBK,GAAG;EAf1B,iBAAiB,EAeM,GAAG;EAd1B,aAAa,EAcU,GAAG;EAC1B,QAAQ,EAAE,MAAM;EAChB,UAAU,EAAE,OAAkB;EAC9B,UAAU,EAAE,6DAA6D;EACzE,UAAU,EAAE,6DAA6D;EACzE,UAAU,EAAE,6DAA6D;CAO5E;;AANG,MAAM,CAAC,MAAM,MAAM,SAAS,EAAE,KAAK;EA1B3C,AAeI,SAfK,CAeL,KAAK,CAAC;IAYE,qBAAqB,EAAE,OAAO;GAKrC;;;AAHG,MAAM,CAAC,MAAM,MAAM,SAAS,EAAE,KAAK;EA7B3C,AAeI,SAfK,CAeL,KAAK,CAAC;IAeE,qBAAqB,EAAE,GAAG;GAEjC;;;AAhCL,AAiCI,SAjCK,CAiCL,KAAK,CAAC;EACF,KAAK,EAAE,IAAI;EACX,cAAc,EAAE,IAAI;CAiCvB;;AApEL,AAoCQ,SApCC,CAiCL,KAAK,CAGD,SAAS,CAAC;EACN,SAAS,EAAE,KAAK;EAEhB,MAAM,EAAE,IAAI;CAUf;;AATG,MAAM,CAAC,MAAM,MAAM,SAAS,EAAE,KAAK;EAxC/C,AAoCQ,SApCC,CAiCL,KAAK,CAGD,SAAS,CAAC;IAKF,SAAS,EAAE,IAAI;GAQtB;;;AAjDT,AA8CY,SA9CH,CAiCL,KAAK,CAGD,SAAS,CAUL,GAAG,CAAC;EACA,KAAK,EAAE,IAAI;CACd;;AAhDb,AAkDQ,SAlDC,CAiCL,KAAK,CAiBD,CAAC,CAAC;EACE,KAAK,EAAE,IAAI;EACX,UAAU,EAAE,MAAM;EAClB,WAAW,EAAE,KAAK;EAClB,cAAc,EAAE,GAAG;CACtB;;AAvDT,AAwDQ,SAxDC,CAiCL,KAAK,CAuBD,MAAM,CAAC;EACH,KAAK,EAAE,GAAG;EACV,MAAM,EAAE,MAAM;EACd,cAAc,EAAE,GAAG;CAQtB;;AAnET,AA4DY,SA5DH,CAiCL,KAAK,CAuBD,MAAM,CAIF,EAAE,CAAC;EACC,KAAK,EAAE,IAAI;EACX,UAAU,EAAE,MAAM;EAClB,WAAW,EAAE,GAAG;EAChB,KAAK,EAAE,IAAI;EACX,WAAW,EAAE,IAAI;CACpB;;AAlEb,AAqEI,SArEK,CAqEL,QAAQ,CAAC;EACL,KAAK,EAAE,IAAI;EACX,KAAK,EAAE,KAAK;EACZ,OAAO,EAAE,gBAAgB;CAI5B;;AAHG,MAAM,CAAC,MAAM,MAAM,SAAS,EAAE,KAAK;EAzE3C,AAqEI,SArEK,CAqEL,QAAQ,CAAC;IAKD,OAAO,EAAE,IAAI;GAEpB;;;AA5EL,AA6EI,SA7EK,CA6EL,SAAS,CAAC;EACN,KAAK,EAAE,IAAI;CAuHd;;AArML,AA+EQ,SA/EC,CA6EL,SAAS,CAEL,KAAK,CAAC;EACF,aAAa,EAAE,IAAI;CACtB;;AAjFT,AAkFQ,SAlFC,CA6EL,SAAS,CAKL,KAAK,CAAC;EACF,KAAK,EAAE,IAAI;EACX,cAAc,EAAE,SAAS;EACzB,cAAc,EAAE,KAAK;EACrB,SAAS,EAAE,KAAK;EAChB,OAAO,EAAE,YAAY;CACxB;;AAxFT,AAyFQ,SAzFC,CA6EL,SAAS,CAYL,UAAU,CAAC;EACP,WAAW,EAAE,IAAI;CACpB;;AA3FT,AA4FQ,SA5FC,CA6EL,SAAS,CAeL,KAAK,CAAC;EACF,KAAK,EAAE,GAAG;EACV,MAAM,EAAE,cAAc;EACtB,MAAM,EAAE,IAAI;EACZ,UAAU,EAAE,IAAI;EAChB,MAAM,EAAE,IAAI;EACZ,MAAM,EAAE,OAAO;EACf,cAAc,EAAE,eAAe;EAC/B,MAAM,EAAE,eAAe;CAK1B;;AAzGT,AAqGY,SArGH,CA6EL,SAAS,CAeL,KAAK,AASA,MAAM,CAAC;EACJ,cAAc,EAAE,IAAI;EACpB,MAAM,EAAE,IAAI;CACf;;AAxGb,AA0GQ,SA1GC,CA6EL,SAAS,CA6BL,KAAK,CAAC;EACF,gBAAgB,EAAE,+BAA+B;EACjD,iBAAiB,EAAE,SAAS;EAC5B,mBAAmB,EAAE,aAAa;EAClC,eAAe,EAAE,KAAK;CACzB;;AA/GT,AAgHQ,SAhHC,CA6EL,SAAS,CAmCL,WAAW,CAAC;EACR,gBAAgB,EAAE,iCAAiC;EACnD,iBAAiB,EAAE,SAAS;EAC5B,mBAAmB,EAAE,aAAa;EAClC,eAAe,EAAE,IAAI;CACxB;;AArHT,AAsHQ,SAtHC,CA6EL,SAAS,CAyCL,WAAW;AAtHnB,SAAS,CA6EL,SAAS,CA0CL,WAAW;AAvHnB,SAAS,CA6EL,SAAS,CA2CL,IAAI,CAAC;EACD,KAAK,EAAE,IAAI;EACX,UAAU,EAAE,IAAI;EAChB,MAAM,EAAE,GAAG,CAAC,KAAK,CAnHT,OAAO;EAoHf,OAAO,EAAE,QAAQ;EAzHrB,qBAAqB,EA0HM,GAAG;EAzH9B,kBAAkB,EAyHS,GAAG;EAxH9B,iBAAiB,EAwHU,GAAG;EAvH9B,aAAa,EAuHc,GAAG;EAC1B,cAAc,EAAE,GAAG;CAItB;;AAlIT,AA+HY,SA/HH,CA6EL,SAAS,CAyCL,WAAW,AASN,MAAM;AA/HnB,SAAS,CA6EL,SAAS,CA0CL,WAAW,AAQN,MAAM;AA/HnB,SAAS,CA6EL,SAAS,CA2CL,IAAI,AAOC,MAAM,CAAC;EACJ,MAAM,EAAE,GAAG,CAAC,KAAK,CAvHX,OAAO;CAwHhB;;AAjIb,AAmIQ,SAnIC,CA6EL,SAAS,CAsDL,2BAA2B,CAAC;EACxB,cAAc,EAAE,GAAG;EACnB,cAAc,EAAE,SAAS;EACzB,SAAS,EAAE,KAAK;EAChB,KAAK,EA7HC,OAAO;CA8HhB;;AAxIT,AAyIQ,SAzIC,CA6EL,SAAS,CA4DL,WAAW,CAAC;EACR,cAAc,EAAE,GAAG;CAItB;;AA9IT,AA2IY,SA3IH,CA6EL,SAAS,CA4DL,WAAW,AAEN,2BAA2B,CAAC;EACzB,SAAS,EAAE,GAAG;CACjB;;AA7Ib,AA+IQ,SA/IC,CA6EL,SAAS,CAkEL,KAAK,CAAC;EACF,MAAM,EAAE,GAAG,CAAC,KAAK,CAxIT,OAAO;EALnB,qBAAqB,EA8IM,GAAG;EA7I9B,kBAAkB,EA6IS,GAAG;EA5I9B,iBAAiB,EA4IU,GAAG;EA3I9B,aAAa,EA2Ic,GAAG;EAC1B,KAAK,EAAE,GAAG;EACV,QAAQ,EAAE,MAAM;EAChB,OAAO,EAAE,QAAQ;EACjB,MAAM,EAAE,IAAI;CAyBf;;AA9KT,AAsJY,SAtJH,CA6EL,SAAS,CAkEL,KAAK,CAOD,MAAM;AAtJlB,SAAS,CA6EL,SAAS,CAkEL,KAAK,CAQD,KAAK,CAAC;EACF,UAAU,EAAE,IAAI;EAChB,MAAM,EAAE,IAAI;EACZ,OAAO,EAAE,GAAG;EAvJpB,qBAAqB,EAwJU,GAAG;EAvJlC,kBAAkB,EAuJa,GAAG;EAtJlC,iBAAiB,EAsJc,GAAG;EArJlC,aAAa,EAqJkB,GAAG;EAC1B,KAAK,EAAE,IAAI;EACX,SAAS,EAAE,KAAK;EAChB,cAAc,EAAE,GAAG;EACnB,KAAK,EArJH,OAAO;EAsJT,kBAAkB,EAAE,IAAI;EACxB,eAAe,EAAE,IAAI;EACrB,UAAU,EAAE,IAAI;CAInB;;AAtKb,AAmKgB,SAnKP,CA6EL,SAAS,CAkEL,KAAK,CAOD,MAAM,CAaF,MAAM;AAnKtB,SAAS,CA6EL,SAAS,CAkEL,KAAK,CAQD,KAAK,CAYD,MAAM,CAAC;EACH,UAAU,EAAE,OAAO;CACtB;;AArKjB,AAuKY,SAvKH,CA6EL,SAAS,CAkEL,KAAK,CAwBD,CAAC,CAAC;EACE,KAAK,EAAE,IAAI;EACX,WAAW,EAAE,GAAG;EAChB,SAAS,EAAE,KAAK;EAChB,KAAK,EAjKH,OAAO;EAkKT,cAAc,EAAE,GAAG;CACtB;;AA7Kb,AA+KQ,SA/KC,CA6EL,SAAS,CAkGL,IAAI,CAAC;EACD,KAAK,EAAE,GAAG;EACV,KAAK,EAAE,IAAI;EACX,WAAW,EAAE,GAAG;EAChB,MAAM,EAAE,IAAI;CACf;;AApLT,AAqLQ,SArLC,CA6EL,SAAS,CAwGL,IAAI,CAAC;EACD,UAAU,E3BnKR,OAAO;E2BoKT,MAAM,EAAE,IAAI;EACZ,KAAK,EAAE,IAAI;EACX,OAAO,EAAE,mBAAmB;EAtLhC,qBAAqB,EAuLM,GAAG;EAtL9B,kBAAkB,EAsLS,GAAG;EArL9B,iBAAiB,EAqLU,GAAG;EApL9B,aAAa,EAoLc,GAAG;EAC1B,cAAc,EAAE,SAAS;EACzB,cAAc,EAAE,GAAG;EACnB,WAAW,EAAE,GAAG;EAChB,KAAK,EAAE,OAAO;EACd,MAAM,EAAE,OAAO;EACf,UAAU,EAAE,IAAI;CAInB;;AApMT,AAiMY,SAjMH,CA6EL,SAAS,CAwGL,IAAI,AAYC,MAAM,CAAC;EACJ,gBAAgB,EAAE,OAA0B,CAAC,UAAU;CAC1D;;AAnMb,AAsMI,SAtMK,CAsML,GAAG,CAAC;EACA,eAAe,EAAE,YAAY;CAChC;;ACxML,AAAA,aAAa,CAAC;EACV,UAAU,EAAE,IAAI;CAuUnB;;AAxUD,AAEI,aAFS,CAET,QAAQ,CAAC;EACL,gBAAgB,E5BeT,SAAS;C4B4BnB;;AA9CL,AAIQ,aAJK,CAET,QAAQ,CAEJ,IAAI,CAAC;EACD,OAAO,EAAE,OAAO;CAwCnB;;AAvCG,MAAM,CAAC,MAAM,MAAM,SAAS,EAAE,KAAK;EAN/C,AAIQ,aAJK,CAET,QAAQ,CAEJ,IAAI,CAAC;IAGG,OAAO,EAAE,UAAU;GAsC1B;;;AA7CT,AASY,aATC,CAET,QAAQ,CAEJ,IAAI,CAKA,IAAI,CAAC;EACD,UAAU,EAAE,MAAM;EAClB,SAAS,EAAE,IAAI;EACf,WAAW,EAAE,GAAG;CAKnB;;AAJG,MAAM,CAAC,MAAM,MAAM,SAAS,EAAE,KAAK;EAbnD,AASY,aATC,CAET,QAAQ,CAEJ,IAAI,CAKA,IAAI,CAAC;IAKG,SAAS,EAAE,IAAI;IACf,WAAW,EAAE,GAAG;GAEvB;;;AAjBb,AAkBY,aAlBC,CAET,QAAQ,CAEJ,IAAI,CAcA,KAAK,CAAC;EACF,WAAW,EAAE,IAAI;EACjB,UAAU,EAAE,MAAM;CAwBrB;;AA5Cb,AAuBgB,aAvBH,CAET,QAAQ,CAEJ,IAAI,CAcA,KAAK,CAKD,EAAE,CAAC;EACC,OAAO,EAAE,YAAY;EACrB,YAAY,EAAE,IAAI;EAClB,SAAS,EAAE,IAAI;EACf,KAAK,E5BRX,OAAO;E4BSD,QAAQ,EAAE,QAAQ;CAerB;;AA3CjB,AA6BoB,aA7BP,CAET,QAAQ,CAEJ,IAAI,CAcA,KAAK,CAKD,EAAE,AAMG,OAAO,CAAC;EACL,QAAQ,EAAE,QAAQ;EAClB,KAAK,EAAE,KAAK;EACZ,GAAG,EAAE,CAAC;EACN,OAAO,EAAE,GAAG;CACf;;AAlCrB,AAoCwB,aApCX,CAET,QAAQ,CAEJ,IAAI,CAcA,KAAK,CAKD,EAAE,AAYG,WAAW,AACP,OAAO,CAAC;EACL,OAAO,EAAE,eAAe;CAC3B;;AAEL,MAAM,CAAC,MAAM,MAAM,SAAS,EAAE,KAAK;EAxCvD,AAuBgB,aAvBH,CAET,QAAQ,CAEJ,IAAI,CAcA,KAAK,CAKD,EAAE,CAAC;IAkBK,SAAS,EAAE,IAAI;GAEtB;;;AA3CjB,AA+CI,aA/CS,CA+CT,WAAW,CAAC;EACR,UAAU,EAAE,MAAM;EAClB,aAAa,EAAE,IAAI;CAWtB;;AAVG,MAAM,CAAC,MAAM,MAAM,SAAS,EAAE,KAAK;EAlD3C,AA+CI,aA/CS,CA+CT,WAAW,CAAC;IAIJ,UAAU,EAAE,KAAK;GASxB;;;AA5DL,AAqDQ,aArDK,CA+CT,WAAW,CAMP,YAAY,CAAC;EACT,SAAS,EAAE,IAAI;CAKlB;;AA3DT,AAuDY,aAvDC,CA+CT,WAAW,CAMP,YAAY,CAER,GAAG,CAAC;EACA,KAAK,EAAE,IAAI;EACX,aAAa,EAAE,GAAG;CACrB;;AA1Db,AA6DI,aA7DS,CA6DT,QAAQ,CAAC;EACL,OAAO,EAAE,MAAM;CAyQlB;;AAxQG,MAAM,CAAC,MAAM,MAAM,SAAS,EAAE,KAAK;EA/D3C,AA6DI,aA7DS,CA6DT,QAAQ,CAAC;IAGD,OAAO,EAAE,CAAC;GAuQjB;;;AAvUL,AAkEQ,aAlEK,CA6DT,QAAQ,CAKJ,MAAM,CAAC;EACH,UAAU,EAAE,IAAI;EAChB,OAAO,EAAE,MAAM;EACf,OAAO,EAAE,IAAI;CAiQhB;;AAhQG,MAAM,CAAC,MAAM,MAAM,SAAS,EAAE,KAAK;EAtE/C,AAkEQ,aAlEK,CA6DT,QAAQ,CAKJ,MAAM,CAAC;IAKC,OAAO,EAAE,CAAC;IACV,OAAO,EAAE,KAAK;GA8PrB;;;AA5PG,MAAM,CAAC,MAAM,MAAM,SAAS,EAAE,KAAK;EA1E/C,AAkEQ,aAlEK,CA6DT,QAAQ,CAKJ,MAAM,CAAC;IASC,UAAU,EAAE,IAAI;GA2PvB;;;AAtUT,AA6EY,aA7EC,CA6DT,QAAQ,CAKJ,MAAM,CAWF,OAAO,CAAC;EACJ,YAAY,EAAE,IAAI;CAoErB;;AAlJb,AA+EgB,aA/EH,CA6DT,QAAQ,CAKJ,MAAM,CAWF,OAAO,CAEH,IAAI,CAAC;EACD,KAAK,E5B3DZ,OAAO;E4B4DA,SAAS,EAAE,IAAI;EACf,WAAW,EAAE,GAAG;EAChB,cAAc,EAAE,SAAS;CAI5B;;AAHG,MAAM,CAAC,MAAM,MAAM,SAAS,EAAE,KAAK;EApFvD,AA+EgB,aA/EH,CA6DT,QAAQ,CAKJ,MAAM,CAWF,OAAO,CAEH,IAAI,CAAC;IAMG,UAAU,EAAE,MAAM;GAEzB;;;AAvFjB,AAwFgB,aAxFH,CA6DT,QAAQ,CAKJ,MAAM,CAWF,OAAO,CAWH,UAAU,CAAC;EACP,WAAW,EAAE,IAAI;CAwDpB;;AAvDG,MAAM,CAAC,MAAM,MAAM,SAAS,EAAE,KAAK;EA1FvD,AAwFgB,aAxFH,CA6DT,QAAQ,CAKJ,MAAM,CAWF,OAAO,CAWH,UAAU,CAAC;IAGH,OAAO,EAAE,IAAI;IACb,eAAe,EAAE,MAAM;IACvB,aAAa,EAAE,IAAI;GAoD1B;;;AAjJjB,AA+FoB,aA/FP,CA6DT,QAAQ,CAKJ,MAAM,CAWF,OAAO,CAWH,UAAU,CAON,CAAC,CAAC;EACE,OAAO,EAAE,KAAK;EACd,KAAK,E5B5EhB,OAAO;E4B6EI,YAAY,EAAE,IAAI;CA8CrB;;AA7CG,MAAM,CAAC,MAAM,MAAM,SAAS,EAAE,KAAK;EAnG3D,AA+FoB,aA/FP,CA6DT,QAAQ,CAKJ,MAAM,CAWF,OAAO,CAWH,UAAU,CAON,CAAC,CAAC;IAKM,YAAY,EAAE,IAAI;GA4CzB;;;AAhJrB,AAsGwB,aAtGX,CA6DT,QAAQ,CAKJ,MAAM,CAWF,OAAO,CAWH,UAAU,CAON,CAAC,CAOG,IAAI,CAAC;EACD,MAAM,EAAE,IAAI;EACZ,KAAK,EAAE,IAAI;EACX,SAAS,EAAE,IAAI;EACf,WAAW,EAAE,IAAI;EACjB,aAAa,EAAE,GAAG;EAClB,UAAU,EAAE,MAAM;EAClB,aAAa,EAAE,IAAI;EACnB,KAAK,E5BxFpB,IAAI;C4ByFQ;;AA/GzB,AAiH4B,aAjHf,CA6DT,QAAQ,CAKJ,MAAM,CAWF,OAAO,CAWH,UAAU,CAON,CAAC,AAiBI,UAAW,CAAA,CAAC,EACT,IAAI,CAAC;EACD,KAAK,EAAE,KAAkB,CAAC,UAAU;EACpC,UAAU,EAAE,OAAiB,CAAC,UAAU;CAG3C;;AAtH7B,AAyH4B,aAzHf,CA6DT,QAAQ,CAKJ,MAAM,CAWF,OAAO,CAWH,UAAU,CAON,CAAC,AAyBI,UAAW,CAAA,CAAC,EACT,IAAI,CAAC;EACD,KAAK,E5BpGxB,IAAI,C4BoGmC,UAAU;EAC9B,gBAAgB,EAAE,OAAgB,CAAC,UAAU;CAGhD;;AA9H7B,AAiI4B,aAjIf,CA6DT,QAAQ,CAKJ,MAAM,CAWF,OAAO,CAWH,UAAU,CAON,CAAC,AAiCI,UAAW,CAAA,CAAC,EACT,IAAI,CAAC;EACD,gBAAgB,EAAE,OAAe,CAAC,UAAU;EAC5C,KAAK,E5B7GxB,IAAI,C4B6GmC,UAAU;CAGjC;;AAtI7B,AAyI4B,aAzIf,CA6DT,QAAQ,CAKJ,MAAM,CAWF,OAAO,CAWH,UAAU,CAON,CAAC,AAyCI,UAAW,CAAA,CAAC,EACT,IAAI,CAAC;EACD,gBAAgB,EAAE,yBAAyB,CAAC,UAAU;EACtD,KAAK,E5BrHxB,IAAI,C4BqHmC,UAAU;CAGjC;;AA9I7B,AAmJY,aAnJC,CA6DT,QAAQ,CAKJ,MAAM,CAiFF,MAAM,CAAC;EACH,OAAO,EAAE,SAAS;CAiLrB;;AAhLG,MAAM,CAAC,MAAM,MAAM,SAAS,EAAE,KAAK;EArJnD,AAmJY,aAnJC,CA6DT,QAAQ,CAKJ,MAAM,CAiFF,MAAM,CAAC;IAGC,OAAO,EAAE,MAAM;GA+KtB;;;AArUb,AAwJgB,aAxJH,CA6DT,QAAQ,CAKJ,MAAM,CAiFF,MAAM,CAKF,GAAG,CAAC;EACA,aAAa,EAAE,IAAI;CACtB;;AA1JjB,AA2JgB,aA3JH,CA6DT,QAAQ,CAKJ,MAAM,CAiFF,MAAM,CAQF,CAAC,CAAC;EACE,SAAS,EAAE,IAAI;EACf,WAAW,EAAE,IAAI;CACpB;;AA9JjB,AA+JgB,aA/JH,CA6DT,QAAQ,CAKJ,MAAM,CAiFF,MAAM,CAYF,IAAI,CAAC;EACD,gBAAgB,E5B9IrB,SAAS;E4B+IJ,aAAa,EAAE,GAAG;EAClB,OAAO,EAAE,SAAS;EAClB,UAAU,EAAE,IAAI;EAChB,QAAQ,EAAE,QAAQ;EAClB,aAAa,EAAE,IAAI;CAuBtB;;AA5LjB,AAsKoB,aAtKP,CA6DT,QAAQ,CAKJ,MAAM,CAiFF,MAAM,CAYF,IAAI,CAOA,qBAAqB,CAAC;EAClB,QAAQ,EAAE,QAAQ;EAClB,GAAG,EAAE,KAAK;CAWb;;AAnLrB,AAyKwB,aAzKX,CA6DT,QAAQ,CAKJ,MAAM,CAiFF,MAAM,CAYF,IAAI,CAOA,qBAAqB,CAGjB,IAAI,CAAC;EACD,KAAK,E5BpJpB,IAAI;E4BqJW,gBAAgB,E5B1HlC,OAAO;E4B2HW,SAAS,EAAE,IAAI;EACf,MAAM,EAAE,IAAI;EACZ,KAAK,EAAE,IAAI;EACX,WAAW,EAAE,IAAI;EACjB,aAAa,EAAE,GAAG;EAClB,UAAU,EAAE,MAAM;CACrB;;AAlLzB,AAoLoB,aApLP,CA6DT,QAAQ,CAKJ,MAAM,CAiFF,MAAM,CAYF,IAAI,CAqBA,CAAC,CAAC;EACE,UAAU,EAAE,IAAI;EAChB,KAAK,E5BjKhB,OAAO;E4BkKI,SAAS,EAAE,IAAI;EACf,WAAW,EAAE,GAAG;EAChB,UAAU,EAAE,MAAM;EAClB,WAAW,EAAE,IAAI;CACpB;;AA3LrB,AA6LgB,aA7LH,CA6DT,QAAQ,CAKJ,MAAM,CAiFF,MAAM,CA0CF,KAAK,CAAC;EACF,MAAM,EAAE,SAAS;EACjB,YAAY,EAAE,WAAW;EACzB,gBAAgB,E5BpKd,IAAI,C4BoKiC,UAAU;CA0CpD;;AA1OjB,AAiMoB,aAjMP,CA6DT,QAAQ,CAKJ,MAAM,CAiFF,MAAM,CA0CF,KAAK,CAID,MAAM,CAAC;EACH,UAAU,EAAE,IAAI;EAChB,eAAe,EAAE,aAAa;CAsCjC;;AArCG,MAAM,CAAC,MAAM,MAAM,SAAS,EAAE,KAAK;EApM3D,AAiMoB,aAjMP,CA6DT,QAAQ,CAKJ,MAAM,CAiFF,MAAM,CA0CF,KAAK,CAID,MAAM,CAAC;IAIC,OAAO,EAAE,gBAAgB;GAoChC;;;AAzOrB,AAuMwB,aAvMX,CA6DT,QAAQ,CAKJ,MAAM,CAiFF,MAAM,CA0CF,KAAK,CAID,MAAM,CAMF,MAAM,CAAC;EACH,OAAO,EAAE,IAAI;EACb,WAAW,EAAE,MAAM;CAiBtB;;AAhBG,MAAM,CAAC,MAAM,MAAM,SAAS,EAAE,KAAK;EA1M/D,AAuMwB,aAvMX,CA6DT,QAAQ,CAKJ,MAAM,CAiFF,MAAM,CA0CF,KAAK,CAID,MAAM,CAMF,MAAM,CAAC;IAIC,eAAe,EAAE,iBAAiB;GAezC;;;AA1NzB,AA6M4B,aA7Mf,CA6DT,QAAQ,CAKJ,MAAM,CAiFF,MAAM,CA0CF,KAAK,CAID,MAAM,CAMF,MAAM,CAMF,YAAY,CAAC;EACT,SAAS,EAAE,IAAI;EACf,YAAY,EAAE,IAAI;CAIrB;;AAnN7B,AAgNgC,aAhNnB,CA6DT,QAAQ,CAKJ,MAAM,CAiFF,MAAM,CA0CF,KAAK,CAID,MAAM,CAMF,MAAM,CAMF,YAAY,CAGR,GAAG,CAAC;EACA,KAAK,EAAE,IAAI;CACd;;AAlNjC,AAoN4B,aApNf,CA6DT,QAAQ,CAKJ,MAAM,CAiFF,MAAM,CA0CF,KAAK,CAID,MAAM,CAMF,MAAM,CAaF,GAAG,CAAC;EACA,KAAK,E5BlMvB,OAAO;E4BmMW,SAAS,EAAE,IAAI;EACf,WAAW,EAAE,GAAG;EAChB,cAAc,EAAE,SAAS;CAC5B;;AAGD,MAAM,CAAC,MAAM,MAAM,SAAS,EAAE,KAAK;EA5N/D,AA2NwB,aA3NX,CA6DT,QAAQ,CAKJ,MAAM,CAiFF,MAAM,CA0CF,KAAK,CAID,MAAM,CA0BF,KAAK,CAAC;IAEE,UAAU,EAAE,MAAM;IAClB,UAAU,EAAE,IAAI;GAUvB;;;AAxOzB,AAgO4B,aAhOf,CA6DT,QAAQ,CAKJ,MAAM,CAiFF,MAAM,CA0CF,KAAK,CAID,MAAM,CA0BF,KAAK,CAKD,CAAC,CAAC;EACE,eAAe,EAAE,IAAI;CAMxB;;AAvO7B,AAkOgC,aAlOnB,CA6DT,QAAQ,CAKJ,MAAM,CAiFF,MAAM,CA0CF,KAAK,CAID,MAAM,CA0BF,KAAK,CAKD,CAAC,CAEG,IAAI,CAAC;EACD,KAAK,E5BhN3B,OAAO;E4BiNe,SAAS,EAAE,IAAI;EACf,WAAW,EAAE,GAAG;CACnB;;AAtOjC,AA2OgB,aA3OH,CA6DT,QAAQ,CAKJ,MAAM,CAiFF,MAAM,CAwFF,KAAK,CAAC;EACF,OAAO,EAAE,IAAI;EACb,qBAAqB,EAAE,OAAO;EAC9B,eAAe,EAAE,IAAI;EACrB,UAAU,EAAE,IAAI;CA2BnB;;AA1BG,MAAM,CAAC,MAAM,MAAM,SAAS,EAAE,KAAK;EAhPvD,AA2OgB,aA3OH,CA6DT,QAAQ,CAKJ,MAAM,CAiFF,MAAM,CAwFF,KAAK,CAAC;IAME,YAAY,EAAE,IAAI;IAClB,qBAAqB,EAAE,GAAG;GAwBjC;;;AA1QjB,AAoPoB,aApPP,CA6DT,QAAQ,CAKJ,MAAM,CAiFF,MAAM,CAwFF,KAAK,CASD,CAAC,CAAC;EACE,eAAe,EAAE,IAAI;EACrB,KAAK,E5B1NP,IAAI;C4B6OL;;AAzQrB,AAuPwB,aAvPX,CA6DT,QAAQ,CAKJ,MAAM,CAiFF,MAAM,CAwFF,KAAK,CASD,CAAC,CAGG,IAAI,CAAC;EACD,KAAK,E5B5NX,IAAI;E4B6NE,SAAS,EAAE,IAAI;EACf,YAAY,EAAE,IAAI;CACrB;;AA3PzB,AA4PwB,aA5PX,CA6DT,QAAQ,CAKJ,MAAM,CAiFF,MAAM,CAwFF,KAAK,CASD,CAAC,CAQG,CAAC,CAAC;EACE,KAAK,E5B1OnB,OAAO;E4B2OO,SAAS,EAAE,IAAI;EACf,WAAW,EAAE,GAAG;EAChB,WAAW,EAAE,IAAI;EACjB,cAAc,EAAE,UAAU;EAC1B,UAAU,EAAE,IAAI;CACnB;;AAnQzB,AAoQwB,aApQX,CA6DT,QAAQ,CAKJ,MAAM,CAiFF,MAAM,CAwFF,KAAK,CASD,CAAC,CAgBG,GAAG,CAAC;EACA,MAAM,EAAE,SAAS;EACjB,YAAY,E5B1OlB,IAAI,C4B0OqC,UAAU;EAC7C,OAAO,EAAE,SAAS;CACrB;;AAxQzB,AA2QgB,aA3QH,CA6DT,QAAQ,CAKJ,MAAM,CAiFF,MAAM,CAwHF,YAAY,CAAC;EACT,UAAU,EAAE,IAAI;CAwDnB;;AApUjB,AA6QoB,aA7QP,CA6DT,QAAQ,CAKJ,MAAM,CAiFF,MAAM,CAwHF,YAAY,CAER,OAAO,CAAC;EACJ,UAAU,EAAE,MAAM;EAClB,aAAa,EAAE,IAAI;CAQtB;;AAvRrB,AAgRwB,aAhRX,CA6DT,QAAQ,CAKJ,MAAM,CAiFF,MAAM,CAwHF,YAAY,CAER,OAAO,CAGH,KAAK,CAAC;EACF,KAAK,E5B9PnB,OAAO;E4B+PO,cAAc,EAAE,UAAU;EAC1B,cAAc,EAAE,GAAG;EACnB,SAAS,EAAE,IAAI;EACf,WAAW,EAAE,GAAG;CACnB;;AAGD,MAAM,CAAC,MAAM,MAAM,SAAS,EAAE,KAAK;EAzR3D,AAwRoB,aAxRP,CA6DT,QAAQ,CAKJ,MAAM,CAiFF,MAAM,CAwHF,YAAY,CAaR,IAAI,CAAC;IAEG,UAAU,EAAE,IAAI;GAyCvB;;;AAnUrB,AA4RwB,aA5RX,CA6DT,QAAQ,CAKJ,MAAM,CAiFF,MAAM,CAwHF,YAAY,CAaR,IAAI,CAIA,WAAW,CAAC;EACR,aAAa,EAAE,IAAI;CAmBtB;;AAlBG,MAAM,CAAC,MAAM,MAAM,SAAS,EAAE,KAAK;EA9R/D,AA4RwB,aA5RX,CA6DT,QAAQ,CAKJ,MAAM,CAiFF,MAAM,CAwHF,YAAY,CAaR,IAAI,CAIA,WAAW,CAAC;IAGJ,aAAa,EAAE,IAAI;GAiB1B;;;AAhTzB,AAiS4B,aAjSf,CA6DT,QAAQ,CAKJ,MAAM,CAiFF,MAAM,CAwHF,YAAY,CAaR,IAAI,CAIA,WAAW,CAKP,aAAa,CAAC;EACV,aAAa,EAAE,CAAC;EAChB,MAAM,EAAE,2BAA2B;EACnC,OAAO,EAAE,gBAAgB;EACzB,UAAU,EAAE,eAAe;CAU9B;;AATG,MAAM,CAAC,MAAM,MAAM,SAAS,EAAE,KAAK;EAtSnE,AAiS4B,aAjSf,CA6DT,QAAQ,CAKJ,MAAM,CAiFF,MAAM,CAwHF,YAAY,CAaR,IAAI,CAIA,WAAW,CAKP,aAAa,CAAC;IAMN,MAAM,EAAE,2BAA2B;GAQ1C;;;AA/S7B,AAySgC,aAzSnB,CA6DT,QAAQ,CAKJ,MAAM,CAiFF,MAAM,CAwHF,YAAY,CAaR,IAAI,CAIA,WAAW,CAKP,aAAa,AAQR,MAAM,CAAC;EACJ,KAAK,EAAE,OAAO;EACd,gBAAgB,EAAE,IAAI;EACtB,YAAY,E5B7RjC,OAAO;E4B8Rc,OAAO,EAAE,CAAC;CACb;;AA9SjC,AAiTwB,aAjTX,CA6DT,QAAQ,CAKJ,MAAM,CAiFF,MAAM,CAwHF,YAAY,CAaR,IAAI,CAyBA,QAAQ,CAAC;EAEL,OAAO,EAAE,SAAS;CACrB;;AApTzB,AAqTwB,aArTX,CA6DT,QAAQ,CAKJ,MAAM,CAiFF,MAAM,CAwHF,YAAY,CAaR,IAAI,CA6BA,IAAI,CAAC;EACD,MAAM,EAAE,SAAS;EACjB,YAAY,EAAE,WAAW;EACzB,gBAAgB,E5B5RtB,IAAI,C4B4RyC,UAAU;EACjD,kBAAkB,E5B7RxB,IAAI,C4B6R2C,UAAU;EACnD,mBAAmB,E5B9RzB,IAAI,C4B8R4C,UAAU;EACpD,iBAAiB,E5B/RvB,IAAI,C4B+R0C,UAAU;CAOrD;;AAlUzB,AA4T4B,aA5Tf,CA6DT,QAAQ,CAKJ,MAAM,CAiFF,MAAM,CAwHF,YAAY,CAaR,IAAI,CA6BA,IAAI,AAOC,MAAM,CAAC;EACJ,KAAK,EAAE,OAAO;EACd,gBAAgB,EAAE,IAAI;EACtB,YAAY,EAAE,kBAAkB;EAChC,OAAO,EAAE,CAAC;CACb", + "sources": [ + "../scss/style.scss", + "../scss/_variables.scss", + "../scss/_normalize.scss", + "../scss/_common.scss", + "../scss/_elements.scss", + "../scss/components/_components.scss", + "../scss/components/_buttons.scss", + "../scss/components/_model.scss", + "../scss/components/_preloader.scss", + "../scss/layouts/_layouts.scss", + "../scss/layouts/_navigation.scss", + "../scss/layouts/_header.scss", + "../scss/layouts/_banner.scss", + "../scss/layouts/_footer.scss", + "../scss/layouts/_sidebar.scss", + "../scss/pages/_pages.scss", + "../scss/pages/home/_home.scss", + "../scss/pages/home/_demo-product.scss", + "../scss/pages/home/_tab-product.scss", + "../scss/pages/home/_deal.scss", + "../scss/pages/home/_insta.scss", + "../scss/pages/home/_blog-index.scss", + "../scss/pages/_shop.scss", + "../scss/pages/_blog.scss", + "../scss/pages/_contact.scss", + "../scss/pages/_about.scss", + "../scss/pages/_shop-details.scss", + "../scss/pages/_cart.scss", + "../scss/pages/_checkout.scss", + "../scss/pages/_blog-details.scss" + ], + "names": [], + "file": "style.css" +} \ No newline at end of file diff --git a/theme_boec/static/src/css/style.scss b/theme_boec/static/src/css/style.scss new file mode 100644 index 000000000..e3bac5894 --- /dev/null +++ b/theme_boec/static/src/css/style.scss @@ -0,0 +1,122 @@ +body { + background-color: #f1f1f1; + padding-top: 20px; +} +.young-passion-gradient { + background: linear-gradient(40deg, #b12a5b, #ff8177); +} + +.title h1 { + text-align: left; + color: #353535; + font-size: 35px; +} + +.hero { + color: white; + padding: 39px 5px; + + a button{ + font-size: 17px; + color: #fff; + padding: 7px; + border-radius: 9px; + border: 2px solid #fff; + background-color: #ffffff00; + font-weight: 700; + margin: 30px 0; + } + + + #counters_hero { + display: flex; + justify-content: space-between; + vertical-align: middle; + height: 100%; + .cont { + margin: auto; + .label { + text-align: center; + height: 49px; + line-height: 1.4; + font-size: 14px; + } + } + } +} + +.circle { + width: 99px; + height: 99px; + background: #cfcfcfb9; + border-radius: 78px; + margin: auto; + .counter { + font-size: 20px; + text-align: center; + color: white; + line-height: 4.6; + width: auto; + } +} + +.description { + background-color: #e0e0e0; + padding: 15px; + color: #3c3c3c; + p { + font-weight: 700; + } +} + +#counters_1, +#counters_2, +#counters_3 { + display: flex; + justify-content: space-around; + padding: 33px; + .counter { + font-size: 33px; + font-weight: 600; + color: #000; + width: auto; + } + p { + margin-bottom: 0; + width: 20px; + float: left; + color: #04884c; + font-size: 29px; + line-height: 1.6; + } + .text { + width: 100px; + text-align: center; + text-transform: uppercase; + font-size: 12px; + color: #616161; + } + .cont .row { + justify-content: center; + } + @media (max-width: 480px) { + .counter { + font-size: 25px; + } + p { + font-size: 24px; + line-height: 1.5; + } + .text{ + font-size: 10px; + } + } +} + +.distance{ + margin: 88px 0 160px 0; + text-align: center; + font-size: 41px; + color: #04884c; + font-weight: 400; +} diff --git a/theme_boec/static/src/images/about/about.jpg b/theme_boec/static/src/images/about/about.jpg new file mode 100644 index 000000000..1efb9b29b Binary files /dev/null and b/theme_boec/static/src/images/about/about.jpg differ diff --git a/theme_boec/static/src/images/about/client/1.png b/theme_boec/static/src/images/about/client/1.png new file mode 100644 index 000000000..818c61b51 Binary files /dev/null and b/theme_boec/static/src/images/about/client/1.png differ diff --git a/theme_boec/static/src/images/about/client/2.png b/theme_boec/static/src/images/about/client/2.png new file mode 100644 index 000000000..343c3ef00 Binary files /dev/null and b/theme_boec/static/src/images/about/client/2.png differ diff --git a/theme_boec/static/src/images/about/client/3.png b/theme_boec/static/src/images/about/client/3.png new file mode 100644 index 000000000..f64124ef4 Binary files /dev/null and b/theme_boec/static/src/images/about/client/3.png differ diff --git a/theme_boec/static/src/images/about/client/4.png b/theme_boec/static/src/images/about/client/4.png new file mode 100644 index 000000000..05cb0b060 Binary files /dev/null and b/theme_boec/static/src/images/about/client/4.png differ diff --git a/theme_boec/static/src/images/about/client/5.png b/theme_boec/static/src/images/about/client/5.png new file mode 100644 index 000000000..3bf821f04 Binary files /dev/null and b/theme_boec/static/src/images/about/client/5.png differ diff --git a/theme_boec/static/src/images/about/client/6.png b/theme_boec/static/src/images/about/client/6.png new file mode 100644 index 000000000..2b23fdfb6 Binary files /dev/null and b/theme_boec/static/src/images/about/client/6.png differ diff --git a/theme_boec/static/src/images/about/client/7.png b/theme_boec/static/src/images/about/client/7.png new file mode 100644 index 000000000..d8970833f Binary files /dev/null and b/theme_boec/static/src/images/about/client/7.png differ diff --git a/theme_boec/static/src/images/about/client/8.png b/theme_boec/static/src/images/about/client/8.png new file mode 100644 index 000000000..c47c680de Binary files /dev/null and b/theme_boec/static/src/images/about/client/8.png differ diff --git a/theme_boec/static/src/images/about/p-img.jpg b/theme_boec/static/src/images/about/p-img.jpg new file mode 100644 index 000000000..2222ebeb0 Binary files /dev/null and b/theme_boec/static/src/images/about/p-img.jpg differ diff --git a/theme_boec/static/src/images/about/team/t-1 (1).jpg b/theme_boec/static/src/images/about/team/t-1 (1).jpg new file mode 100644 index 000000000..be29f2c2b Binary files /dev/null and b/theme_boec/static/src/images/about/team/t-1 (1).jpg differ diff --git a/theme_boec/static/src/images/about/team/t-1 (2).jpg b/theme_boec/static/src/images/about/team/t-1 (2).jpg new file mode 100644 index 000000000..948811c04 Binary files /dev/null and b/theme_boec/static/src/images/about/team/t-1 (2).jpg differ diff --git a/theme_boec/static/src/images/about/team/t-1 (3).jpg b/theme_boec/static/src/images/about/team/t-1 (3).jpg new file mode 100644 index 000000000..7aa25eb92 Binary files /dev/null and b/theme_boec/static/src/images/about/team/t-1 (3).jpg differ diff --git a/theme_boec/static/src/images/about/team/t-1 (4).jpg b/theme_boec/static/src/images/about/team/t-1 (4).jpg new file mode 100644 index 000000000..929a22fb7 Binary files /dev/null and b/theme_boec/static/src/images/about/team/t-1 (4).jpg differ diff --git a/theme_boec/static/src/images/about/test-bg.jpg b/theme_boec/static/src/images/about/test-bg.jpg new file mode 100644 index 000000000..4e78063cb Binary files /dev/null and b/theme_boec/static/src/images/about/test-bg.jpg differ diff --git a/theme_boec/static/src/images/banner/banner1.jpg b/theme_boec/static/src/images/banner/banner1.jpg new file mode 100644 index 000000000..3ea81b1c3 Binary files /dev/null and b/theme_boec/static/src/images/banner/banner1.jpg differ diff --git a/theme_boec/static/src/images/banner/banner2.jpg b/theme_boec/static/src/images/banner/banner2.jpg new file mode 100644 index 000000000..1a9ebde31 Binary files /dev/null and b/theme_boec/static/src/images/banner/banner2.jpg differ diff --git a/theme_boec/static/src/images/banner/banner3.jpg b/theme_boec/static/src/images/banner/banner3.jpg new file mode 100644 index 000000000..d2eb7d5a6 Binary files /dev/null and b/theme_boec/static/src/images/banner/banner3.jpg differ diff --git a/theme_boec/static/src/images/banner/blog-bg.jpg b/theme_boec/static/src/images/banner/blog-bg.jpg new file mode 100644 index 000000000..5b611eb14 Binary files /dev/null and b/theme_boec/static/src/images/banner/blog-bg.jpg differ diff --git a/theme_boec/static/src/images/blog/1.jpg b/theme_boec/static/src/images/blog/1.jpg new file mode 100644 index 000000000..b0b3fcd5e Binary files /dev/null and b/theme_boec/static/src/images/blog/1.jpg differ diff --git a/theme_boec/static/src/images/blog/2.jpg b/theme_boec/static/src/images/blog/2.jpg new file mode 100644 index 000000000..ef9396b0c Binary files /dev/null and b/theme_boec/static/src/images/blog/2.jpg differ diff --git a/theme_boec/static/src/images/blog/3.jpg b/theme_boec/static/src/images/blog/3.jpg new file mode 100644 index 000000000..e097f5056 Binary files /dev/null and b/theme_boec/static/src/images/blog/3.jpg differ diff --git a/theme_boec/static/src/images/blog/4.jpg b/theme_boec/static/src/images/blog/4.jpg new file mode 100644 index 000000000..b534031ff Binary files /dev/null and b/theme_boec/static/src/images/blog/4.jpg differ diff --git a/theme_boec/static/src/images/blog/5.jpg b/theme_boec/static/src/images/blog/5.jpg new file mode 100644 index 000000000..eb03da668 Binary files /dev/null and b/theme_boec/static/src/images/blog/5.jpg differ diff --git a/theme_boec/static/src/images/blog/6.jpg b/theme_boec/static/src/images/blog/6.jpg new file mode 100644 index 000000000..41e35c0b7 Binary files /dev/null and b/theme_boec/static/src/images/blog/6.jpg differ diff --git a/theme_boec/static/src/images/blog/7.jpg b/theme_boec/static/src/images/blog/7.jpg new file mode 100644 index 000000000..14d4288ef Binary files /dev/null and b/theme_boec/static/src/images/blog/7.jpg differ diff --git a/theme_boec/static/src/images/blog/8.jpg b/theme_boec/static/src/images/blog/8.jpg new file mode 100644 index 000000000..e51685790 Binary files /dev/null and b/theme_boec/static/src/images/blog/8.jpg differ diff --git a/theme_boec/static/src/images/blog/9.jpg b/theme_boec/static/src/images/blog/9.jpg new file mode 100644 index 000000000..e7e613d1d Binary files /dev/null and b/theme_boec/static/src/images/blog/9.jpg differ diff --git a/theme_boec/static/src/images/blog/blog-detail.jpg b/theme_boec/static/src/images/blog/blog-detail.jpg new file mode 100644 index 000000000..64fd36250 Binary files /dev/null and b/theme_boec/static/src/images/blog/blog-detail.jpg differ diff --git a/theme_boec/static/src/images/carty/j-kelly-brito-dDLiE0fxEXk-unsplash.jpg b/theme_boec/static/src/images/carty/j-kelly-brito-dDLiE0fxEXk-unsplash.jpg new file mode 100644 index 000000000..7b71b2328 Binary files /dev/null and b/theme_boec/static/src/images/carty/j-kelly-brito-dDLiE0fxEXk-unsplash.jpg differ diff --git a/theme_boec/static/src/images/carty/kris-gerhard-0BKZfcamvGg-unsplash.jpg b/theme_boec/static/src/images/carty/kris-gerhard-0BKZfcamvGg-unsplash.jpg new file mode 100644 index 000000000..14762d84d Binary files /dev/null and b/theme_boec/static/src/images/carty/kris-gerhard-0BKZfcamvGg-unsplash.jpg differ diff --git a/theme_boec/static/src/images/carty/w.png b/theme_boec/static/src/images/carty/w.png new file mode 100644 index 000000000..bc1ba539e Binary files /dev/null and b/theme_boec/static/src/images/carty/w.png differ diff --git a/theme_boec/static/src/images/deal/deal.jpg b/theme_boec/static/src/images/deal/deal.jpg new file mode 100644 index 000000000..18e418ac7 Binary files /dev/null and b/theme_boec/static/src/images/deal/deal.jpg differ diff --git a/theme_boec/static/src/images/deal/deal.png b/theme_boec/static/src/images/deal/deal.png new file mode 100644 index 000000000..b4b6c5e11 Binary files /dev/null and b/theme_boec/static/src/images/deal/deal.png differ diff --git a/theme_boec/static/src/images/demo-product/dp1.jpg b/theme_boec/static/src/images/demo-product/dp1.jpg new file mode 100644 index 000000000..82ab86e0b Binary files /dev/null and b/theme_boec/static/src/images/demo-product/dp1.jpg differ diff --git a/theme_boec/static/src/images/demo-product/dp111.jpg b/theme_boec/static/src/images/demo-product/dp111.jpg new file mode 100644 index 000000000..7430fe6bb Binary files /dev/null and b/theme_boec/static/src/images/demo-product/dp111.jpg differ diff --git a/theme_boec/static/src/images/demo-product/dp2.jpg b/theme_boec/static/src/images/demo-product/dp2.jpg new file mode 100644 index 000000000..ffb21a12f Binary files /dev/null and b/theme_boec/static/src/images/demo-product/dp2.jpg differ diff --git a/theme_boec/static/src/images/demo-product/dp3.jpg b/theme_boec/static/src/images/demo-product/dp3.jpg new file mode 100644 index 000000000..abceacc22 Binary files /dev/null and b/theme_boec/static/src/images/demo-product/dp3.jpg differ diff --git a/theme_boec/static/src/images/demo-product/light-up-sneakers-women.jpg b/theme_boec/static/src/images/demo-product/light-up-sneakers-women.jpg new file mode 100644 index 000000000..66c44463c Binary files /dev/null and b/theme_boec/static/src/images/demo-product/light-up-sneakers-women.jpg differ diff --git a/theme_boec/static/src/images/icons/master.png b/theme_boec/static/src/images/icons/master.png new file mode 100644 index 000000000..63caf2d51 Binary files /dev/null and b/theme_boec/static/src/images/icons/master.png differ diff --git a/theme_boec/static/src/images/icons/menu.png b/theme_boec/static/src/images/icons/menu.png new file mode 100644 index 000000000..a9c4294b5 Binary files /dev/null and b/theme_boec/static/src/images/icons/menu.png differ diff --git a/theme_boec/static/src/images/icons/payment.png b/theme_boec/static/src/images/icons/payment.png new file mode 100644 index 000000000..c387d656a Binary files /dev/null and b/theme_boec/static/src/images/icons/payment.png differ diff --git a/theme_boec/static/src/images/icons/rate-star-button.svg b/theme_boec/static/src/images/icons/rate-star-button.svg new file mode 100644 index 000000000..706cfddbf --- /dev/null +++ b/theme_boec/static/src/images/icons/rate-star-button.svg @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/theme_boec/static/src/images/icons/visa.png b/theme_boec/static/src/images/icons/visa.png new file mode 100644 index 000000000..8b7c8ef82 Binary files /dev/null and b/theme_boec/static/src/images/icons/visa.png differ diff --git a/theme_boec/static/src/images/insta/1 (1).jpg b/theme_boec/static/src/images/insta/1 (1).jpg new file mode 100644 index 000000000..18792a640 Binary files /dev/null and b/theme_boec/static/src/images/insta/1 (1).jpg differ diff --git a/theme_boec/static/src/images/insta/1 (2).jpg b/theme_boec/static/src/images/insta/1 (2).jpg new file mode 100644 index 000000000..68d5aa30b Binary files /dev/null and b/theme_boec/static/src/images/insta/1 (2).jpg differ diff --git a/theme_boec/static/src/images/insta/1 (3).jpg b/theme_boec/static/src/images/insta/1 (3).jpg new file mode 100644 index 000000000..5a5cf9bbc Binary files /dev/null and b/theme_boec/static/src/images/insta/1 (3).jpg differ diff --git a/theme_boec/static/src/images/insta/1 (4).jpg b/theme_boec/static/src/images/insta/1 (4).jpg new file mode 100644 index 000000000..d9a5f41b7 Binary files /dev/null and b/theme_boec/static/src/images/insta/1 (4).jpg differ diff --git a/theme_boec/static/src/images/insta/1 (5).jpg b/theme_boec/static/src/images/insta/1 (5).jpg new file mode 100644 index 000000000..91e78dc2f Binary files /dev/null and b/theme_boec/static/src/images/insta/1 (5).jpg differ diff --git a/theme_boec/static/src/images/insta/1 (6).jpg b/theme_boec/static/src/images/insta/1 (6).jpg new file mode 100644 index 000000000..35028bec9 Binary files /dev/null and b/theme_boec/static/src/images/insta/1 (6).jpg differ diff --git a/theme_boec/static/src/images/insta/2 (1).jpg b/theme_boec/static/src/images/insta/2 (1).jpg new file mode 100644 index 000000000..9b6a6781d Binary files /dev/null and b/theme_boec/static/src/images/insta/2 (1).jpg differ diff --git a/theme_boec/static/src/images/insta/2 (2).jpg b/theme_boec/static/src/images/insta/2 (2).jpg new file mode 100644 index 000000000..cf7ce30d9 Binary files /dev/null and b/theme_boec/static/src/images/insta/2 (2).jpg differ diff --git a/theme_boec/static/src/images/insta/2 (3).jpg b/theme_boec/static/src/images/insta/2 (3).jpg new file mode 100644 index 000000000..94c0a2a3e Binary files /dev/null and b/theme_boec/static/src/images/insta/2 (3).jpg differ diff --git a/theme_boec/static/src/images/logo/logo.png b/theme_boec/static/src/images/logo/logo.png new file mode 100644 index 000000000..4f4c104bc Binary files /dev/null and b/theme_boec/static/src/images/logo/logo.png differ diff --git a/theme_boec/static/src/images/product-preview/1 (1).jpg b/theme_boec/static/src/images/product-preview/1 (1).jpg new file mode 100644 index 000000000..982544ea4 Binary files /dev/null and b/theme_boec/static/src/images/product-preview/1 (1).jpg differ diff --git a/theme_boec/static/src/images/product-preview/1 (2).jpg b/theme_boec/static/src/images/product-preview/1 (2).jpg new file mode 100644 index 000000000..d5dda03d5 Binary files /dev/null and b/theme_boec/static/src/images/product-preview/1 (2).jpg differ diff --git a/theme_boec/static/src/images/product-preview/1 (3).jpg b/theme_boec/static/src/images/product-preview/1 (3).jpg new file mode 100644 index 000000000..d21036e48 Binary files /dev/null and b/theme_boec/static/src/images/product-preview/1 (3).jpg differ diff --git a/theme_boec/static/src/images/product-preview/1 (4).jpg b/theme_boec/static/src/images/product-preview/1 (4).jpg new file mode 100644 index 000000000..f94317e40 Binary files /dev/null and b/theme_boec/static/src/images/product-preview/1 (4).jpg differ diff --git a/theme_boec/static/src/images/product-preview/1 (5).jpg b/theme_boec/static/src/images/product-preview/1 (5).jpg new file mode 100644 index 000000000..d8b346d87 Binary files /dev/null and b/theme_boec/static/src/images/product-preview/1 (5).jpg differ diff --git a/theme_boec/static/src/images/product-preview/b1 (1).jpg b/theme_boec/static/src/images/product-preview/b1 (1).jpg new file mode 100644 index 000000000..74a2037f4 Binary files /dev/null and b/theme_boec/static/src/images/product-preview/b1 (1).jpg differ diff --git a/theme_boec/static/src/images/product-preview/b1 (2).jpg b/theme_boec/static/src/images/product-preview/b1 (2).jpg new file mode 100644 index 000000000..e2152d9fa Binary files /dev/null and b/theme_boec/static/src/images/product-preview/b1 (2).jpg differ diff --git a/theme_boec/static/src/images/product-preview/b1 (3).jpg b/theme_boec/static/src/images/product-preview/b1 (3).jpg new file mode 100644 index 000000000..ab8dd5bdd Binary files /dev/null and b/theme_boec/static/src/images/product-preview/b1 (3).jpg differ diff --git a/theme_boec/static/src/images/product-preview/b1 (4).jpg b/theme_boec/static/src/images/product-preview/b1 (4).jpg new file mode 100644 index 000000000..0847e978d Binary files /dev/null and b/theme_boec/static/src/images/product-preview/b1 (4).jpg differ diff --git a/theme_boec/static/src/images/snippets/banner.jpg b/theme_boec/static/src/images/snippets/banner.jpg new file mode 100644 index 000000000..3b9f917b2 Binary files /dev/null and b/theme_boec/static/src/images/snippets/banner.jpg differ diff --git a/theme_boec/static/src/images/snippets/deal.jpg b/theme_boec/static/src/images/snippets/deal.jpg new file mode 100644 index 000000000..64ab09b1f Binary files /dev/null and b/theme_boec/static/src/images/snippets/deal.jpg differ diff --git a/theme_boec/static/src/images/snippets/demo_product.jpg b/theme_boec/static/src/images/snippets/demo_product.jpg new file mode 100644 index 000000000..8460a7604 Binary files /dev/null and b/theme_boec/static/src/images/snippets/demo_product.jpg differ diff --git a/theme_boec/static/src/images/snippets/insta.jpg b/theme_boec/static/src/images/snippets/insta.jpg new file mode 100644 index 000000000..71318d80d Binary files /dev/null and b/theme_boec/static/src/images/snippets/insta.jpg differ diff --git a/theme_boec/static/src/images/snippets/latest_blog.jpg b/theme_boec/static/src/images/snippets/latest_blog.jpg new file mode 100644 index 000000000..c61fe84db Binary files /dev/null and b/theme_boec/static/src/images/snippets/latest_blog.jpg differ diff --git a/theme_boec/static/src/images/snippets/product_tab.jpg b/theme_boec/static/src/images/snippets/product_tab.jpg new file mode 100644 index 000000000..db629f6f1 Binary files /dev/null and b/theme_boec/static/src/images/snippets/product_tab.jpg differ diff --git a/theme_boec/static/src/images/tab-product/t-product (1).jpg b/theme_boec/static/src/images/tab-product/t-product (1).jpg new file mode 100644 index 000000000..108f692d7 Binary files /dev/null and b/theme_boec/static/src/images/tab-product/t-product (1).jpg differ diff --git a/theme_boec/static/src/images/tab-product/t-product (10).jpg b/theme_boec/static/src/images/tab-product/t-product (10).jpg new file mode 100644 index 000000000..f87f8c53a Binary files /dev/null and b/theme_boec/static/src/images/tab-product/t-product (10).jpg differ diff --git a/theme_boec/static/src/images/tab-product/t-product (11).jpg b/theme_boec/static/src/images/tab-product/t-product (11).jpg new file mode 100644 index 000000000..56db5bad0 Binary files /dev/null and b/theme_boec/static/src/images/tab-product/t-product (11).jpg differ diff --git a/theme_boec/static/src/images/tab-product/t-product (2).jpg b/theme_boec/static/src/images/tab-product/t-product (2).jpg new file mode 100644 index 000000000..6c2fbc086 Binary files /dev/null and b/theme_boec/static/src/images/tab-product/t-product (2).jpg differ diff --git a/theme_boec/static/src/images/tab-product/t-product (3).jpg b/theme_boec/static/src/images/tab-product/t-product (3).jpg new file mode 100644 index 000000000..45c0353ed Binary files /dev/null and b/theme_boec/static/src/images/tab-product/t-product (3).jpg differ diff --git a/theme_boec/static/src/images/tab-product/t-product (4).jpg b/theme_boec/static/src/images/tab-product/t-product (4).jpg new file mode 100644 index 000000000..4b79b50a9 Binary files /dev/null and b/theme_boec/static/src/images/tab-product/t-product (4).jpg differ diff --git a/theme_boec/static/src/images/tab-product/t-product (5).jpg b/theme_boec/static/src/images/tab-product/t-product (5).jpg new file mode 100644 index 000000000..18c6ce84f Binary files /dev/null and b/theme_boec/static/src/images/tab-product/t-product (5).jpg differ diff --git a/theme_boec/static/src/images/tab-product/t-product (6).jpg b/theme_boec/static/src/images/tab-product/t-product (6).jpg new file mode 100644 index 000000000..db4e662ac Binary files /dev/null and b/theme_boec/static/src/images/tab-product/t-product (6).jpg differ diff --git a/theme_boec/static/src/images/tab-product/t-product (7).jpg b/theme_boec/static/src/images/tab-product/t-product (7).jpg new file mode 100644 index 000000000..ea02e8e0f Binary files /dev/null and b/theme_boec/static/src/images/tab-product/t-product (7).jpg differ diff --git a/theme_boec/static/src/images/tab-product/t-product (8).jpg b/theme_boec/static/src/images/tab-product/t-product (8).jpg new file mode 100644 index 000000000..a0ecfbfea Binary files /dev/null and b/theme_boec/static/src/images/tab-product/t-product (8).jpg differ diff --git a/theme_boec/static/src/images/tab-product/t-product (9).jpg b/theme_boec/static/src/images/tab-product/t-product (9).jpg new file mode 100644 index 000000000..ee61db1c9 Binary files /dev/null and b/theme_boec/static/src/images/tab-product/t-product (9).jpg differ diff --git a/theme_boec/static/src/js/custom.js b/theme_boec/static/src/js/custom.js new file mode 100644 index 000000000..16e4818d7 --- /dev/null +++ b/theme_boec/static/src/js/custom.js @@ -0,0 +1,136 @@ +odoo.define('theme_boec.theme_boec', function (require) { + "use strict"; + + $(document).ready(function () { + + //Preloader// + setTimeout(function () { + $('body').addClass('loaded'); + }, 1000); + + //Banner Slider// + $(".owl-carousel").owlCarousel({ + items: 1, + loop: true, + margin: 0, + stagePadding: 0, + smartSpeed: 450, + autoplay: false, + autoPlaySpeed: 1000, + autoPlayTimeout: 1000, + autoplayHoverPause: true, + onInitialized: counter, + dots: true, + nav: true, + navText: ['
keyboard_arrow_left
', '
keyboard_arrow_right
'], + animateOut: 'fadeOut' + }); + + function counter() { + var buttons = $('.owl-dots button'); + buttons.each(function (index, item) { + $(item).find('span').text(index + 1); + }); + } + + //add another class for banner_added + var banner = $(".banner_added"); + var banner_id = banner.data("id"); + $("div").addClass(banner_id); + banner.addClass("banner_hide"); + + //tab Heading Boarder// + $(".nav-link").click(function () { + var value = $(this).attr('data-filter'); + if (value == "all") { + $('.filter').show('1000'); + }else { + $(".filter").not('.' + value).hide('3000'); + $('.filter').filter('.' + value).show('3000'); + } + }); + if ($(".nav-link").removeClass("active")) { + $(this).removeClass("active"); + } + $(this).addClass("active"); + }); + + var url = window.location; + // Will only work if string in href matches with location + $('ul.navbar-nav a[href="'+ url +'"]').parent().addClass('active'); + + // Will also work for relative and absolute hrefs + $('ul.navbar-nav a').filter(function() { + return this.href == url; + }).parent().addClass('active'); + + // Add active class to the current button in Navbar (highlight it) + var header = document.getElementById("myDIV"); + var btns = header.getElementsByClassName("nav-link"); + for (var i = 0; i < btns.length; i++) { + btns[i].addEventListener("click", function () { + var current = document.getElementsByClassName("active"); + current[0].className = current[0].className.replace(" active", ""); + this.className += " active"; + }); + } + + //Add active class to the current button (highlight it) + var header = document.getElementById("myDIV"); + var btns = header.getElementsByClassName("btn"); + for (var i = 0; i < btns.length; i++) { + btns[i].addEventListener("click", function () { + var current = document.getElementsByClassName("active"); + if (current.length > 0) { + current[0].className = current[0].className.replace(" active", ""); + } + this.className += " active"; + }); + } + + //spinner jquery--quantity + jQuery('
+
-
').insertAfter('.quantity input'); + jQuery('.quantity').each(function () { + var spinner = jQuery(this), + input = spinner.find('input[type="number"]'), + btnUp = spinner.find('.quantity-up'), + btnDown = spinner.find('.quantity-down'), + min = input.attr('min'), + max = input.attr('max'); + btnUp.click(function () { + var oldValue = parseFloat(input.val()); + if (oldValue >= max) { + var newVal = oldValue; + } else { + var newVal = oldValue + 1; + } + spinner.find("input").val(newVal); + spinner.find("input").trigger("change"); + }); + btnDown.click(function () { + var oldValue = parseFloat(input.val()); + if (oldValue <= min) { + var newVal = oldValue; + } else { + var newVal = oldValue - 1; + } + spinner.find("input").val(newVal); + spinner.find("input").trigger("change"); + }); + }); + + //shop jquery--card head + $('.card-header').click(function () { + $(this).find('i').toggleClass('fas fa-angle-down fas fa-angle-up'); + }); + + //Tab + $("#tile-1 .nav-tabs a").click(function () { + var position = $(this).parent().position(); + var width = $(this).parent().width(); +// $("#tile-1 .slider").css({ "left": + position.left, "width": width }); + }); + var actWidth = $("#tile-1 .nav-tabs").find(".active").parent("li").width(); + var actPosition = $("#tile-1 .nav-tabs .active").position(); +// $("#tile-1 .slider").css({ "left": + actPosition.left, "width": actWidth }); +}); \ No newline at end of file diff --git a/theme_boec/static/src/js/deal_week.js b/theme_boec/static/src/js/deal_week.js new file mode 100644 index 000000000..82b0b7d23 --- /dev/null +++ b/theme_boec/static/src/js/deal_week.js @@ -0,0 +1,41 @@ +odoo.define('theme_boec.deal_week',function(require){ + 'use strict'; + + var Animation = require('website.content.snippets.animation'); + var ajax = require('web.ajax'); + + Animation.registry.best_deal = Animation.Class.extend({ + selector : '.deal_week_snippet_class', + start: function () { + var self = this; + ajax.jsonRpc('/get_product', 'call', {}) + .then(function (data) { + if(data){ + self.$target.empty().append(data); + } + }); + ajax.jsonRpc('/get_countdown', 'call', {}) + .then(function(data){ + if(data){ + var end_date = new Date(data).getTime(); + var days, hours, minutes, seconds; + setInterval(function () { + var current_date = new Date().getTime(); + var seconds_left = (end_date - current_date) / 1000; + var countdown_div = $("#countdown")[0]; + days = parseInt(seconds_left / 86400); + seconds_left = seconds_left % 86400; + hours = parseInt(seconds_left / 3600); + seconds_left = seconds_left % 3600; + minutes = parseInt(seconds_left / 60); + seconds = parseInt(seconds_left % 60); + if(countdown_div){ + countdown.innerHTML = '' + days + ' ' + hours + ' ' + + minutes + ' ' + seconds + ' '; + } + }, 1000); + } + }) + }, + }); +}); diff --git a/theme_boec/static/src/js/jquery.countdown.min.js b/theme_boec/static/src/js/jquery.countdown.min.js new file mode 100644 index 000000000..99b363168 --- /dev/null +++ b/theme_boec/static/src/js/jquery.countdown.min.js @@ -0,0 +1,22 @@ +/*! + * The Final Countdown for jQuery v2.2.0 (http://hilios.github.io/jQuery.countdown/) + * Copyright (c) 2016 Edson Hilios + * + * Permission is hereby granted, free of charge, to any person obtaining a copy of + * this software and associated documentation files (the "Software"), to deal in + * the Software without restriction, including without limitation the rights to + * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of + * the Software, and to permit persons to whom the Software is furnished to do so, + * subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in all + * copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS + * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR + * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER + * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN + * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + */ +!function(a){"use strict";"function"==typeof define&&define.amd?define(["jquery"],a):a(jQuery)}(function(a){"use strict";function b(a){if(a instanceof Date)return a;if(String(a).match(g))return String(a).match(/^[0-9]*$/)&&(a=Number(a)),String(a).match(/\-/)&&(a=String(a).replace(/\-/g,"/")),new Date(a);throw new Error("Couldn't cast `"+a+"` to a date object.")}function c(a){var b=a.toString().replace(/([.?*+^$[\]\\(){}|-])/g,"\\$1");return new RegExp(b)}function d(a){return function(b){var d=b.match(/%(-|!)?[A-Z]{1}(:[^;]+;)?/gi);if(d)for(var f=0,g=d.length;f1?c:d}var f=[],g=[],h={precision:100,elapse:!1,defer:!1};g.push(/^[0-9]*$/.source),g.push(/([0-9]{1,2}\/){2}[0-9]{4}( [0-9]{1,2}(:[0-9]{2}){2})?/.source),g.push(/[0-9]{4}([\/\-][0-9]{1,2}){2}( [0-9]{1,2}(:[0-9]{2}){2})?/.source),g=new RegExp(g.join("|"));var i={Y:"years",m:"months",n:"daysToMonth",d:"daysToWeek",w:"weeks",W:"weeksToMonth",H:"hours",M:"minutes",S:"seconds",D:"totalDays",I:"totalHours",N:"totalMinutes",T:"totalSeconds"},j=function(b,c,d){this.el=b,this.$el=a(b),this.interval=null,this.offset={},this.options=a.extend({},h),this.firstTick=!0,this.instanceNumber=f.length,f.push(this),this.$el.data("countdown-instance",this.instanceNumber),d&&("function"==typeof d?(this.$el.on("update.countdown",d),this.$el.on("stoped.countdown",d),this.$el.on("finish.countdown",d)):this.options=a.extend({},h,d)),this.setFinalDate(c),this.options.defer===!1&&this.start()};a.extend(j.prototype,{start:function(){null!==this.interval&&clearInterval(this.interval);var a=this;this.update(),this.interval=setInterval(function(){a.update.call(a)},this.options.precision)},stop:function(){clearInterval(this.interval),this.interval=null,this.dispatchEvent("stoped")},toggle:function(){this.interval?this.stop():this.start()},pause:function(){this.stop()},resume:function(){this.start()},remove:function(){this.stop.call(this),f[this.instanceNumber]=null,delete this.$el.data().countdownInstance},setFinalDate:function(a){this.finalDate=b(a)},update:function(){if(0===this.$el.closest("html").length)return void this.remove();var a,b=new Date;return a=this.finalDate.getTime()-b.getTime(),a=Math.ceil(a/1e3),a=!this.options.elapse&&a<0?0:Math.abs(a),this.totalSecsLeft===a||this.firstTick?void(this.firstTick=!1):(this.totalSecsLeft=a,this.elapsed=b>=this.finalDate,this.offset={seconds:this.totalSecsLeft%60,minutes:Math.floor(this.totalSecsLeft/60)%60,hours:Math.floor(this.totalSecsLeft/60/60)%24,days:Math.floor(this.totalSecsLeft/60/60/24)%7,daysToWeek:Math.floor(this.totalSecsLeft/60/60/24)%7,daysToMonth:Math.floor(this.totalSecsLeft/60/60/24%30.4368),weeks:Math.floor(this.totalSecsLeft/60/60/24/7),weeksToMonth:Math.floor(this.totalSecsLeft/60/60/24/7)%4,months:Math.floor(this.totalSecsLeft/60/60/24/30.4368),years:Math.abs(this.finalDate.getFullYear()-b.getFullYear()),totalDays:Math.floor(this.totalSecsLeft/60/60/24),totalHours:Math.floor(this.totalSecsLeft/60/60),totalMinutes:Math.floor(this.totalSecsLeft/60),totalSeconds:this.totalSecsLeft},void(this.options.elapse||0!==this.totalSecsLeft?this.dispatchEvent("update"):(this.stop(),this.dispatchEvent("finish"))))},dispatchEvent:function(b){var c=a.Event(b+".countdown");c.finalDate=this.finalDate,c.elapsed=this.elapsed,c.offset=a.extend({},this.offset),c.strftime=d(this.offset),this.$el.trigger(c)}}),a.fn.countdown=function(){var b=Array.prototype.slice.call(arguments,0);return this.each(function(){var c=a(this).data("countdown-instance");if(void 0!==c){var d=f[c],e=b[0];j.prototype.hasOwnProperty(e)?d[e].apply(d,b.slice(1)):null===String(e).match(/^[$A-Z_][0-9A-Z_$]*$/i)?(d.setFinalDate.call(d,e),d.start()):a.error("Method %s does not exist on jQuery.countdown".replace(/\%s/gi,e))}else new j(this,b[0],b[1])})}}); \ No newline at end of file diff --git a/theme_boec/static/src/js/owl.carousel.js b/theme_boec/static/src/js/owl.carousel.js new file mode 100644 index 000000000..3869ce4d6 --- /dev/null +++ b/theme_boec/static/src/js/owl.carousel.js @@ -0,0 +1,3448 @@ +/** + * Owl Carousel v2.3.4 + * Copyright 2013-2018 David Deutsch + * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE + */ +/** + * Owl carousel + * @version 2.3.4 + * @author Bartosz Wojciechowski + * @author David Deutsch + * @license The MIT License (MIT) + * @todo Lazy Load Icon + * @todo prevent animationend bubling + * @todo itemsScaleUp + * @todo Test Zepto + * @todo stagePadding calculate wrong active classes + */ +;(function($, window, document, undefined) { + + /** + * Creates a carousel. + * @class The Owl Carousel. + * @public + * @param {HTMLElement|jQuery} element - The element to create the carousel for. + * @param {Object} [options] - The options + */ + function Owl(element, options) { + + /** + * Current settings for the carousel. + * @public + */ + this.settings = null; + + /** + * Current options set by the caller including defaults. + * @public + */ + this.options = $.extend({}, Owl.Defaults, options); + + /** + * Plugin element. + * @public + */ + this.$element = $(element); + + /** + * Proxied event handlers. + * @protected + */ + this._handlers = {}; + + /** + * References to the running plugins of this carousel. + * @protected + */ + this._plugins = {}; + + /** + * Currently suppressed events to prevent them from being retriggered. + * @protected + */ + this._supress = {}; + + /** + * Absolute current position. + * @protected + */ + this._current = null; + + /** + * Animation speed in milliseconds. + * @protected + */ + this._speed = null; + + /** + * Coordinates of all items in pixel. + * @todo The name of this member is missleading. + * @protected + */ + this._coordinates = []; + + /** + * Current breakpoint. + * @todo Real media queries would be nice. + * @protected + */ + this._breakpoint = null; + + /** + * Current width of the plugin element. + */ + this._width = null; + + /** + * All real items. + * @protected + */ + this._items = []; + + /** + * All cloned items. + * @protected + */ + this._clones = []; + + /** + * Merge values of all items. + * @todo Maybe this could be part of a plugin. + * @protected + */ + this._mergers = []; + + /** + * Widths of all items. + */ + this._widths = []; + + /** + * Invalidated parts within the update process. + * @protected + */ + this._invalidated = {}; + + /** + * Ordered list of workers for the update process. + * @protected + */ + this._pipe = []; + + /** + * Current state information for the drag operation. + * @todo #261 + * @protected + */ + this._drag = { + time: null, + target: null, + pointer: null, + stage: { + start: null, + current: null + }, + direction: null + }; + + /** + * Current state information and their tags. + * @type {Object} + * @protected + */ + this._states = { + current: {}, + tags: { + 'initializing': [ 'busy' ], + 'animating': [ 'busy' ], + 'dragging': [ 'interacting' ] + } + }; + + $.each([ 'onResize', 'onThrottledResize' ], $.proxy(function(i, handler) { + this._handlers[handler] = $.proxy(this[handler], this); + }, this)); + + $.each(Owl.Plugins, $.proxy(function(key, plugin) { + this._plugins[key.charAt(0).toLowerCase() + key.slice(1)] + = new plugin(this); + }, this)); + + $.each(Owl.Workers, $.proxy(function(priority, worker) { + this._pipe.push({ + 'filter': worker.filter, + 'run': $.proxy(worker.run, this) + }); + }, this)); + + this.setup(); + this.initialize(); + } + + /** + * Default options for the carousel. + * @public + */ + Owl.Defaults = { + items: 3, + loop: false, + center: false, + rewind: false, + checkVisibility: true, + + mouseDrag: true, + touchDrag: true, + pullDrag: true, + freeDrag: false, + + margin: 0, + stagePadding: 0, + + merge: false, + mergeFit: true, + autoWidth: false, + + startPosition: 0, + rtl: false, + + smartSpeed: 250, + fluidSpeed: false, + dragEndSpeed: false, + + responsive: {}, + responsiveRefreshRate: 200, + responsiveBaseElement: window, + + fallbackEasing: 'swing', + slideTransition: '', + + info: false, + + nestedItemSelector: false, + itemElement: 'div', + stageElement: 'div', + + refreshClass: 'owl-refresh', + loadedClass: 'owl-loaded', + loadingClass: 'owl-loading', + rtlClass: 'owl-rtl', + responsiveClass: 'owl-responsive', + dragClass: 'owl-drag', + itemClass: 'owl-item', + stageClass: 'owl-stage', + stageOuterClass: 'owl-stage-outer', + grabClass: 'owl-grab' + }; + + /** + * Enumeration for width. + * @public + * @readonly + * @enum {String} + */ + Owl.Width = { + Default: 'default', + Inner: 'inner', + Outer: 'outer' + }; + + /** + * Enumeration for types. + * @public + * @readonly + * @enum {String} + */ + Owl.Type = { + Event: 'event', + State: 'state' + }; + + /** + * Contains all registered plugins. + * @public + */ + Owl.Plugins = {}; + + /** + * List of workers involved in the update process. + */ + Owl.Workers = [ { + filter: [ 'width', 'settings' ], + run: function() { + this._width = this.$element.width(); + } + }, { + filter: [ 'width', 'items', 'settings' ], + run: function(cache) { + cache.current = this._items && this._items[this.relative(this._current)]; + } + }, { + filter: [ 'items', 'settings' ], + run: function() { + this.$stage.children('.cloned').remove(); + } + }, { + filter: [ 'width', 'items', 'settings' ], + run: function(cache) { + var margin = this.settings.margin || '', + grid = !this.settings.autoWidth, + rtl = this.settings.rtl, + css = { + 'width': 'auto', + 'margin-left': rtl ? margin : '', + 'margin-right': rtl ? '' : margin + }; + + !grid && this.$stage.children().css(css); + + cache.css = css; + } + }, { + filter: [ 'width', 'items', 'settings' ], + run: function(cache) { + var width = (this.width() / this.settings.items).toFixed(3) - this.settings.margin, + merge = null, + iterator = this._items.length, + grid = !this.settings.autoWidth, + widths = []; + + cache.items = { + merge: false, + width: width + }; + + while (iterator--) { + merge = this._mergers[iterator]; + merge = this.settings.mergeFit && Math.min(merge, this.settings.items) || merge; + + cache.items.merge = merge > 1 || cache.items.merge; + + widths[iterator] = !grid ? this._items[iterator].width() : width * merge; + } + + this._widths = widths; + } + }, { + filter: [ 'items', 'settings' ], + run: function() { + var clones = [], + items = this._items, + settings = this.settings, + // TODO: Should be computed from number of min width items in stage + view = Math.max(settings.items * 2, 4), + size = Math.ceil(items.length / 2) * 2, + repeat = settings.loop && items.length ? settings.rewind ? view : Math.max(view, size) : 0, + append = '', + prepend = ''; + + repeat /= 2; + + while (repeat > 0) { + // Switch to only using appended clones + clones.push(this.normalize(clones.length / 2, true)); + append = append + items[clones[clones.length - 1]][0].outerHTML; + clones.push(this.normalize(items.length - 1 - (clones.length - 1) / 2, true)); + prepend = items[clones[clones.length - 1]][0].outerHTML + prepend; + repeat -= 1; + } + + this._clones = clones; + + $(append).addClass('cloned').appendTo(this.$stage); + $(prepend).addClass('cloned').prependTo(this.$stage); + } + }, { + filter: [ 'width', 'items', 'settings' ], + run: function() { + var rtl = this.settings.rtl ? 1 : -1, + size = this._clones.length + this._items.length, + iterator = -1, + previous = 0, + current = 0, + coordinates = []; + + while (++iterator < size) { + previous = coordinates[iterator - 1] || 0; + current = this._widths[this.relative(iterator)] + this.settings.margin; + coordinates.push(previous + current * rtl); + } + + this._coordinates = coordinates; + } + }, { + filter: [ 'width', 'items', 'settings' ], + run: function() { + var padding = this.settings.stagePadding, + coordinates = this._coordinates, + css = { + 'width': Math.ceil(Math.abs(coordinates[coordinates.length - 1])) + padding * 2, + 'padding-left': padding || '', + 'padding-right': padding || '' + }; + + this.$stage.css(css); + } + }, { + filter: [ 'width', 'items', 'settings' ], + run: function(cache) { + var iterator = this._coordinates.length, + grid = !this.settings.autoWidth, + items = this.$stage.children(); + + if (grid && cache.items.merge) { + while (iterator--) { + cache.css.width = this._widths[this.relative(iterator)]; + items.eq(iterator).css(cache.css); + } + } else if (grid) { + cache.css.width = cache.items.width; + items.css(cache.css); + } + } + }, { + filter: [ 'items' ], + run: function() { + this._coordinates.length < 1 && this.$stage.removeAttr('style'); + } + }, { + filter: [ 'width', 'items', 'settings' ], + run: function(cache) { + cache.current = cache.current ? this.$stage.children().index(cache.current) : 0; + cache.current = Math.max(this.minimum(), Math.min(this.maximum(), cache.current)); + this.reset(cache.current); + } + }, { + filter: [ 'position' ], + run: function() { + this.animate(this.coordinates(this._current)); + } + }, { + filter: [ 'width', 'position', 'items', 'settings' ], + run: function() { + var rtl = this.settings.rtl ? 1 : -1, + padding = this.settings.stagePadding * 2, + begin = this.coordinates(this.current()) + padding, + end = begin + this.width() * rtl, + inner, outer, matches = [], i, n; + + for (i = 0, n = this._coordinates.length; i < n; i++) { + inner = this._coordinates[i - 1] || 0; + outer = Math.abs(this._coordinates[i]) + padding * rtl; + + if ((this.op(inner, '<=', begin) && (this.op(inner, '>', end))) + || (this.op(outer, '<', begin) && this.op(outer, '>', end))) { + matches.push(i); + } + } + + this.$stage.children('.active').removeClass('active'); + this.$stage.children(':eq(' + matches.join('), :eq(') + ')').addClass('active'); + + this.$stage.children('.center').removeClass('center'); + if (this.settings.center) { + this.$stage.children().eq(this.current()).addClass('center'); + } + } + } ]; + + /** + * Create the stage DOM element + */ + Owl.prototype.initializeStage = function() { + this.$stage = this.$element.find('.' + this.settings.stageClass); + + // if the stage is already in the DOM, grab it and skip stage initialization + if (this.$stage.length) { + return; + } + + this.$element.addClass(this.options.loadingClass); + + // create stage + this.$stage = $('<' + this.settings.stageElement + '>', { + "class": this.settings.stageClass + }).wrap( $( '
', { + "class": this.settings.stageOuterClass + })); + + // append stage + this.$element.append(this.$stage.parent()); + }; + + /** + * Create item DOM elements + */ + Owl.prototype.initializeItems = function() { + var $items = this.$element.find('.owl-item'); + + // if the items are already in the DOM, grab them and skip item initialization + if ($items.length) { + this._items = $items.get().map(function(item) { + return $(item); + }); + + this._mergers = this._items.map(function() { + return 1; + }); + + this.refresh(); + + return; + } + + // append content + this.replace(this.$element.children().not(this.$stage.parent())); + + // check visibility + if (this.isVisible()) { + // update view + this.refresh(); + } else { + // invalidate width + this.invalidate('width'); + } + + this.$element + .removeClass(this.options.loadingClass) + .addClass(this.options.loadedClass); + }; + + /** + * Initializes the carousel. + * @protected + */ + Owl.prototype.initialize = function() { + this.enter('initializing'); + this.trigger('initialize'); + + this.$element.toggleClass(this.settings.rtlClass, this.settings.rtl); + + if (this.settings.autoWidth && !this.is('pre-loading')) { + var imgs, nestedSelector, width; + imgs = this.$element.find('img'); + nestedSelector = this.settings.nestedItemSelector ? '.' + this.settings.nestedItemSelector : undefined; + width = this.$element.children(nestedSelector).width(); + + if (imgs.length && width <= 0) { + this.preloadAutoWidthImages(imgs); + } + } + + this.initializeStage(); + this.initializeItems(); + + // register event handlers + this.registerEventHandlers(); + + this.leave('initializing'); + this.trigger('initialized'); + }; + + /** + * @returns {Boolean} visibility of $element + * if you know the carousel will always be visible you can set `checkVisibility` to `false` to + * prevent the expensive browser layout forced reflow the $element.is(':visible') does + */ + Owl.prototype.isVisible = function() { + return this.settings.checkVisibility + ? this.$element.is(':visible') + : true; + }; + + /** + * Setups the current settings. + * @todo Remove responsive classes. Why should adaptive designs be brought into IE8? + * @todo Support for media queries by using `matchMedia` would be nice. + * @public + */ + Owl.prototype.setup = function() { + var viewport = this.viewport(), + overwrites = this.options.responsive, + match = -1, + settings = null; + + if (!overwrites) { + settings = $.extend({}, this.options); + } else { + $.each(overwrites, function(breakpoint) { + if (breakpoint <= viewport && breakpoint > match) { + match = Number(breakpoint); + } + }); + + settings = $.extend({}, this.options, overwrites[match]); + if (typeof settings.stagePadding === 'function') { + settings.stagePadding = settings.stagePadding(); + } + delete settings.responsive; + + // responsive class + if (settings.responsiveClass) { + this.$element.attr('class', + this.$element.attr('class').replace(new RegExp('(' + this.options.responsiveClass + '-)\\S+\\s', 'g'), '$1' + match) + ); + } + } + + this.trigger('change', { property: { name: 'settings', value: settings } }); + this._breakpoint = match; + this.settings = settings; + this.invalidate('settings'); + this.trigger('changed', { property: { name: 'settings', value: this.settings } }); + }; + + /** + * Updates option logic if necessery. + * @protected + */ + Owl.prototype.optionsLogic = function() { + if (this.settings.autoWidth) { + this.settings.stagePadding = false; + this.settings.merge = false; + } + }; + + /** + * Prepares an item before add. + * @todo Rename event parameter `content` to `item`. + * @protected + * @returns {jQuery|HTMLElement} - The item container. + */ + Owl.prototype.prepare = function(item) { + var event = this.trigger('prepare', { content: item }); + + if (!event.data) { + event.data = $('<' + this.settings.itemElement + '/>') + .addClass(this.options.itemClass).append(item) + } + + this.trigger('prepared', { content: event.data }); + + return event.data; + }; + + /** + * Updates the view. + * @public + */ + Owl.prototype.update = function() { + var i = 0, + n = this._pipe.length, + filter = $.proxy(function(p) { return this[p] }, this._invalidated), + cache = {}; + + while (i < n) { + if (this._invalidated.all || $.grep(this._pipe[i].filter, filter).length > 0) { + this._pipe[i].run(cache); + } + i++; + } + + this._invalidated = {}; + + !this.is('valid') && this.enter('valid'); + }; + + /** + * Gets the width of the view. + * @public + * @param {Owl.Width} [dimension=Owl.Width.Default] - The dimension to return. + * @returns {Number} - The width of the view in pixel. + */ + Owl.prototype.width = function(dimension) { + dimension = dimension || Owl.Width.Default; + switch (dimension) { + case Owl.Width.Inner: + case Owl.Width.Outer: + return this._width; + default: + return this._width - this.settings.stagePadding * 2 + this.settings.margin; + } + }; + + /** + * Refreshes the carousel primarily for adaptive purposes. + * @public + */ + Owl.prototype.refresh = function() { + this.enter('refreshing'); + this.trigger('refresh'); + + this.setup(); + + this.optionsLogic(); + + this.$element.addClass(this.options.refreshClass); + + this.update(); + + this.$element.removeClass(this.options.refreshClass); + + this.leave('refreshing'); + this.trigger('refreshed'); + }; + + /** + * Checks window `resize` event. + * @protected + */ + Owl.prototype.onThrottledResize = function() { + window.clearTimeout(this.resizeTimer); + this.resizeTimer = window.setTimeout(this._handlers.onResize, this.settings.responsiveRefreshRate); + }; + + /** + * Checks window `resize` event. + * @protected + */ + Owl.prototype.onResize = function() { + if (!this._items.length) { + return false; + } + + if (this._width === this.$element.width()) { + return false; + } + + if (!this.isVisible()) { + return false; + } + + this.enter('resizing'); + + if (this.trigger('resize').isDefaultPrevented()) { + this.leave('resizing'); + return false; + } + + this.invalidate('width'); + + this.refresh(); + + this.leave('resizing'); + this.trigger('resized'); + }; + + /** + * Registers event handlers. + * @todo Check `msPointerEnabled` + * @todo #261 + * @protected + */ + Owl.prototype.registerEventHandlers = function() { + if ($.support.transition) { + this.$stage.on($.support.transition.end + '.owl.core', $.proxy(this.onTransitionEnd, this)); + } + + if (this.settings.responsive !== false) { + this.on(window, 'resize', this._handlers.onThrottledResize); + } + + if (this.settings.mouseDrag) { + this.$element.addClass(this.options.dragClass); + this.$stage.on('mousedown.owl.core', $.proxy(this.onDragStart, this)); + this.$stage.on('dragstart.owl.core selectstart.owl.core', function() { return false }); + } + + if (this.settings.touchDrag){ + this.$stage.on('touchstart.owl.core', $.proxy(this.onDragStart, this)); + this.$stage.on('touchcancel.owl.core', $.proxy(this.onDragEnd, this)); + } + }; + + /** + * Handles `touchstart` and `mousedown` events. + * @todo Horizontal swipe threshold as option + * @todo #261 + * @protected + * @param {Event} event - The event arguments. + */ + Owl.prototype.onDragStart = function(event) { + var stage = null; + + if (event.which === 3) { + return; + } + + if ($.support.transform) { + stage = this.$stage.css('transform').replace(/.*\(|\)| /g, '').split(','); + stage = { + x: stage[stage.length === 16 ? 12 : 4], + y: stage[stage.length === 16 ? 13 : 5] + }; + } else { + stage = this.$stage.position(); + stage = { + x: this.settings.rtl ? + stage.left + this.$stage.width() - this.width() + this.settings.margin : + stage.left, +// y: stage.top + }; + } + + if (this.is('animating')) { + $.support.transform ? this.animate(stage.x) : this.$stage.stop() + this.invalidate('position'); + } + + this.$element.toggleClass(this.options.grabClass, event.type === 'mousedown'); + + this.speed(0); + + this._drag.time = new Date().getTime(); + this._drag.target = $(event.target); + this._drag.stage.start = stage; + this._drag.stage.current = stage; + this._drag.pointer = this.pointer(event); + + $(document).on('mouseup.owl.core touchend.owl.core', $.proxy(this.onDragEnd, this)); + + $(document).one('mousemove.owl.core touchmove.owl.core', $.proxy(function(event) { + var delta = this.difference(this._drag.pointer, this.pointer(event)); + + $(document).on('mousemove.owl.core touchmove.owl.core', $.proxy(this.onDragMove, this)); + + if (Math.abs(delta.x) < Math.abs(delta.y) && this.is('valid')) { + return; + } + + event.preventDefault(); + + this.enter('dragging'); + this.trigger('drag'); + }, this)); + }; + + /** + * Handles the `touchmove` and `mousemove` events. + * @todo #261 + * @protected + * @param {Event} event - The event arguments. + */ + Owl.prototype.onDragMove = function(event) { + var minimum = null, + maximum = null, + pull = null, + delta = this.difference(this._drag.pointer, this.pointer(event)), + stage = this.difference(this._drag.stage.start, delta); + + if (!this.is('dragging')) { + return; + } + + event.preventDefault(); + + if (this.settings.loop) { + minimum = this.coordinates(this.minimum()); + maximum = this.coordinates(this.maximum() + 1) - minimum; + stage.x = (((stage.x - minimum) % maximum + maximum) % maximum) + minimum; + } else { + minimum = this.settings.rtl ? this.coordinates(this.maximum()) : this.coordinates(this.minimum()); + maximum = this.settings.rtl ? this.coordinates(this.minimum()) : this.coordinates(this.maximum()); + pull = this.settings.pullDrag ? -1 * delta.x / 5 : 0; + stage.x = Math.max(Math.min(stage.x, minimum + pull), maximum + pull); + } + + this._drag.stage.current = stage; + + this.animate(stage.x); + }; + + /** + * Handles the `touchend` and `mouseup` events. + * @todo #261 + * @todo Threshold for click event + * @protected + * @param {Event} event - The event arguments. + */ + Owl.prototype.onDragEnd = function(event) { + var delta = this.difference(this._drag.pointer, this.pointer(event)), + stage = this._drag.stage.current, + direction = delta.x > 0 ^ this.settings.rtl ? 'left' : 'right'; + + $(document).off('.owl.core'); + + this.$element.removeClass(this.options.grabClass); + + if (delta.x !== 0 && this.is('dragging') || !this.is('valid')) { + this.speed(this.settings.dragEndSpeed || this.settings.smartSpeed); + this.current(this.closest(stage.x, delta.x !== 0 ? direction : this._drag.direction)); + this.invalidate('position'); + this.update(); + + this._drag.direction = direction; + + if (Math.abs(delta.x) > 3 || new Date().getTime() - this._drag.time > 300) { + this._drag.target.one('click.owl.core', function() { return false; }); + } + } + + if (!this.is('dragging')) { + return; + } + + this.leave('dragging'); + this.trigger('dragged'); + }; + + /** + * Gets absolute position of the closest item for a coordinate. + * @todo Setting `freeDrag` makes `closest` not reusable. See #165. + * @protected + * @param {Number} coordinate - The coordinate in pixel. + * @param {String} direction - The direction to check for the closest item. Ether `left` or `right`. + * @return {Number} - The absolute position of the closest item. + */ + Owl.prototype.closest = function(coordinate, direction) { + var position = -1, + pull = 30, + width = this.width(), + coordinates = this.coordinates(); + + if (!this.settings.freeDrag) { + // check closest item + $.each(coordinates, $.proxy(function(index, value) { + // on a left pull, check on current index + if (direction === 'left' && coordinate > value - pull && coordinate < value + pull) { + position = index; + // on a right pull, check on previous index + // to do so, subtract width from value and set position = index + 1 + } else if (direction === 'right' && coordinate > value - width - pull && coordinate < value - width + pull) { + position = index + 1; + } else if (this.op(coordinate, '<', value) + && this.op(coordinate, '>', coordinates[index + 1] !== undefined ? coordinates[index + 1] : value - width)) { + position = direction === 'left' ? index + 1 : index; + } + return position === -1; + }, this)); + } + + if (!this.settings.loop) { + // non loop boundries + if (this.op(coordinate, '>', coordinates[this.minimum()])) { + position = coordinate = this.minimum(); + } else if (this.op(coordinate, '<', coordinates[this.maximum()])) { + position = coordinate = this.maximum(); + } + } + + return position; + }; + + /** + * Animates the stage. + * @todo #270 + * @public + * @param {Number} coordinate - The coordinate in pixels. + */ + Owl.prototype.animate = function(coordinate) { + var animate = this.speed() > 0; + + this.is('animating') && this.onTransitionEnd(); + + if (animate) { + this.enter('animating'); + this.trigger('translate'); + } + + if ($.support.transform3d && $.support.transition) { + this.$stage.css({ + transform: 'translate3d(' + coordinate + 'px,0px,0px)', + transition: (this.speed() / 1000) + 's' + ( + this.settings.slideTransition ? ' ' + this.settings.slideTransition : '' + ) + }); + } else if (animate) { + this.$stage.animate({ + left: coordinate + 'px' + }, this.speed(), this.settings.fallbackEasing, $.proxy(this.onTransitionEnd, this)); + } else { + this.$stage.css({ + left: coordinate + 'px' + }); + } + }; + + /** + * Checks whether the carousel is in a specific state or not. + * @param {String} state - The state to check. + * @returns {Boolean} - The flag which indicates if the carousel is busy. + */ + Owl.prototype.is = function(state) { + return this._states.current[state] && this._states.current[state] > 0; + }; + + /** + * Sets the absolute position of the current item. + * @public + * @param {Number} [position] - The new absolute position or nothing to leave it unchanged. + * @returns {Number} - The absolute position of the current item. + */ + Owl.prototype.current = function(position) { + if (position === undefined) { + return this._current; + } + + if (this._items.length === 0) { + return undefined; + } + + position = this.normalize(position); + + if (this._current !== position) { + var event = this.trigger('change', { property: { name: 'position', value: position } }); + + if (event.data !== undefined) { + position = this.normalize(event.data); + } + + this._current = position; + + this.invalidate('position'); + + this.trigger('changed', { property: { name: 'position', value: this._current } }); + } + + return this._current; + }; + + /** + * Invalidates the given part of the update routine. + * @param {String} [part] - The part to invalidate. + * @returns {Array.} - The invalidated parts. + */ + Owl.prototype.invalidate = function(part) { + if ($.type(part) === 'string') { + this._invalidated[part] = true; + this.is('valid') && this.leave('valid'); + } + return $.map(this._invalidated, function(v, i) { return i }); + }; + + /** + * Resets the absolute position of the current item. + * @public + * @param {Number} position - The absolute position of the new item. + */ + Owl.prototype.reset = function(position) { + position = this.normalize(position); + + if (position === undefined) { + return; + } + + this._speed = 0; + this._current = position; + + this.suppress([ 'translate', 'translated' ]); + + this.animate(this.coordinates(position)); + + this.release([ 'translate', 'translated' ]); + }; + + /** + * Normalizes an absolute or a relative position of an item. + * @public + * @param {Number} position - The absolute or relative position to normalize. + * @param {Boolean} [relative=false] - Whether the given position is relative or not. + * @returns {Number} - The normalized position. + */ + Owl.prototype.normalize = function(position, relative) { + var n = this._items.length, + m = relative ? 0 : this._clones.length; + + if (!this.isNumeric(position) || n < 1) { + position = undefined; + } else if (position < 0 || position >= n + m) { + position = ((position - m / 2) % n + n) % n + m / 2; + } + + return position; + }; + + /** + * Converts an absolute position of an item into a relative one. + * @public + * @param {Number} position - The absolute position to convert. + * @returns {Number} - The converted position. + */ + Owl.prototype.relative = function(position) { + position -= this._clones.length / 2; + return this.normalize(position, true); + }; + + /** + * Gets the maximum position for the current item. + * @public + * @param {Boolean} [relative=false] - Whether to return an absolute position or a relative position. + * @returns {Number} + */ + Owl.prototype.maximum = function(relative) { + var settings = this.settings, + maximum = this._coordinates.length, + iterator, + reciprocalItemsWidth, + elementWidth; + + if (settings.loop) { + maximum = this._clones.length / 2 + this._items.length - 1; + } else if (settings.autoWidth || settings.merge) { + iterator = this._items.length; + if (iterator) { + reciprocalItemsWidth = this._items[--iterator].width(); + elementWidth = this.$element.width(); + while (iterator--) { + reciprocalItemsWidth += this._items[iterator].width() + this.settings.margin; + if (reciprocalItemsWidth > elementWidth) { + break; + } + } + } + maximum = iterator + 1; + } else if (settings.center) { + maximum = this._items.length - 1; + } else { + maximum = this._items.length - settings.items; + } + + if (relative) { + maximum -= this._clones.length / 2; + } + + return Math.max(maximum, 0); + }; + + /** + * Gets the minimum position for the current item. + * @public + * @param {Boolean} [relative=false] - Whether to return an absolute position or a relative position. + * @returns {Number} + */ + Owl.prototype.minimum = function(relative) { + return relative ? 0 : this._clones.length / 2; + }; + + /** + * Gets an item at the specified relative position. + * @public + * @param {Number} [position] - The relative position of the item. + * @return {jQuery|Array.} - The item at the given position or all items if no position was given. + */ + Owl.prototype.items = function(position) { + if (position === undefined) { + return this._items.slice(); + } + + position = this.normalize(position, true); + return this._items[position]; + }; + + /** + * Gets an item at the specified relative position. + * @public + * @param {Number} [position] - The relative position of the item. + * @return {jQuery|Array.} - The item at the given position or all items if no position was given. + */ + Owl.prototype.mergers = function(position) { + if (position === undefined) { + return this._mergers.slice(); + } + + position = this.normalize(position, true); + return this._mergers[position]; + }; + + /** + * Gets the absolute positions of clones for an item. + * @public + * @param {Number} [position] - The relative position of the item. + * @returns {Array.} - The absolute positions of clones for the item or all if no position was given. + */ + Owl.prototype.clones = function(position) { + var odd = this._clones.length / 2, + even = odd + this._items.length, + map = function(index) { return index % 2 === 0 ? even + index / 2 : odd - (index + 1) / 2 }; + + if (position === undefined) { + return $.map(this._clones, function(v, i) { return map(i) }); + } + + return $.map(this._clones, function(v, i) { return v === position ? map(i) : null }); + }; + + /** + * Sets the current animation speed. + * @public + * @param {Number} [speed] - The animation speed in milliseconds or nothing to leave it unchanged. + * @returns {Number} - The current animation speed in milliseconds. + */ + Owl.prototype.speed = function(speed) { + if (speed !== undefined) { + this._speed = speed; + } + + return this._speed; + }; + + /** + * Gets the coordinate of an item. + * @todo The name of this method is missleanding. + * @public + * @param {Number} position - The absolute position of the item within `minimum()` and `maximum()`. + * @returns {Number|Array.} - The coordinate of the item in pixel or all coordinates. + */ + Owl.prototype.coordinates = function(position) { + var multiplier = 1, + newPosition = position - 1, + coordinate; + + if (position === undefined) { + return $.map(this._coordinates, $.proxy(function(coordinate, index) { + return this.coordinates(index); + }, this)); + } + + if (this.settings.center) { + if (this.settings.rtl) { + multiplier = -1; + newPosition = position + 1; + } + + coordinate = this._coordinates[position]; + coordinate += (this.width() - coordinate + (this._coordinates[newPosition] || 0)) / 2 * multiplier; + } else { + coordinate = this._coordinates[newPosition] || 0; + } + + coordinate = Math.ceil(coordinate); + + return coordinate; + }; + + /** + * Calculates the speed for a translation. + * @protected + * @param {Number} from - The absolute position of the start item. + * @param {Number} to - The absolute position of the target item. + * @param {Number} [factor=undefined] - The time factor in milliseconds. + * @returns {Number} - The time in milliseconds for the translation. + */ + Owl.prototype.duration = function(from, to, factor) { + if (factor === 0) { + return 0; + } + + return Math.min(Math.max(Math.abs(to - from), 1), 6) * Math.abs((factor || this.settings.smartSpeed)); + }; + + /** + * Slides to the specified item. + * @public + * @param {Number} position - The position of the item. + * @param {Number} [speed] - The time in milliseconds for the transition. + */ + Owl.prototype.to = function(position, speed) { + var current = this.current(), + revert = null, + distance = position - this.relative(current), + direction = (distance > 0) - (distance < 0), + items = this._items.length, + minimum = this.minimum(), + maximum = this.maximum(); + + if (this.settings.loop) { + if (!this.settings.rewind && Math.abs(distance) > items / 2) { + distance += direction * -1 * items; + } + + position = current + distance; + revert = ((position - minimum) % items + items) % items + minimum; + + if (revert !== position && revert - distance <= maximum && revert - distance > 0) { + current = revert - distance; + position = revert; + this.reset(current); + } + } else if (this.settings.rewind) { + maximum += 1; + position = (position % maximum + maximum) % maximum; + } else { + position = Math.max(minimum, Math.min(maximum, position)); + } + + this.speed(this.duration(current, position, speed)); + this.current(position); + + if (this.isVisible()) { + this.update(); + } + }; + + /** + * Slides to the next item. + * @public + * @param {Number} [speed] - The time in milliseconds for the transition. + */ + Owl.prototype.next = function(speed) { + speed = speed || false; + this.to(this.relative(this.current()) + 1, speed); + }; + + /** + * Slides to the previous item. + * @public + * @param {Number} [speed] - The time in milliseconds for the transition. + */ + Owl.prototype.prev = function(speed) { + speed = speed || false; + this.to(this.relative(this.current()) - 1, speed); + }; + + /** + * Handles the end of an animation. + * @protected + * @param {Event} event - The event arguments. + */ + Owl.prototype.onTransitionEnd = function(event) { + + // if css2 animation then event object is undefined + if (event !== undefined) { + event.stopPropagation(); + + // Catch only owl-stage transitionEnd event + if ((event.target || event.srcElement || event.originalTarget) !== this.$stage.get(0)) { + return false; + } + } + + this.leave('animating'); + this.trigger('translated'); + }; + + /** + * Gets viewport width. + * @protected + * @return {Number} - The width in pixel. + */ + Owl.prototype.viewport = function() { + var width; + if (this.options.responsiveBaseElement !== window) { + width = $(this.options.responsiveBaseElement).width(); + } else if (window.innerWidth) { + width = window.innerWidth; + } else if (document.documentElement && document.documentElement.clientWidth) { + width = document.documentElement.clientWidth; + } else { + console.warn('Can not detect viewport width.'); + } + return width; + }; + + /** + * Replaces the current content. + * @public + * @param {HTMLElement|jQuery|String} content - The new content. + */ + Owl.prototype.replace = function(content) { + this.$stage.empty(); + this._items = []; + + if (content) { + content = (content instanceof jQuery) ? content : $(content); + } + + if (this.settings.nestedItemSelector) { + content = content.find('.' + this.settings.nestedItemSelector); + } + + content.filter(function() { + return this.nodeType === 1; + }).each($.proxy(function(index, item) { + item = this.prepare(item); + this.$stage.append(item); + this._items.push(item); + this._mergers.push(item.find('[data-merge]').addBack('[data-merge]').attr('data-merge') * 1 || 1); + }, this)); + + this.reset(this.isNumeric(this.settings.startPosition) ? this.settings.startPosition : 0); + + this.invalidate('items'); + }; + + /** + * Adds an item. + * @todo Use `item` instead of `content` for the event arguments. + * @public + * @param {HTMLElement|jQuery|String} content - The item content to add. + * @param {Number} [position] - The relative position at which to insert the item otherwise the item will be added to the end. + */ + Owl.prototype.add = function(content, position) { + var current = this.relative(this._current); + + position = position === undefined ? this._items.length : this.normalize(position, true); + content = content instanceof jQuery ? content : $(content); + + this.trigger('add', { content: content, position: position }); + + content = this.prepare(content); + + if (this._items.length === 0 || position === this._items.length) { + this._items.length === 0 && this.$stage.append(content); + this._items.length !== 0 && this._items[position - 1].after(content); + this._items.push(content); + this._mergers.push(content.find('[data-merge]').addBack('[data-merge]').attr('data-merge') * 1 || 1); + } else { + this._items[position].before(content); + this._items.splice(position, 0, content); + this._mergers.splice(position, 0, content.find('[data-merge]').addBack('[data-merge]').attr('data-merge') * 1 || 1); + } + + this._items[current] && this.reset(this._items[current].index()); + + this.invalidate('items'); + + this.trigger('added', { content: content, position: position }); + }; + + /** + * Removes an item by its position. + * @todo Use `item` instead of `content` for the event arguments. + * @public + * @param {Number} position - The relative position of the item to remove. + */ + Owl.prototype.remove = function(position) { + position = this.normalize(position, true); + + if (position === undefined) { + return; + } + + this.trigger('remove', { content: this._items[position], position: position }); + + this._items[position].remove(); + this._items.splice(position, 1); + this._mergers.splice(position, 1); + + this.invalidate('items'); + + this.trigger('removed', { content: null, position: position }); + }; + + /** + * Preloads images with auto width. + * @todo Replace by a more generic approach + * @protected + */ + Owl.prototype.preloadAutoWidthImages = function(images) { + images.each($.proxy(function(i, element) { + this.enter('pre-loading'); + element = $(element); + $(new Image()).one('load', $.proxy(function(e) { + element.attr('src', e.target.src); + element.css('opacity', 1); + this.leave('pre-loading'); + !this.is('pre-loading') && !this.is('initializing') && this.refresh(); + }, this)).attr('src', element.attr('src') || element.attr('data-src') || element.attr('data-src-retina')); + }, this)); + }; + + /** + * Destroys the carousel. + * @public + */ + Owl.prototype.destroy = function() { + + this.$element.off('.owl.core'); + this.$stage.off('.owl.core'); + $(document).off('.owl.core'); + + if (this.settings.responsive !== false) { + window.clearTimeout(this.resizeTimer); + this.off(window, 'resize', this._handlers.onThrottledResize); + } + + for (var i in this._plugins) { + this._plugins[i].destroy(); + } + + this.$stage.children('.cloned').remove(); + + this.$stage.unwrap(); + this.$stage.children().contents().unwrap(); + this.$stage.children().unwrap(); + this.$stage.remove(); + this.$element + .removeClass(this.options.refreshClass) + .removeClass(this.options.loadingClass) + .removeClass(this.options.loadedClass) + .removeClass(this.options.rtlClass) + .removeClass(this.options.dragClass) + .removeClass(this.options.grabClass) + .attr('class', this.$element.attr('class').replace(new RegExp(this.options.responsiveClass + '-\\S+\\s', 'g'), '')) + .removeData('owl.carousel'); + }; + + /** + * Operators to calculate right-to-left and left-to-right. + * @protected + * @param {Number} [a] - The left side operand. + * @param {String} [o] - The operator. + * @param {Number} [b] - The right side operand. + */ + Owl.prototype.op = function(a, o, b) { + var rtl = this.settings.rtl; + switch (o) { + case '<': + return rtl ? a > b : a < b; + case '>': + return rtl ? a < b : a > b; + case '>=': + return rtl ? a <= b : a >= b; + case '<=': + return rtl ? a >= b : a <= b; + default: + break; + } + }; + + /** + * Attaches to an internal event. + * @protected + * @param {HTMLElement} element - The event source. + * @param {String} event - The event name. + * @param {Function} listener - The event handler to attach. + * @param {Boolean} capture - Wether the event should be handled at the capturing phase or not. + */ + Owl.prototype.on = function(element, event, listener, capture) { + if (element.addEventListener) { + element.addEventListener(event, listener, capture); + } else if (element.attachEvent) { + element.attachEvent('on' + event, listener); + } + }; + + /** + * Detaches from an internal event. + * @protected + * @param {HTMLElement} element - The event source. + * @param {String} event - The event name. + * @param {Function} listener - The attached event handler to detach. + * @param {Boolean} capture - Wether the attached event handler was registered as a capturing listener or not. + */ + Owl.prototype.off = function(element, event, listener, capture) { + if (element.removeEventListener) { + element.removeEventListener(event, listener, capture); + } else if (element.detachEvent) { + element.detachEvent('on' + event, listener); + } + }; + + /** + * Triggers a public event. + * @todo Remove `status`, `relatedTarget` should be used instead. + * @protected + * @param {String} name - The event name. + * @param {*} [data=null] - The event data. + * @param {String} [namespace=carousel] - The event namespace. + * @param {String} [state] - The state which is associated with the event. + * @param {Boolean} [enter=false] - Indicates if the call enters the specified state or not. + * @returns {Event} - The event arguments. + */ + Owl.prototype.trigger = function(name, data, namespace, state, enter) { + var status = { + item: { count: this._items.length, index: this.current() } + }, handler = $.camelCase( + $.grep([ 'on', name, namespace ], function(v) { return v }) + .join('-').toLowerCase() + ), event = $.Event( + [ name, 'owl', namespace || 'carousel' ].join('.').toLowerCase(), + $.extend({ relatedTarget: this }, status, data) + ); + + if (!this._supress[name]) { + $.each(this._plugins, function(name, plugin) { + if (plugin.onTrigger) { + plugin.onTrigger(event); + } + }); + + this.register({ type: Owl.Type.Event, name: name }); + this.$element.trigger(event); + + if (this.settings && typeof this.settings[handler] === 'function') { + this.settings[handler].call(this, event); + } + } + + return event; + }; + + /** + * Enters a state. + * @param name - The state name. + */ + Owl.prototype.enter = function(name) { + $.each([ name ].concat(this._states.tags[name] || []), $.proxy(function(i, name) { + if (this._states.current[name] === undefined) { + this._states.current[name] = 0; + } + + this._states.current[name]++; + }, this)); + }; + + /** + * Leaves a state. + * @param name - The state name. + */ + Owl.prototype.leave = function(name) { + $.each([ name ].concat(this._states.tags[name] || []), $.proxy(function(i, name) { + this._states.current[name]--; + }, this)); + }; + + /** + * Registers an event or state. + * @public + * @param {Object} object - The event or state to register. + */ + Owl.prototype.register = function(object) { + if (object.type === Owl.Type.Event) { + if (!$.event.special[object.name]) { + $.event.special[object.name] = {}; + } + + if (!$.event.special[object.name].owl) { + var _default = $.event.special[object.name]._default; + $.event.special[object.name]._default = function(e) { + if (_default && _default.apply && (!e.namespace || e.namespace.indexOf('owl') === -1)) { + return _default.apply(this, arguments); + } + return e.namespace && e.namespace.indexOf('owl') > -1; + }; + $.event.special[object.name].owl = true; + } + } else if (object.type === Owl.Type.State) { + if (!this._states.tags[object.name]) { + this._states.tags[object.name] = object.tags; + } else { + this._states.tags[object.name] = this._states.tags[object.name].concat(object.tags); + } + + this._states.tags[object.name] = $.grep(this._states.tags[object.name], $.proxy(function(tag, i) { + return $.inArray(tag, this._states.tags[object.name]) === i; + }, this)); + } + }; + + /** + * Suppresses events. + * @protected + * @param {Array.} events - The events to suppress. + */ + Owl.prototype.suppress = function(events) { + $.each(events, $.proxy(function(index, event) { + this._supress[event] = true; + }, this)); + }; + + /** + * Releases suppressed events. + * @protected + * @param {Array.} events - The events to release. + */ + Owl.prototype.release = function(events) { + $.each(events, $.proxy(function(index, event) { + delete this._supress[event]; + }, this)); + }; + + /** + * Gets unified pointer coordinates from event. + * @todo #261 + * @protected + * @param {Event} - The `mousedown` or `touchstart` event. + * @returns {Object} - Contains `x` and `y` coordinates of current pointer position. + */ + Owl.prototype.pointer = function(event) { + var result = { x: null, y: null }; + + event = event.originalEvent || event || window.event; + + event = event.touches && event.touches.length ? + event.touches[0] : event.changedTouches && event.changedTouches.length ? + event.changedTouches[0] : event; + + if (event.pageX) { + result.x = event.pageX; + result.y = event.pageY; + } else { + result.x = event.clientX; + result.y = event.clientY; + } + + return result; + }; + + /** + * Determines if the input is a Number or something that can be coerced to a Number + * @protected + * @param {Number|String|Object|Array|Boolean|RegExp|Function|Symbol} - The input to be tested + * @returns {Boolean} - An indication if the input is a Number or can be coerced to a Number + */ + Owl.prototype.isNumeric = function(number) { + return !isNaN(parseFloat(number)); + }; + + /** + * Gets the difference of two vectors. + * @todo #261 + * @protected + * @param {Object} - The first vector. + * @param {Object} - The second vector. + * @returns {Object} - The difference. + */ + Owl.prototype.difference = function(first, second) { + return { + x: first.x - second.x, + y: first.y - second.y + }; + }; + + /** + * The jQuery Plugin for the Owl Carousel + * @todo Navigation plugin `next` and `prev` + * @public + */ + $.fn.owlCarousel = function(option) { + var args = Array.prototype.slice.call(arguments, 1); + + return this.each(function() { + var $this = $(this), + data = $this.data('owl.carousel'); + + if (!data) { + data = new Owl(this, typeof option == 'object' && option); + $this.data('owl.carousel', data); + + $.each([ + 'next', 'prev', 'to', 'destroy', 'refresh', 'replace', 'add', 'remove' + ], function(i, event) { + data.register({ type: Owl.Type.Event, name: event }); + data.$element.on(event + '.owl.carousel.core', $.proxy(function(e) { + if (e.namespace && e.relatedTarget !== this) { + this.suppress([ event ]); + data[event].apply(this, [].slice.call(arguments, 1)); + this.release([ event ]); + } + }, data)); + }); + } + + if (typeof option == 'string' && option.charAt(0) !== '_') { + data[option].apply(data, args); + } + }); + }; + + /** + * The constructor for the jQuery Plugin + * @public + */ + $.fn.owlCarousel.Constructor = Owl; + +})(window.Zepto || window.jQuery, window, document); + +/** + * AutoRefresh Plugin + * @version 2.3.4 + * @author Artus Kolanowski + * @author David Deutsch + * @license The MIT License (MIT) + */ +;(function($, window, document, undefined) { + + /** + * Creates the auto refresh plugin. + * @class The Auto Refresh Plugin + * @param {Owl} carousel - The Owl Carousel + */ + var AutoRefresh = function(carousel) { + /** + * Reference to the core. + * @protected + * @type {Owl} + */ + this._core = carousel; + + /** + * Refresh interval. + * @protected + * @type {number} + */ + this._interval = null; + + /** + * Whether the element is currently visible or not. + * @protected + * @type {Boolean} + */ + this._visible = null; + + /** + * All event handlers. + * @protected + * @type {Object} + */ + this._handlers = { + 'initialized.owl.carousel': $.proxy(function(e) { + if (e.namespace && this._core.settings.autoRefresh) { + this.watch(); + } + }, this) + }; + + // set default options + this._core.options = $.extend({}, AutoRefresh.Defaults, this._core.options); + + // register event handlers + this._core.$element.on(this._handlers); + }; + + /** + * Default options. + * @public + */ + AutoRefresh.Defaults = { + autoRefresh: true, + autoRefreshInterval: 500 + }; + + /** + * Watches the element. + */ + AutoRefresh.prototype.watch = function() { + if (this._interval) { + return; + } + + this._visible = this._core.isVisible(); + this._interval = window.setInterval($.proxy(this.refresh, this), this._core.settings.autoRefreshInterval); + }; + + /** + * Refreshes the element. + */ + AutoRefresh.prototype.refresh = function() { + if (this._core.isVisible() === this._visible) { + return; + } + + this._visible = !this._visible; + + this._core.$element.toggleClass('owl-hidden', !this._visible); + + this._visible && (this._core.invalidate('width') && this._core.refresh()); + }; + + /** + * Destroys the plugin. + */ + AutoRefresh.prototype.destroy = function() { + var handler, property; + + window.clearInterval(this._interval); + + for (handler in this._handlers) { + this._core.$element.off(handler, this._handlers[handler]); + } + for (property in Object.getOwnPropertyNames(this)) { + typeof this[property] != 'function' && (this[property] = null); + } + }; + + $.fn.owlCarousel.Constructor.Plugins.AutoRefresh = AutoRefresh; + +})(window.Zepto || window.jQuery, window, document); + +/** + * Lazy Plugin + * @version 2.3.4 + * @author Bartosz Wojciechowski + * @author David Deutsch + * @license The MIT License (MIT) + */ +;(function($, window, document, undefined) { + + /** + * Creates the lazy plugin. + * @class The Lazy Plugin + * @param {Owl} carousel - The Owl Carousel + */ + var Lazy = function(carousel) { + + /** + * Reference to the core. + * @protected + * @type {Owl} + */ + this._core = carousel; + + /** + * Already loaded items. + * @protected + * @type {Array.} + */ + this._loaded = []; + + /** + * Event handlers. + * @protected + * @type {Object} + */ + this._handlers = { + 'initialized.owl.carousel change.owl.carousel resized.owl.carousel': $.proxy(function(e) { + if (!e.namespace) { + return; + } + + if (!this._core.settings || !this._core.settings.lazyLoad) { + return; + } + + if ((e.property && e.property.name == 'position') || e.type == 'initialized') { + var settings = this._core.settings, + n = (settings.center && Math.ceil(settings.items / 2) || settings.items), + i = ((settings.center && n * -1) || 0), + position = (e.property && e.property.value !== undefined ? e.property.value : this._core.current()) + i, + clones = this._core.clones().length, + load = $.proxy(function(i, v) { this.load(v) }, this); + //TODO: Need documentation for this new option + if (settings.lazyLoadEager > 0) { + n += settings.lazyLoadEager; + // If the carousel is looping also preload images that are to the "left" + if (settings.loop) { + position -= settings.lazyLoadEager; + n++; + } + } + + while (i++ < n) { + this.load(clones / 2 + this._core.relative(position)); + clones && $.each(this._core.clones(this._core.relative(position)), load); + position++; + } + } + }, this) + }; + + // set the default options + this._core.options = $.extend({}, Lazy.Defaults, this._core.options); + + // register event handler + this._core.$element.on(this._handlers); + }; + + /** + * Default options. + * @public + */ + Lazy.Defaults = { + lazyLoad: false, + lazyLoadEager: 0 + }; + + /** + * Loads all resources of an item at the specified position. + * @param {Number} position - The absolute position of the item. + * @protected + */ + Lazy.prototype.load = function(position) { + var $item = this._core.$stage.children().eq(position), + $elements = $item && $item.find('.owl-lazy'); + + if (!$elements || $.inArray($item.get(0), this._loaded) > -1) { + return; + } + + $elements.each($.proxy(function(index, element) { + var $element = $(element), image, + url = (window.devicePixelRatio > 1 && $element.attr('data-src-retina')) || $element.attr('data-src') || $element.attr('data-srcset'); + + this._core.trigger('load', { element: $element, url: url }, 'lazy'); + + if ($element.is('img')) { + $element.one('load.owl.lazy', $.proxy(function() { + $element.css('opacity', 1); + this._core.trigger('loaded', { element: $element, url: url }, 'lazy'); + }, this)).attr('src', url); + } else if ($element.is('source')) { + $element.one('load.owl.lazy', $.proxy(function() { + this._core.trigger('loaded', { element: $element, url: url }, 'lazy'); + }, this)).attr('srcset', url); + } else { + image = new Image(); + image.onload = $.proxy(function() { + $element.css({ + 'background-image': 'url("' + url + '")', + 'opacity': '1' + }); + this._core.trigger('loaded', { element: $element, url: url }, 'lazy'); + }, this); + image.src = url; + } + }, this)); + + this._loaded.push($item.get(0)); + }; + + /** + * Destroys the plugin. + * @public + */ + Lazy.prototype.destroy = function() { + var handler, property; + + for (handler in this.handlers) { + this._core.$element.off(handler, this.handlers[handler]); + } + for (property in Object.getOwnPropertyNames(this)) { + typeof this[property] != 'function' && (this[property] = null); + } + }; + + $.fn.owlCarousel.Constructor.Plugins.Lazy = Lazy; + +})(window.Zepto || window.jQuery, window, document); + +/** + * AutoHeight Plugin + * @version 2.3.4 + * @author Bartosz Wojciechowski + * @author David Deutsch + * @license The MIT License (MIT) + */ +;(function($, window, document, undefined) { + + /** + * Creates the auto height plugin. + * @class The Auto Height Plugin + * @param {Owl} carousel - The Owl Carousel + */ + var AutoHeight = function(carousel) { + /** + * Reference to the core. + * @protected + * @type {Owl} + */ + this._core = carousel; + + this._previousHeight = null; + + /** + * All event handlers. + * @protected + * @type {Object} + */ + this._handlers = { + 'initialized.owl.carousel refreshed.owl.carousel': $.proxy(function(e) { + if (e.namespace && this._core.settings.autoHeight) { + this.update(); + } + }, this), + 'changed.owl.carousel': $.proxy(function(e) { + if (e.namespace && this._core.settings.autoHeight && e.property.name === 'position'){ + this.update(); + } + }, this), + 'loaded.owl.lazy': $.proxy(function(e) { + if (e.namespace && this._core.settings.autoHeight + && e.element.closest('.' + this._core.settings.itemClass).index() === this._core.current()) { + this.update(); + } + }, this) + }; + + // set default options + this._core.options = $.extend({}, AutoHeight.Defaults, this._core.options); + + // register event handlers + this._core.$element.on(this._handlers); + this._intervalId = null; + var refThis = this; + + // These changes have been taken from a PR by gavrochelegnou proposed in #1575 + // and have been made compatible with the latest jQuery version + $(window).on('load', function() { + if (refThis._core.settings.autoHeight) { + refThis.update(); + } + }); + + // Autoresize the height of the carousel when window is resized + // When carousel has images, the height is dependent on the width + // and should also change on resize + $(window).resize(function() { + if (refThis._core.settings.autoHeight) { + if (refThis._intervalId != null) { + clearTimeout(refThis._intervalId); + } + + refThis._intervalId = setTimeout(function() { + refThis.update(); + }, 250); + } + }); + + }; + + /** + * Default options. + * @public + */ + AutoHeight.Defaults = { + autoHeight: false, + autoHeightClass: 'owl-height' + }; + + /** + * Updates the view. + */ + AutoHeight.prototype.update = function() { + var start = this._core._current, + end = start + this._core.settings.items, + lazyLoadEnabled = this._core.settings.lazyLoad, + visible = this._core.$stage.children().toArray().slice(start, end), + heights = [], + maxheight = 0; + + $.each(visible, function(index, item) { + heights.push($(item).height()); + }); + + maxheight = Math.max.apply(null, heights); + + if (maxheight <= 1 && lazyLoadEnabled && this._previousHeight) { + maxheight = this._previousHeight; + } + + this._previousHeight = maxheight; + + this._core.$stage.parent() + .height(maxheight) + .addClass(this._core.settings.autoHeightClass); + }; + + AutoHeight.prototype.destroy = function() { + var handler, property; + + for (handler in this._handlers) { + this._core.$element.off(handler, this._handlers[handler]); + } + for (property in Object.getOwnPropertyNames(this)) { + typeof this[property] !== 'function' && (this[property] = null); + } + }; + + $.fn.owlCarousel.Constructor.Plugins.AutoHeight = AutoHeight; + +})(window.Zepto || window.jQuery, window, document); + +/** + * Video Plugin + * @version 2.3.4 + * @author Bartosz Wojciechowski + * @author David Deutsch + * @license The MIT License (MIT) + */ +;(function($, window, document, undefined) { + + /** + * Creates the video plugin. + * @class The Video Plugin + * @param {Owl} carousel - The Owl Carousel + */ + var Video = function(carousel) { + /** + * Reference to the core. + * @protected + * @type {Owl} + */ + this._core = carousel; + + /** + * Cache all video URLs. + * @protected + * @type {Object} + */ + this._videos = {}; + + /** + * Current playing item. + * @protected + * @type {jQuery} + */ + this._playing = null; + + /** + * All event handlers. + * @todo The cloned content removale is too late + * @protected + * @type {Object} + */ + this._handlers = { + 'initialized.owl.carousel': $.proxy(function(e) { + if (e.namespace) { + this._core.register({ type: 'state', name: 'playing', tags: [ 'interacting' ] }); + } + }, this), + 'resize.owl.carousel': $.proxy(function(e) { + if (e.namespace && this._core.settings.video && this.isInFullScreen()) { + e.preventDefault(); + } + }, this), + 'refreshed.owl.carousel': $.proxy(function(e) { + if (e.namespace && this._core.is('resizing')) { + this._core.$stage.find('.cloned .owl-video-frame').remove(); + } + }, this), + 'changed.owl.carousel': $.proxy(function(e) { + if (e.namespace && e.property.name === 'position' && this._playing) { + this.stop(); + } + }, this), + 'prepared.owl.carousel': $.proxy(function(e) { + if (!e.namespace) { + return; + } + + var $element = $(e.content).find('.owl-video'); + + if ($element.length) { + $element.css('display', 'none'); + this.fetch($element, $(e.content)); + } + }, this) + }; + + // set default options + this._core.options = $.extend({}, Video.Defaults, this._core.options); + + // register event handlers + this._core.$element.on(this._handlers); + + this._core.$element.on('click.owl.video', '.owl-video-play-icon', $.proxy(function(e) { + this.play(e); + }, this)); + }; + + /** + * Default options. + * @public + */ + Video.Defaults = { + video: false, + videoHeight: false, + videoWidth: false + }; + + /** + * Gets the video ID and the type (YouTube/Vimeo/vzaar only). + * @protected + * @param {jQuery} target - The target containing the video data. + * @param {jQuery} item - The item containing the video. + */ + Video.prototype.fetch = function(target, item) { + var type = (function() { + if (target.attr('data-vimeo-id')) { + return 'vimeo'; + } else if (target.attr('data-vzaar-id')) { + return 'vzaar' + } else { + return 'youtube'; + } + })(), + id = target.attr('data-vimeo-id') || target.attr('data-youtube-id') || target.attr('data-vzaar-id'), + width = target.attr('data-width') || this._core.settings.videoWidth, + height = target.attr('data-height') || this._core.settings.videoHeight, + url = target.attr('href'); + + if (url) { + + /* + Parses the id's out of the following urls (and probably more): + https://www.youtube.com/watch?v=:id + https://youtu.be/:id + https://vimeo.com/:id + https://vimeo.com/channels/:channel/:id + https://vimeo.com/groups/:group/videos/:id + https://app.vzaar.com/videos/:id + + Visual example: https://regexper.com/#(http%3A%7Chttps%3A%7C)%5C%2F%5C%2F(player.%7Cwww.%7Capp.)%3F(vimeo%5C.com%7Cyoutu(be%5C.com%7C%5C.be%7Cbe%5C.googleapis%5C.com)%7Cvzaar%5C.com)%5C%2F(video%5C%2F%7Cvideos%5C%2F%7Cembed%5C%2F%7Cchannels%5C%2F.%2B%5C%2F%7Cgroups%5C%2F.%2B%5C%2F%7Cwatch%5C%3Fv%3D%7Cv%5C%2F)%3F(%5BA-Za-z0-9._%25-%5D*)(%5C%26%5CS%2B)%3F + */ + + id = url.match(/(http:|https:|)\/\/(player.|www.|app.)?(vimeo\.com|youtu(be\.com|\.be|be\.googleapis\.com|be\-nocookie\.com)|vzaar\.com)\/(video\/|videos\/|embed\/|channels\/.+\/|groups\/.+\/|watch\?v=|v\/)?([A-Za-z0-9._%-]*)(\&\S+)?/); + + if (id[3].indexOf('youtu') > -1) { + type = 'youtube'; + } else if (id[3].indexOf('vimeo') > -1) { + type = 'vimeo'; + } else if (id[3].indexOf('vzaar') > -1) { + type = 'vzaar'; + } else { + throw new Error('Video URL not supported.'); + } + id = id[6]; + } else { + throw new Error('Missing video URL.'); + } + + this._videos[url] = { + type: type, + id: id, + width: width, + height: height + }; + + item.attr('data-video', url); + + this.thumbnail(target, this._videos[url]); + }; + + /** + * Creates video thumbnail. + * @protected + * @param {jQuery} target - The target containing the video data. + * @param {Object} info - The video info object. + * @see `fetch` + */ + Video.prototype.thumbnail = function(target, video) { + var tnLink, + icon, + path, + dimensions = video.width && video.height ? 'width:' + video.width + 'px;height:' + video.height + 'px;' : '', + customTn = target.find('img'), + srcType = 'src', + lazyClass = '', + settings = this._core.settings, + create = function(path) { + icon = '
'; + + if (settings.lazyLoad) { + tnLink = $('
',{ + "class": 'owl-video-tn ' + lazyClass, + "srcType": path + }); + } else { + tnLink = $( '
', { + "class": "owl-video-tn", + "style": 'opacity:1;background-image:url(' + path + ')' + }); + } + target.after(tnLink); + target.after(icon); + }; + + // wrap video content into owl-video-wrapper div + target.wrap( $( '
', { + "class": "owl-video-wrapper", + "style": dimensions + })); + + if (this._core.settings.lazyLoad) { + srcType = 'data-src'; + lazyClass = 'owl-lazy'; + } + + // custom thumbnail + if (customTn.length) { + create(customTn.attr(srcType)); + customTn.remove(); + return false; + } + + if (video.type === 'youtube') { + path = "//img.youtube.com/vi/" + video.id + "/hqdefault.jpg"; + create(path); + } else if (video.type === 'vimeo') { + $.ajax({ + type: 'GET', + url: '//vimeo.com/api/v2/video/' + video.id + '.json', + jsonp: 'callback', + dataType: 'jsonp', + success: function(data) { + path = data[0].thumbnail_large; + create(path); + } + }); + } else if (video.type === 'vzaar') { + $.ajax({ + type: 'GET', + url: '//vzaar.com/api/videos/' + video.id + '.json', + jsonp: 'callback', + dataType: 'jsonp', + success: function(data) { + path = data.framegrab_url; + create(path); + } + }); + } + }; + + /** + * Stops the current video. + * @public + */ + Video.prototype.stop = function() { + this._core.trigger('stop', null, 'video'); + this._playing.find('.owl-video-frame').remove(); + this._playing.removeClass('owl-video-playing'); + this._playing = null; + this._core.leave('playing'); + this._core.trigger('stopped', null, 'video'); + }; + + /** + * Starts the current video. + * @public + * @param {Event} event - The event arguments. + */ + Video.prototype.play = function(event) { + var target = $(event.target), + item = target.closest('.' + this._core.settings.itemClass), + video = this._videos[item.attr('data-video')], + width = video.width || '100%', + height = video.height || this._core.$stage.height(), + html, + iframe; + + if (this._playing) { + return; + } + + this._core.enter('playing'); + this._core.trigger('play', null, 'video'); + + item = this._core.items(this._core.relative(item.index())); + + this._core.reset(item.index()); + + html = $( '' ); + html.attr( 'height', height ); + html.attr( 'width', width ); + if (video.type === 'youtube') { + html.attr( 'src', '//www.youtube.com/embed/' + video.id + '?autoplay=1&rel=0&v=' + video.id ); + } else if (video.type === 'vimeo') { + html.attr( 'src', '//player.vimeo.com/video/' + video.id + '?autoplay=1' ); + } else if (video.type === 'vzaar') { + html.attr( 'src', '//view.vzaar.com/' + video.id + '/player?autoplay=true' ); + } + + iframe = $(html).wrap( '
' ).insertAfter(item.find('.owl-video')); + + this._playing = item.addClass('owl-video-playing'); + }; + + /** + * Checks whether an video is currently in full screen mode or not. + * @todo Bad style because looks like a readonly method but changes members. + * @protected + * @returns {Boolean} + */ + Video.prototype.isInFullScreen = function() { + var element = document.fullscreenElement || document.mozFullScreenElement || + document.webkitFullscreenElement; + + return element && $(element).parent().hasClass('owl-video-frame'); + }; + + /** + * Destroys the plugin. + */ + Video.prototype.destroy = function() { + var handler, property; + + this._core.$element.off('click.owl.video'); + + for (handler in this._handlers) { + this._core.$element.off(handler, this._handlers[handler]); + } + for (property in Object.getOwnPropertyNames(this)) { + typeof this[property] != 'function' && (this[property] = null); + } + }; + + $.fn.owlCarousel.Constructor.Plugins.Video = Video; + +})(window.Zepto || window.jQuery, window, document); + +/** + * Animate Plugin + * @version 2.3.4 + * @author Bartosz Wojciechowski + * @author David Deutsch + * @license The MIT License (MIT) + */ +;(function($, window, document, undefined) { + + /** + * Creates the animate plugin. + * @class The Navigation Plugin + * @param {Owl} scope - The Owl Carousel + */ + var Animate = function(scope) { + this.core = scope; + this.core.options = $.extend({}, Animate.Defaults, this.core.options); + this.swapping = true; + this.previous = undefined; + this.next = undefined; + + this.handlers = { + 'change.owl.carousel': $.proxy(function(e) { + if (e.namespace && e.property.name == 'position') { + this.previous = this.core.current(); + this.next = e.property.value; + } + }, this), + 'drag.owl.carousel dragged.owl.carousel translated.owl.carousel': $.proxy(function(e) { + if (e.namespace) { + this.swapping = e.type == 'translated'; + } + }, this), + 'translate.owl.carousel': $.proxy(function(e) { + if (e.namespace && this.swapping && (this.core.options.animateOut || this.core.options.animateIn)) { + this.swap(); + } + }, this) + }; + + this.core.$element.on(this.handlers); + }; + + /** + * Default options. + * @public + */ + Animate.Defaults = { + animateOut: false, + animateIn: false + }; + + /** + * Toggles the animation classes whenever an translations starts. + * @protected + * @returns {Boolean|undefined} + */ + Animate.prototype.swap = function() { + + if (this.core.settings.items !== 1) { + return; + } + + if (!$.support.animation || !$.support.transition) { + return; + } + + this.core.speed(0); + + var left, + clear = $.proxy(this.clear, this), + previous = this.core.$stage.children().eq(this.previous), + next = this.core.$stage.children().eq(this.next), + incoming = this.core.settings.animateIn, + outgoing = this.core.settings.animateOut; + + if (this.core.current() === this.previous) { + return; + } + + if (outgoing) { + left = this.core.coordinates(this.previous) - this.core.coordinates(this.next); + previous.one($.support.animation.end, clear) + .css( { 'left': left + 'px' } ) + .addClass('animated owl-animated-out') + .addClass(outgoing); + } + + if (incoming) { + next.one($.support.animation.end, clear) + .addClass('animated owl-animated-in') + .addClass(incoming); + } + }; + + Animate.prototype.clear = function(e) { + $(e.target).css( { 'left': '' } ) + .removeClass('animated owl-animated-out owl-animated-in') + .removeClass(this.core.settings.animateIn) + .removeClass(this.core.settings.animateOut); + this.core.onTransitionEnd(); + }; + + /** + * Destroys the plugin. + * @public + */ + Animate.prototype.destroy = function() { + var handler, property; + + for (handler in this.handlers) { + this.core.$element.off(handler, this.handlers[handler]); + } + for (property in Object.getOwnPropertyNames(this)) { + typeof this[property] != 'function' && (this[property] = null); + } + }; + + $.fn.owlCarousel.Constructor.Plugins.Animate = Animate; + +})(window.Zepto || window.jQuery, window, document); + +/** + * Autoplay Plugin + * @version 2.3.4 + * @author Bartosz Wojciechowski + * @author Artus Kolanowski + * @author David Deutsch + * @author Tom De Caluwé + * @license The MIT License (MIT) + */ +;(function($, window, document, undefined) { + + /** + * Creates the autoplay plugin. + * @class The Autoplay Plugin + * @param {Owl} scope - The Owl Carousel + */ + var Autoplay = function(carousel) { + /** + * Reference to the core. + * @protected + * @type {Owl} + */ + this._core = carousel; + + /** + * The autoplay timeout id. + * @type {Number} + */ + this._call = null; + + /** + * Depending on the state of the plugin, this variable contains either + * the start time of the timer or the current timer value if it's + * paused. Since we start in a paused state we initialize the timer + * value. + * @type {Number} + */ + this._time = 0; + + /** + * Stores the timeout currently used. + * @type {Number} + */ + this._timeout = 0; + + /** + * Indicates whenever the autoplay is paused. + * @type {Boolean} + */ + this._paused = true; + + /** + * All event handlers. + * @protected + * @type {Object} + */ + this._handlers = { + 'changed.owl.carousel': $.proxy(function(e) { + if (e.namespace && e.property.name === 'settings') { + if (this._core.settings.autoplay) { + this.play(); + } else { + this.stop(); + } + } else if (e.namespace && e.property.name === 'position' && this._paused) { + // Reset the timer. This code is triggered when the position + // of the carousel was changed through user interaction. + this._time = 0; + } + }, this), + 'initialized.owl.carousel': $.proxy(function(e) { + if (e.namespace && this._core.settings.autoplay) { + this.play(); + } + }, this), + 'play.owl.autoplay': $.proxy(function(e, t, s) { + if (e.namespace) { + this.play(t, s); + } + }, this), + 'stop.owl.autoplay': $.proxy(function(e) { + if (e.namespace) { + this.stop(); + } + }, this), + 'mouseover.owl.autoplay': $.proxy(function() { + if (this._core.settings.autoplayHoverPause && this._core.is('rotating')) { + this.pause(); + } + }, this), + 'mouseleave.owl.autoplay': $.proxy(function() { + if (this._core.settings.autoplayHoverPause && this._core.is('rotating')) { + this.play(); + } + }, this), + 'touchstart.owl.core': $.proxy(function() { + if (this._core.settings.autoplayHoverPause && this._core.is('rotating')) { + this.pause(); + } + }, this), + 'touchend.owl.core': $.proxy(function() { + if (this._core.settings.autoplayHoverPause) { + this.play(); + } + }, this) + }; + + // register event handlers + this._core.$element.on(this._handlers); + + // set default options + this._core.options = $.extend({}, Autoplay.Defaults, this._core.options); + }; + + /** + * Default options. + * @public + */ + Autoplay.Defaults = { + autoplay: false, + autoplayTimeout: 5000, + autoplayHoverPause: false, + autoplaySpeed: false + }; + + /** + * Transition to the next slide and set a timeout for the next transition. + * @private + * @param {Number} [speed] - The animation speed for the animations. + */ + Autoplay.prototype._next = function(speed) { + this._call = window.setTimeout( + $.proxy(this._next, this, speed), + this._timeout * (Math.round(this.read() / this._timeout) + 1) - this.read() + ); + + if (this._core.is('interacting') || document.hidden) { + return; + } + this._core.next(speed || this._core.settings.autoplaySpeed); + } + + /** + * Reads the current timer value when the timer is playing. + * @public + */ + Autoplay.prototype.read = function() { + return new Date().getTime() - this._time; + }; + + /** + * Starts the autoplay. + * @public + * @param {Number} [timeout] - The interval before the next animation starts. + * @param {Number} [speed] - The animation speed for the animations. + */ + Autoplay.prototype.play = function(timeout, speed) { + var elapsed; + + if (!this._core.is('rotating')) { + this._core.enter('rotating'); + } + + timeout = timeout || this._core.settings.autoplayTimeout; + + // Calculate the elapsed time since the last transition. If the carousel + // wasn't playing this calculation will yield zero. + elapsed = Math.min(this._time % (this._timeout || timeout), timeout); + + if (this._paused) { + // Start the clock. + this._time = this.read(); + this._paused = false; + } else { + // Clear the active timeout to allow replacement. + window.clearTimeout(this._call); + } + + // Adjust the origin of the timer to match the new timeout value. + this._time += this.read() % timeout - elapsed; + + this._timeout = timeout; + this._call = window.setTimeout($.proxy(this._next, this, speed), timeout - elapsed); + }; + + /** + * Stops the autoplay. + * @public + */ + Autoplay.prototype.stop = function() { + if (this._core.is('rotating')) { + // Reset the clock. + this._time = 0; + this._paused = true; + + window.clearTimeout(this._call); + this._core.leave('rotating'); + } + }; + + /** + * Pauses the autoplay. + * @public + */ + Autoplay.prototype.pause = function() { + if (this._core.is('rotating') && !this._paused) { + // Pause the clock. + this._time = this.read(); + this._paused = true; + + window.clearTimeout(this._call); + } + }; + + /** + * Destroys the plugin. + */ + Autoplay.prototype.destroy = function() { + var handler, property; + + this.stop(); + + for (handler in this._handlers) { + this._core.$element.off(handler, this._handlers[handler]); + } + for (property in Object.getOwnPropertyNames(this)) { + typeof this[property] != 'function' && (this[property] = null); + } + }; + + $.fn.owlCarousel.Constructor.Plugins.autoplay = Autoplay; + +})(window.Zepto || window.jQuery, window, document); + +/** + * Navigation Plugin + * @version 2.3.4 + * @author Artus Kolanowski + * @author David Deutsch + * @license The MIT License (MIT) + */ +;(function($, window, document, undefined) { + 'use strict'; + + /** + * Creates the navigation plugin. + * @class The Navigation Plugin + * @param {Owl} carousel - The Owl Carousel. + */ + var Navigation = function(carousel) { + /** + * Reference to the core. + * @protected + * @type {Owl} + */ + this._core = carousel; + + /** + * Indicates whether the plugin is initialized or not. + * @protected + * @type {Boolean} + */ + this._initialized = false; + + /** + * The current paging indexes. + * @protected + * @type {Array} + */ + this._pages = []; + + /** + * All DOM elements of the user interface. + * @protected + * @type {Object} + */ + this._controls = {}; + + /** + * Markup for an indicator. + * @protected + * @type {Array.} + */ + this._templates = []; + + /** + * The carousel element. + * @type {jQuery} + */ + this.$element = this._core.$element; + + /** + * Overridden methods of the carousel. + * @protected + * @type {Object} + */ + this._overrides = { + next: this._core.next, + prev: this._core.prev, + to: this._core.to + }; + + /** + * All event handlers. + * @protected + * @type {Object} + */ + this._handlers = { + 'prepared.owl.carousel': $.proxy(function(e) { + if (e.namespace && this._core.settings.dotsData) { + this._templates.push('
' + + $(e.content).find('[data-dot]').addBack('[data-dot]').attr('data-dot') + '
'); + } + }, this), + 'added.owl.carousel': $.proxy(function(e) { + if (e.namespace && this._core.settings.dotsData) { + this._templates.splice(e.position, 0, this._templates.pop()); + } + }, this), + 'remove.owl.carousel': $.proxy(function(e) { + if (e.namespace && this._core.settings.dotsData) { + this._templates.splice(e.position, 1); + } + }, this), + 'changed.owl.carousel': $.proxy(function(e) { + if (e.namespace && e.property.name == 'position') { + this.draw(); + } + }, this), + 'initialized.owl.carousel': $.proxy(function(e) { + if (e.namespace && !this._initialized) { + this._core.trigger('initialize', null, 'navigation'); + this.initialize(); + this.update(); + this.draw(); + this._initialized = true; + this._core.trigger('initialized', null, 'navigation'); + } + }, this), + 'refreshed.owl.carousel': $.proxy(function(e) { + if (e.namespace && this._initialized) { + this._core.trigger('refresh', null, 'navigation'); + this.update(); + this.draw(); + this._core.trigger('refreshed', null, 'navigation'); + } + }, this) + }; + + // set default options + this._core.options = $.extend({}, Navigation.Defaults, this._core.options); + + // register event handlers + this.$element.on(this._handlers); + }; + + /** + * Default options. + * @public + * @todo Rename `slideBy` to `navBy` + */ + Navigation.Defaults = { + nav: false, + navText: [ + '', + '' + ], + navSpeed: false, + navElement: 'button type="button" role="presentation"', + navContainer: false, + navContainerClass: 'owl-nav', + navClass: [ + 'owl-prev', + 'owl-next' + ], + slideBy: 1, + dotClass: 'owl-dot', + dotsClass: 'owl-dots', + dots: true, + dotsEach: false, + dotsData: false, + dotsSpeed: false, + dotsContainer: false + }; + + /** + * Initializes the layout of the plugin and extends the carousel. + * @protected + */ + Navigation.prototype.initialize = function() { + var override, + settings = this._core.settings; + + // create DOM structure for relative navigation + this._controls.$relative = (settings.navContainer ? $(settings.navContainer) + : $('
').addClass(settings.navContainerClass).appendTo(this.$element)).addClass('disabled'); + + this._controls.$previous = $('<' + settings.navElement + '>') + .addClass(settings.navClass[0]) + .html(settings.navText[0]) + .prependTo(this._controls.$relative) + .on('click', $.proxy(function(e) { + this.prev(settings.navSpeed); + }, this)); + this._controls.$next = $('<' + settings.navElement + '>') + .addClass(settings.navClass[1]) + .html(settings.navText[1]) + .appendTo(this._controls.$relative) + .on('click', $.proxy(function(e) { + this.next(settings.navSpeed); + }, this)); + + // create DOM structure for absolute navigation + if (!settings.dotsData) { + this._templates = [ $('